/* ============================================================================
 * LİGNA PALET ALIM SATIM - Premium Full Black & Dynamic Theme Design System
 * ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

/* Default Theme: Premium Full Black (Siyah Tema) */
:root,
html[data-theme="dark"],
html[data-theme="black"] {
    --bg-main: #090a0f;
    --bg-header: rgba(13, 14, 20, 0.92);
    --bg-topbar: #06070a;
    --bg-card: #13151f;
    --bg-card-hover: #1a1d2b;
    --bg-alt: #0d0e14;
    --bg-input: #171924;
    
    --text-main: #f8fafc;
    --text-heading: #ffffff;
    --text-muted: #94a3b8;
    --text-light: #64748b;
    
    --primary: #ffffff;
    --primary-dark: #cbd5e1;
    
    --red: #ab994d;
    --red-hover: #96843e;
    --red-light: rgba(171, 153, 77, 0.16);
    
    --amber: #f59e0b;
    --amber-hover: #d97706;
    --amber-light: rgba(245, 158, 11, 0.15);
    
    --eco-green: #10b981;
    --eco-green-hover: #059669;
    --eco-green-light: rgba(16, 185, 129, 0.15);
    
    --border-color: rgba(255, 255, 255, 0.09);
    --border-color-light: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(171, 153, 77, 0.5);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --hero-overlay: linear-gradient(90deg, #090a0f 0%, rgba(9, 10, 15, 0.95) 40%, rgba(9, 10, 15, 0.65) 70%, rgba(9, 10, 15, 0.25) 100%);
    --hero-mobile-overlay: linear-gradient(rgba(9, 10, 15, 0.9), rgba(9, 10, 15, 0.95));
    --logo-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

/* Light Theme (Aydınlık Tema) */
html[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-header: rgba(255, 255, 255, 0.95);
    --bg-topbar: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-alt: #ffffff;
    --bg-input: #f8fafc;
    
    --text-main: #0f172a;
    --text-heading: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    
    --primary: #1e293b;
    --primary-dark: #0f172a;
    
    --red: #ab994d;
    --red-hover: #8f7d3a;
    --red-light: rgba(171, 153, 77, 0.12);
    
    --amber: #d97706;
    --amber-hover: #b45309;
    --amber-light: #fffbeb;
    
    --eco-green: #059669;
    --eco-green-hover: #047857;
    --eco-green-light: #ecfdf5;
    
    --border-color: #e2e8f0;
    --border-color-light: #f1f5f9;
    --border-hover: #ab994d;
    
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.12);

    --hero-overlay: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 32%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0) 85%);
    --hero-mobile-overlay: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85));
    --logo-filter: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.25;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Styled Form Controls */
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
}
textarea.form-control {
    height: auto;
    padding: 12px 16px;
}
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}
.form-control:focus {
    border-color: var(--red);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px var(--red-light);
}

/* Filter Card Layout */
.filter-card {
    background: var(--bg-card);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.filter-form-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr auto;
    gap: 20px;
    align-items: flex-end;
}
.filter-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Responsive Grids */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.info-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.btn-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Clean, Simple & Elegant Top Bar */
.top-bar {
    background-color: var(--bg-topbar);
    color: var(--text-muted);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-info {
    display: flex;
    gap: 24px;
}
.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}
.top-info-item strong {
    color: var(--text-main);
}
.top-info-item i {
    color: var(--text-light);
    font-size: 13px;
}
.phone-icon-right,
i.phone-icon-right {
    transform: none;
    display: inline-block;
}
.top-wa-link {
    color: var(--eco-green);
    font-weight: 700;
}
.top-wa-link i {
    color: var(--eco-green);
}
.top-wa-link:hover {
    color: var(--eco-green-hover);
}

