/* ==========================================================================
   CSS DESIGN SYSTEM - ZARIA SUBSTRATOS (Inspirado no Taste Skill - Versão 4)
   ========================================================================== */

/* Variables / Design Tokens */
:root {
    /* Color Palette */
    --primary-green: #05351E;
    --primary-green-rgb: 5, 53, 30;
    --primary-light: #0A4A2B;
    --accent-green: #8BC53F;
    --accent-green-rgb: 139, 197, 63;
    --accent-green-dark: #7CB342;
    --brown-earth: #6D3F28;
    --brown-earth-rgb: 109, 63, 40;
    --brown-copper: #D4A38A; /* Copper copper/orange accent color with high readability on green background */
    --brown-light: #F4EBE6;
    --bg-organic: #F7F9F6;
    --bg-card: #FFFFFF;
    
    /* Text Colors */
    --text-dark: #1A2820;
    --text-muted: #53665C;
    --text-light: #FFFFFF;
    
    /* Elevation / Shadows */
    --shadow-sm: 0 2px 8px rgba(5, 53, 30, 0.03);
    --shadow-md: 0 12px 32px rgba(5, 53, 30, 0.05);
    --shadow-lg: 0 24px 48px rgba(5, 53, 30, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(5, 53, 30, 0.04);
    
    /* Layout */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Elements & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-organic);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-green);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 32px;
}

.text-primary { color: var(--primary-green) !important; }
.font-weight-500 { font-weight: 500; }
.font-weight-600 { font-weight: 600; }

/* Buttons Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-light);
    border: 1px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--accent-green);
    color: var(--primary-green);
    border: 1px solid var(--accent-green);
}

.btn-secondary:hover {
    background-color: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: white;
    color: #25D366;
    border: 1px solid white;
}

.btn-whatsapp:hover {
    background-color: #f0f0f0;
    color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-full-width {
    width: 100%;
}

.icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Badges */
.badge {
    display: inline-flex;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    color: var(--text-light);
}

.badge-accent {
    background-color: var(--accent-green-dark);
    color: var(--primary-green);
}

.badge-secondary {
    background-color: var(--brown-earth);
}

/* ==========================================================================
   HEADER / STICKY GLASSMORPHIC NAVBAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 4px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(5, 53, 30, 0.05);
}

.header.scrolled .nav-link,
.header.scrolled .header-phone {
    color: var(--primary-green);
}

.header.scrolled .mobile-nav-toggle .bar {
    background-color: var(--primary-green);
}

.header.scrolled .btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 1px solid #25d366;
}

.header.scrolled .btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px; /* Perfect scaling height for logo_6 */
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-green);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.header-phone {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.header-phone:hover {
    color: var(--accent-green-dark);
}


/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background-image: url('assets/hero_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 100vh;
    min-height: 600px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(45, 76, 59, 0.7));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: var(--text-light);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background-color: var(--text-light);
    color: var(--primary-green);
    border-color: var(--text-light);
}

.hero-actions .btn-primary:hover {
    background-color: var(--bg-organic);
}

/* ==========================================================================
   SECTION STANDARD HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brown-earth);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PRODUCTS SECTION & INTERACTIVE TABS (Refined - No WhatsApp Buttons)
   ========================================================================== */
.products {
    padding: 80px 0;
}

.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tabs-list {
    display: flex;
    background-color: var(--brown-light);
    padding: 6px;
    border-radius: var(--border-radius-sm);
    gap: 8px;
    width: 100%;
    max-width: 480px;
}

.tab-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.tab-button.active {
    background-color: var(--primary-green);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.tab-icon {
    width: 18px;
    height: 18px;
}

/* Tab Panels showing/hiding */
.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Product Cards Grid */
.grid-products {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(5, 53, 30, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 197, 63, 0.2);
}

/* Container for actual products photos */
.product-image-container {
    height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-image {
    transform: scale(1.08);
}

.product-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 100%);
}

.product-image-container .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: normal;
}