/* Header & Brand Logo */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}
.site-logo-img {
    height: 52px;
    width: auto;
    max-height: 56px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: var(--logo-filter, none);
}
.site-logo-img:hover {
    transform: scale(1.04);
}
.logo-text-box h2 {
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}
.logo-text-box span {
    color: var(--red);
    font-size: 11px;
    display: block;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
    font-family: var(--font-body);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.25s ease;
}
.nav-links a .nav-icon {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.25s ease, transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}
.nav-links a:hover .nav-icon,
.nav-links a.active .nav-icon {
    color: var(--red);
    transform: translateY(-1px);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--red);
    border-radius: 3px;
    box-shadow: 0 0 8px var(--red-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-actions .btn {
    padding: 10px 18px;
    font-size: 13.5px;
    white-space: nowrap;
}

/* Theme Switcher Button */
.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.theme-toggle-btn:hover {
    border-color: var(--red);
    box-shadow: 0 0 14px var(--red-light);
    transform: translateY(-2px);
}
html[data-theme="dark"] .sun-icon,
html[data-theme="black"] .sun-icon {
    display: inline-block;
    color: #ffffff;
}
html[data-theme="dark"] .moon-icon,
html[data-theme="black"] .moon-icon {
    display: none;
}
html[data-theme="light"] .sun-icon {
    display: none;
}
html[data-theme="light"] .moon-icon {
    display: inline-block;
    color: #0f172a;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}
.btn i {
    font-size: 15px;
}
.btn-red {
    background: var(--red);
    color: #ffffff;
}
.btn-red:hover {
    background: var(--red-hover);
}
.btn-amber {
    background: var(--amber);
    color: #ffffff;
}
.btn-amber:hover {
    background: var(--amber-hover);
}
.btn-eco {
    background: var(--eco-green);
    color: #ffffff;
}
.btn-eco:hover {
    background: var(--eco-green-hover);
}
.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}

/* Mobile Nav Drawer */
.mobile-toggle {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 20px;
    cursor: pointer;
}

.mobile-drawer-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mobile-drawer-backdrop.active {
    display: block;
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    z-index: 1100;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: right 0.3s ease;
}
.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}
.mobile-drawer-close {
    background: var(--bg-topbar);
    border: 1px solid var(--border-color);
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-main);
}
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mobile-nav-links a {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--red-light);
    color: var(--red);
}

/* ============================================================
   ENTERPRISE CORPORATE HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    background-color: var(--bg-main);
    background-image: linear-gradient(90deg, #090a0f 0%, rgba(9, 10, 15, 0.94) 42%, rgba(9, 10, 15, 0.68) 72%, rgba(9, 10, 15, 0.35) 100%),
                      url('../images/image.png');
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 70px 0 66px;
    border-bottom: none;
    user-select: none;
    -webkit-user-select: none;
    transition: background 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

[data-theme="light"] .hero-section {
    background-image: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0.95) 42%, rgba(248, 250, 252, 0.70) 72%, rgba(248, 250, 252, 0.35) 100%),
                      url('../images/image.png');
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
}

.hero-content {
    max-width: 630px;
}

.hero-main-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1.16;
    margin-bottom: 18px;
    letter-spacing: -0.6px;
}
.hero-title-accent {
    color: #ab994d;
}
[data-theme="light"] .hero-title-accent {
    color: #b45309;
}

.hero-subtext {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    font-weight: 500;
}

/* ============================================================
   HERO LINEAR SEAMLESS SLIDER TRACK
   ============================================================ */
.hero-slider-linear-wrap {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 6px 0;
    /* Clean Linear Edge Fade on Left & Right */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent 100%);
}

.hero-slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.hero-slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-slider-track .hero-pillar-item {
    flex: 0 0 calc((100% - 24px) / 3);
    min-width: calc((100% - 24px) / 3);
    background: rgba(17, 20, 34, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 13px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
[data-theme="light"] .hero-slider-track .hero-pillar-item {
    background: rgba(255, 255, 255, 0.95);
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.hero-slider-track .hero-pillar-item:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
.pillar-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(171, 153, 77, 0.15);
    color: #ab994d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
[data-theme="light"] .pillar-icon {
    background: rgba(217, 119, 6, 0.15);
    color: #b45309;
}
.pillar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.pillar-info strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pillar-info span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: linear-gradient(135deg, #ab994d 0%, #8c7324 100%);
    color: #ffffff !important;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(171, 153, 77, 0.3);
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    border: none;
}
.btn-hero-primary * {
    color: #ffffff !important;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(171, 153, 77, 0.45);
    color: #ffffff !important;
}
.btn-hero-secondary {
    background: rgba(17, 20, 34, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-hero-secondary * {
    color: #ffffff !important;
}
[data-theme="light"] .btn-hero-secondary {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a !important;
}
[data-theme="light"] .btn-hero-secondary * {
    color: #0f172a !important;
}
.btn-hero-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--red);
    color: var(--red) !important;
    transform: translateY(-2px);
}
[data-theme="light"] .btn-hero-secondary:hover * {
    color: var(--red) !important;
}

/* ============================================================
   RIGHT COLUMN: ANIMATED PALLET PRODUCT SHOWCASE CARD
   ============================================================ */
.hero-product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.product-showcase-card {
    background: var(--bg-card);
    border: 0.5px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 12px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
[data-theme="light"] .product-showcase-card {
    background: #ffffff;
    border: 0.5px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.showcase-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 4px 10px;
    border-bottom: 0.5px solid var(--border-color);
    margin-bottom: 10px;
}
.showcase-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.badge-dot-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: pulseDotLive 2s infinite;
}
@keyframes pulseDotLive {
    0%, 100% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.showcase-nav-arrows {
    display: flex;
    align-items: center;
    gap: 6px;
}
.showcase-arrow {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.showcase-arrow:hover {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
    transform: scale(1.08);
}

/* Image slider wrap: viewport + dots stacked vertically */
.showcase-img-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
}

.showcase-slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

/* Slide track: all slides sit side by side, viewport clips them */
.showcase-slider-track-inner {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.showcase-product-slide {
    flex: 0 0 100%;
    width: 100%;
}

/* Square image wrapper — full bleed */
.showcase-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ffffff;
    margin-bottom: 0;
}
.showcase-prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}
.product-showcase-card:hover .showcase-prod-img {
    transform: scale(1.04);
}

/* Dots: below image, inside showcase-img-slider-wrap */
.showcase-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 0 2px;
}

.showcase-condition-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(9, 10, 15, 0.85);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.showcase-standart-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(171, 153, 77, 0.9);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.showcase-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}
.showcase-info-slide {
    display: none;
    flex-direction: column;
    gap: 8px;
    animation: infoFadeIn 0.3s ease;
}
.showcase-info-slide.active {
    display: flex;
}
@keyframes infoFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.showcase-prod-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.showcase-action-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
    border-top: 0.5px solid var(--border-color);
}
.showcase-action-row > * {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showcase-price-box {
    display: flex;
    flex-direction: column;
}
.price-lbl {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}
.price-val {
    font-size: 14.5px;
    font-weight: 900;
    color: var(--red);
}
.btn-showcase-wa {
    background: #059669;
    color: #ffffff !important;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-showcase-wa * { color: #ffffff !important; }
.btn-showcase-wa:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}
.btn-showcase-detail {
    background: linear-gradient(135deg, #ab994d 0%, #8c7324 100%);
    color: #ffffff !important;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-showcase-detail * { color: #ffffff !important; }
.btn-showcase-detail:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(171, 153, 77, 0.35);
    color: #ffffff !important;
}

.showcase-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
    padding-bottom: 2px;
}
.showcase-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}
.showcase-dot.active {
    width: 18px;
    border-radius: 10px;
    background: #ffffff;
}

/* Stats Ribbon */
.stats-ribbon {
    background: var(--bg-alt);
    padding: 35px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item h3 {
    font-size: 38px;
    color: var(--red);
    font-weight: 800;
}
.stat-item p {
    color: var(--text-muted);
    font-size: 14.5px;
    font-weight: 700;
    margin-top: 4px;
}

/* Section Header */
.section-title-wrap {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}
.section-subtitle {
    color: var(--red);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}
.section-title {
    font-size: 36px;
    margin-bottom: 14px;
    color: var(--text-heading);
}
.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Pallet Cards Grid */
.pallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.pallet-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pallet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}
.pallet-image-box {
    position: relative;
    height: 230px;
    background: var(--bg-topbar);
    overflow: hidden;
}
.pallet-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badge-condition {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.88);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.badge-condition-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-light);
    color: var(--red);
    border: 1px solid var(--border-hover);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}
.badge-eco {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--eco-green);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.pallet-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pallet-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-heading);
}
.pallet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    background: var(--bg-topbar);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color-light);
}
.spec-item {
    font-size: 13px;
    color: var(--text-muted);
}
.spec-item strong {
    color: var(--text-main);
    display: block;
    font-size: 13.5px;
}