/* Premium Gradient fallbacks for other products */
.product-image-placeholder {
    height: 250px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.semi-polida {
    background: linear-gradient(135deg, #b07d62 0%, #83523a 100%);
}

.rustica {
    background: linear-gradient(135deg, #7c4c34 0%, #462818 100%);
}

.orquideas {
    background: linear-gradient(135deg, #96d142 0%, #462818 100%);
}

.citrus {
    background: linear-gradient(135deg, #f9a825 0%, #e65100 100%);
}

.florestal {
    background: linear-gradient(135deg, #0A4A2B 0%, #05351E 100%);
}

.hortas {
    background: linear-gradient(135deg, #26a69a 0%, #004d40 100%);
}

.morango {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
}

.cafe {
    background: linear-gradient(135deg, #8d6e63 0%, #4e342e 100%);
}

.garden {
    background: linear-gradient(135deg, #ec407a 0%, #880e4f 100%);
}

.gramados {
    background: linear-gradient(135deg, #4caf50 0%, #1b5e20 100%);
}

.product-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 100%);
}

.product-image-placeholder .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: normal;
}

/* Content inside card */
.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-meta {
    margin-top: auto;
    border-top: 1px solid rgba(5, 53, 30, 0.08);
    padding-top: 16px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.meta-label {
    color: var(--text-muted);
}

.meta-values {
    color: var(--primary-green);
    font-weight: 600;
}

/* ==========================================================================
   SIZING / GRANULOMETRY GUIDE SECTION
   ========================================================================== */
.size-guide-container {
    margin-top: 80px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(5, 53, 30, 0.05);
}

.size-guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.size-guide-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.size-guide-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

.grid-size-guide-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.size-visual-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: none;
    border-radius: 0;
    cursor: zoom-in;
}

.size-visual-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.size-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.size-visual-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 53, 30, 0.95) 0%, rgba(5, 53, 30, 0.6) 75%, transparent 100%);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    transition: var(--transition-smooth);
}

.size-visual-card:hover .size-visual-info {
    background: linear-gradient(to top, rgba(5, 53, 30, 0.98) 0%, rgba(5, 53, 30, 0.75) 100%);
}

.size-visual-bullet {
    width: 36px;
    height: 36px;
    background-color: #FFFFFF;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.size-visual-name {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.size-visual-range {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 4px;
}

/* ==========================================================================
   ABOUT US SECTION (Refined: Image Left, Enlarge Image even more, Gradient Overlay)
   ========================================================================== */
.about {
    position: relative;
    padding: 60px 0;
    background-color: var(--bg-organic);
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about:hover .about-bg-img {
    transform: none;
}

.about-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(5, 53, 30, 0.45) 0%, 
        rgba(5, 53, 30, 0.05) 50%, 
        #F7F9F6 100%
    );
    pointer-events: none;
    z-index: 2;
}

.about-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
}

.about-content {
    width: 42%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

.about-subsections {
    display: grid;
    gap: 32px;
    margin-top: 24px;
}

.about-sub {
    display: flex;
    flex-direction: column;
}

.about-sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   LOCATION SECTION (Map enlarged by 1.5x, logo_3 next to it enormously enlarged)
   ========================================================================== */
.contact {
    padding: 90px 0;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(5, 53, 30, 0.05);
}

.grid-contact {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
}

/* Interactive Styled Maps Box - ENLARGED 1.5x Vertically */
.contact-map {
    height: 100%;
    min-height: 630px; /* 1.5x larger than original */
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 53, 30, 0.05);
    min-height: 630px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 630px;
}

/* Floating Card inside Map */
.map-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-sm);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(5, 53, 30, 0.05);
    z-index: 10;
}

.map-card-title {
    font-size: 1.15rem;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.map-card-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-map-route {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green-dark);
}

.btn-map-route:hover {
    color: var(--primary-green);
    transform: translateX(3px);
}