.pallet-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.pallet-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
    flex: 1;
}
.pallet-price > span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.btn-wa-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #059669 !important;
    color: #ffffff !important;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 38px;
    box-sizing: border-box;
    flex: 1;
    text-align: center;
    border: none;
}
.btn-wa-price *,
.btn-wa-price span,
.btn-wa-price i {
    color: #ffffff !important;
    font-weight: 700 !important;
}
.btn-wa-price:hover {
    background: #047857 !important;
    color: #ffffff !important;
    transform: translateY(-1.5px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}
.pallet-footer .btn {
    height: 38px;
    padding: 8px 14px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
    border-radius: var(--radius-md);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}
.feature-icon {
    width: 54px;
    height: 54px;
    background: var(--red-light);
    color: var(--red);
    border: 1px solid var(--red-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}
.feature-card h3 {
    font-size: 18.5px;
    margin-bottom: 10px;
    color: var(--text-heading);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Detail Page & Gallery Box */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}
.detail-grid > div {
    min-width: 0;
    width: 100%;
}
.detail-title {
    font-size: clamp(18px, 4.8vw, 28px);
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--text-heading);
    word-break: normal;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}
.detail-breadcrumb {
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Main Gallery Box & On-Image Arrows */
.main-gallery-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.main-gallery-img {
    width: 100%;
    max-width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.main-gallery-box:hover .main-gallery-img {
    filter: brightness(1.03);
}

/* Main Image Navigation Arrows (Directly on Image) */
.main-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(9, 10, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.main-nav-prev {
    left: 10px;
}
.main-nav-next {
    right: 10px;
}
.main-nav-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.main-expand-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(9, 10, 15, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10;
}
.main-expand-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.05);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}
.thumb-img {
    width: 80px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}
.thumb-img.active,
.thumb-img:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

/* Fullscreen Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 6, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 100001;
}
.lightbox-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1) rotate(90deg);
}
.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}
.lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.lightbox-counter {
    margin-top: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.65);
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 100000;
}
.lightbox-nav:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.15);
}
.lightbox-prev {
    left: 25px;
}
.lightbox-next {
    right: 25px;
}

.detail-inquiry-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .main-gallery-img {
        height: 320px;
    }
    .btn-row-2col {
        grid-template-columns: 1fr !important;
        gap: 12px;
        width: 100%;
    }
    .btn-row-2col .btn {
        width: 100%;
        box-sizing: border-box;
    }
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 576px) {
    .main-gallery-img {
        height: 240px;
    }
    .main-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .main-nav-prev { left: 8px; }
    .main-nav-next { right: 8px; }
    .main-expand-btn span {
        display: none;
    }
    .main-expand-btn {
        padding: 6px 10px;
        border-radius: 50%;
    }
    .btn-row-2col {
        grid-template-columns: 1fr !important;
        gap: 12px;
        width: 100%;
    }
    .btn-row-2col .btn {
        width: 100%;
        box-sizing: border-box;
    }
    .detail-inquiry-card {
        padding: 18px 14px;
    }
    .spec-table th {
        width: 45%;
        font-size: 13px;
        padding: 10px;
    }
    .spec-table td {
        font-size: 13px;
        padding: 10px;
        word-break: break-word;
    }
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.spec-table th,
.spec-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 14.5px;
}
.spec-table th {
    color: var(--text-muted);
    font-weight: 600;
    width: 40%;
}
.spec-table td {
    font-weight: 700;
    color: var(--text-main);
}

/* Contact & Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.contact-item:hover {
    background: var(--bg-alt);
    border-color: var(--border-color);
    transform: translateX(6px);
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--red-light);
    color: var(--red);
    border: 1px solid var(--red-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-item:hover .contact-icon {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
    transform: scale(1.1) rotate(4deg);
    box-shadow: 0 4px 16px var(--red-light);
}
.contact-item a {
    transition: color 0.25s ease;
}
.contact-item:hover a {
    color: var(--red) !important;
}

/* WhatsApp Eco Button Global Class */
.btn-eco {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3) !important;
    transition: all 0.25s ease !important;
}
.btn-eco *, .btn-eco span, .btn-eco i {
    color: #ffffff !important;
}
.btn-eco:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.45) !important;
}

/* WhatsApp Price Badge Button */
.btn-wa-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #059669 !important;
    color: #ffffff !important;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}
.btn-wa-price *, .btn-wa-price span, .btn-wa-price i {
    color: #ffffff !important;
}
.btn-wa-price:hover {
    background: #047857 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

/* Responsive Google Maps Container */
.map-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
}
.map-container iframe {
    width: 100% !important;
    height: 380px !important;
    border: 0 !important;
    display: block;
}

/* Footer */
.site-footer {
    margin-top: auto;
    background: var(--bg-main);
    color: var(--text-muted);
    padding: 50px 0 0 0;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-widget h3 {
    color: var(--text-heading);
    font-size: 18px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* Official Solid WhatsApp Floating Button (Desktop Only) with Pulsing Wave Effect */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappFloatPulse 2s infinite ease-in-out;
    transition: transform 0.25s ease, background-color 0.25s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(6deg);
    color: #ffffff;
}

@keyframes whatsappFloatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 20px rgba(0, 0, 0, 0.35);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 4px 20px rgba(0, 0, 0, 0.35);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 20px rgba(0, 0, 0, 0.35);
    }
}

/* Mobile Quick Bar */
.mobile-quick-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #050608;
    padding: 12px 16px;
    z-index: 998;
    border-top: 1px solid var(--border-color);
    gap: 12px;
}

/* Responsive Overhaul & Mobile Viewport Locking */
@media (max-width: 1200px) {
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 14px;
    }
    .nav-actions .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 1080px) {
    .top-bar { display: none; }
    .nav-links { display: none; }
    .nav-actions .btn { display: none; }
    .mobile-toggle { display: block !important; }
}

@media (max-width: 1024px) {
    .detail-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .filter-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    .site-footer {
        padding-bottom: 80px;
    }
    .container { 
        padding: 0 16px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .whatsapp-float { display: none !important; }
    
    .form-row-2col,
    .info-row-2col,
    .btn-row-2col,
    .filter-form-grid {
        grid-template-columns: 1fr !important;
    }

    .filter-card { padding: 20px 16px; }

    /* ============================================================
       MOBILE HERO: arka plan görseli + tek sütun içerik
       ============================================================ */
    .hero-section { 
        padding: 44px 0 41px !important; 
        min-height: auto !important;
        overflow: hidden !important;
        background-image:
            linear-gradient(180deg, rgba(6, 8, 14, 0.88) 0%, rgba(6, 8, 14, 0.96) 100%),
            url('../images/image.png') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }
    [data-theme="light"] .hero-section {
        background-image:
            linear-gradient(180deg, rgba(245, 248, 252, 0.92) 0%, rgba(237, 242, 247, 0.96) 100%),
            url('../images/image.png') !important;
    }

    /* Sağ sütun ürün showcase'i mobilde gizle */
    .hero-product-showcase {
        display: none !important;
    }

    /* Grid tek sütuna düş */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        width: 100% !important;
    }
    .hero-content { 
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative;
        z-index: 2;
    }
    .hero-main-title { 
        font-size: clamp(22px, 6.5vw, 32px) !important; 
        margin-bottom: 10px !important;
        line-height: 1.22 !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hero-subtext { 
        font-size: 14px !important; 
        margin-bottom: 18px !important;
        line-height: 1.58 !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    /* Kaydırmalı ayrıcalık kartları */
    .hero-slider-linear-wrap {
        margin-bottom: 20px !important;
        overflow: hidden !important;
        width: 100% !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
    .hero-slider-viewport {
        overflow: hidden !important;
        width: 100% !important;
    }
    .hero-slider-track {
        gap: 10px !important;
    }
    .hero-slider-track .hero-pillar-item {
        flex: 0 0 calc(50vw - 27px) !important;
        min-width: calc(50vw - 27px) !important;
        max-width: calc(50vw - 27px) !important;
        padding: 10px 8px !important;
    }
    .pillar-icon {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        font-size: 12px !important;
    }
    .pillar-info strong { font-size: 11.5px !important; }
    .pillar-info span { font-size: 10px !important; }

    /* Butonlar tam genişlik ve taşmasın */
    .hero-actions {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center !important;
        padding: 13px 16px !important;
        font-size: 14px !important;
        text-align: center !important;
    }

    .section-padding { padding: 40px 0; }
    .section-title { font-size: clamp(20px, 5.5vw, 28px); }
    .section-title-wrap { margin-bottom: 26px; }

    .pallets-grid { grid-template-columns: 1fr !important; }
    .features-grid { grid-template-columns: 1fr !important; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-item h3 { font-size: 26px; }
    
    .contact-info-card { padding: 22px 16px; }
    .contact-item { flex-direction: row; align-items: flex-start; }
    .map-container iframe { height: 260px !important; }

    .mobile-quick-bar { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Pallet Recycling Section Styling */
.recycling-card {
    background: var(--bg-card);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}
.recycling-card:hover {
    transform: translateY(-4px);
    border-color: var(--eco-green);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}
.recycling-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background: var(--eco-green-light);
    color: var(--eco-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.recycling-card:hover .recycling-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--eco-green);
    color: #ffffff;
}
.recycling-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--text-heading);
}
.recycling-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.recycling-cta-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, var(--bg-card) 100%);
    border: 1px solid var(--eco-green);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    margin-top: 50px;
}

/* 4 Step Process Cards (Palet Satış Adımları 1 2 3 4) */
.step-card {
    background: var(--bg-card);
    padding: 35px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.step-num {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--red) 0%, #b45309 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}
.step-card:hover .step-num {
    transform: scale(1.15) rotate(10deg);
}
.step-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-heading);
}
.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