/* Column next to map displaying logo_3 centered and gigantically enlarged */
.location-details-col {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.location-logo-wrapper.centered {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.location-logo-img-large {
    height: 380px; /* Enormously enlarged vertical logo_3 next to map */
    width: auto;
    object-fit: contain;
    max-width: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-logo-img-large:hover {
    transform: scale(1.04);
}

/* ==========================================================================
   FOOTER (Solid Green Background #03341C, logo_2 DOUBLED, clean contacts)
   ========================================================================== */
.footer {
    background-color: #03341C; /* Solid deep forest green background */
    color: #E8EAE6;
    padding: 80px 0 0 0;
    margin-top: 40px;
    border-top-left-radius: 40px; /* High-end rounded corners */
    border-top-right-radius: 40px;
    box-shadow: 0 -20px 40px rgba(5, 53, 30, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 104px; /* Doubled in size from 52px */
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    color: #8A9A90;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 330px;
}

/* Footer Navigation Column */
.footer-nav-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brown-copper); /* Legible copper copper title accent */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    font-size: 0.9rem;
    color: #8A9A90;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-light);
    transform: translateX(4px);
}

/* Footer Contact Column (Super Clean) */
.footer-contact-col {
    display: flex;
    flex-direction: column;
}

.footer-contact-details {
    display: grid;
    gap: 18px;
    margin-top: 10px; /* Slight offset to align with columns */
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-contact-item.align-start {
    align-items: flex-start;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    color: var(--brown-copper); /* Copper brown icons */
    flex-shrink: 0;
}

.mt-4 {
    margin-top: 4px;
}

.footer-mail-link {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.footer-mail-link:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.footer-addr-text {
    line-height: 1.45;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #012211; /* Even darker green for copyright bar */
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition-fast);
}

.footer-bottom-link:hover {
    color: var(--text-light);
}

.divider-dot {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVENESS / MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1100px) {
    html { font-size: 15px; }
    
    .grid-contact {
        grid-template-columns: 1fr;
    }
    
    .about {
        flex-direction: column;
        padding: 60px 0;
        min-height: auto;
    }
    
    .about-bg-container {
        position: relative;
        width: 100%;
        height: 380px;
        margin-bottom: 40px;
    }
    
    .about-bg-gradient {
        background: linear-gradient(to bottom, 
            rgba(5, 53, 30, 0.45) 0%, 
            rgba(5, 53, 30, 0.05) 50%, 
            var(--bg-organic) 100%
        );
    }
    
    .about-container {
        justify-content: center;
    }
    
    .about-content {
        width: 100%;
        padding-left: 0;
    }
    
    .grid-size-guide-visual {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .size-guide-container {
        padding: 32px 24px;
        margin-top: 60px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        margin-bottom: 12px;
    }
    
    .location-details-col {
        min-height: auto;
    }
    
    .location-logo-wrapper.centered {
        min-height: 250px;
    }
    
    .location-logo-img-large {
        height: 260px;
    }
}

/* Utility to show elements only on mobile */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex !important;
    }

    /* Mobile Header & Menu */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-card);
        padding: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav.open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: var(--text-dark);
    }
    
    .header-actions {
        display: none; /* Hide header btn on small mobiles */
    }
    
    /* Hero Adjustments */
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Logistics Info Strip (FOB Wholesale details) */
.logistics-strip {
    background-color: var(--bg-organic);
    padding: 30px 0;
    border-top: 1px solid rgba(5, 53, 30, 0.08);
    border-bottom: 1px solid rgba(5, 53, 30, 0.08);
    margin-top: 48px;
}

.logistics-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    flex-wrap: wrap;
    gap: 24px;
}

.logistics-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logistics-icon {
    font-size: 1.6rem;
}

.logistics-text {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.logistics-text strong {
    color: var(--primary-green);
}

.logistics-divider {
    height: 30px;
    width: 1px;
    background-color: rgba(5, 53, 30, 0.15);
}

@media (max-width: 768px) {
    .logistics-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .logistics-divider {
        display: none;
    }
}

/* ==========================================================================
   PRODUCT IMAGE LIGHTBOX
   ========================================================================== */
.product-image-container {
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 53, 30, 0.95); /* Deep green dark overlay */
    z-index: 2000;
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lightbox-content-wrapper {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform-origin 0.08s ease;
}

.lightbox-image.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-green);
    transform: scale(1.1) rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 16px;
        right: 16px;
        font-size: 2.5rem;
    }
}

