/* ================================
   DE FRUITERIE — Premium Design
   ================================ */

:root {
    --primary: #2D7A3A;
    --primary-light: #4CAF50;
    --primary-dark: #1B5E20;
    --primary-glow: rgba(45, 122, 58, 0.15);
    --accent: #FF8C00;
    --accent-light: #FFA726;
    --accent-warm: #FF6D00;
    --bg-cream: #FFF8F0;
    --bg-light: #F7FAF4;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-body: #4A4A5A;
    --text-light: #7A7A8A;
    --text-white: #FFFFFF;
    --border: #E8E8EE;
    --border-light: #F0F0F5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.14);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 20px 50px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-2xl: 40px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { -webkit-tap-highlight-color: transparent; }

/* ================================
   GLOBAL PHOTO TREATMENTS
   ================================ */

.product-image img,
.gallery-item img,
.about-img-wrapper img,
.business-image img,
.promo-image img {
    filter: brightness(1.04) contrast(1.06) saturate(1.18);
    transition: var(--transition-slow);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Soft vignette on product images */
.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* Product hover */
.product-card:hover .product-image img {
    filter: brightness(1.08) contrast(1.08) saturate(1.28);
    transform: scale(1.05);
}

/* Gallery */
.gallery-item img {
    filter: brightness(1.0) contrast(1.06) saturate(0.92);
}

.gallery-item:hover img {
    filter: brightness(1.06) contrast(1.1) saturate(1.3);
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.18) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.gallery-item:hover::after { opacity: 1; }

/* About */
.about-img-wrapper img {
    filter: brightness(1.04) contrast(1.05) saturate(1.12);
}

/* Business */
.business-image img {
    filter: brightness(1.02) contrast(1.08) saturate(1.08);
}

.business-image:hover img {
    filter: brightness(1.06) contrast(1.1) saturate(1.18);
    transform: scale(1.02);
}

/* Promo */
.promo-image img {
    filter: brightness(1.05) contrast(1.08) saturate(1.22);
}

.promo-banner:hover .promo-image img {
    transform: scale(1.05);
    filter: brightness(1.08) contrast(1.1) saturate(1.3);
}

/* ================================
   LAYOUT
   ================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.highlight { color: var(--primary); }
.highlight-light { color: var(--accent-light); }

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(45, 122, 58, 0.25), 0 1px 3px rgba(45, 122, 58, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45, 122, 58, 0.35), 0 2px 6px rgba(45, 122, 58, 0.2);
}

.btn-outline-light {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 2px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.7);
}

.btn-full { width: 100%; }

.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-icon { width: 18px; height: 18px; }
.inline-icon { width: 16px; height: 16px; vertical-align: -2px; margin-right: 4px; }

/* ================================
   SECTION HEADERS
   ================================ */
.section-badge {
    display: inline-block;
    padding: 7px 18px;
    background: var(--primary-glow);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 14px 0;
}

.navbar.scrolled {
    border-bottom-color: var(--border-light);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    padding: 8px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1100;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img { height: 36px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-glow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1100;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1100;
    position: relative;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* ================================
   FULLSCREEN MOBILE MENU
   ================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .mobile-nav {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.mobile-menu-overlay.active .mobile-nav {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-overlay .mobile-nav a {
    display: block;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 14px 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.mobile-menu-overlay .mobile-nav a:hover,
.mobile-menu-overlay .mobile-nav a:active {
    color: var(--primary);
    background: var(--primary-glow);
}

.mobile-menu-overlay .mobile-nav-footer {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.mobile-menu-overlay .mobile-nav-footer a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Hamburger X animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ================================
   HERO
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.06) saturate(1.22) contrast(1.04);
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(27, 94, 32, 0.5) 55%, rgba(255, 140, 0, 0.15) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.12) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 600;
    font-size: 0.82rem;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin-bottom: 22px;
    color: white;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 40px;
    line-height: 1.75;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

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

.stat-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-light);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ================================
   USP BANNER
   ================================ */
.usp-banner {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.usp-item {
    text-align: center;
    padding: 8px;
}

.usp-icon { margin-bottom: 14px; }

.usp-lucide {
    width: 38px;
    height: 38px;
    stroke-width: 1.5;
    opacity: 0.9;
}

.usp-item h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.usp-item p {
    font-size: 0.83rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* ================================
   PRODUCTS
   ================================ */
.products-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.product-card-wide .product-image {
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-sale { background: #FFF3E0; color: var(--accent-warm); }
.badge-new { background: #E3F2FD; color: #1565C0; }
.badge-bio { background: #E8F5E9; color: var(--primary); }

.product-info { padding: 22px; }

.product-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.product-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.55;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-cart {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(45, 122, 58, 0.2);
    cursor: pointer;
}

.btn-cart i { width: 20px; height: 20px; }

.btn-cart:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(45, 122, 58, 0.35);
}

.btn-cart.added {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.35);
}

/* Cart Button in Nav */
.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text-dark);
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover { color: var(--primary); }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 19px;
    height: 19px;
    background: var(--accent);
    color: white;
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(255, 140, 0, 0.3);
}

/* ================================
   CART SIDEBAR
   ================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border-light);
}

.cart-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 10px;
    transition: var(--transition);
    border-radius: 50%;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover { color: var(--text-dark); background: var(--bg-light); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    -webkit-overflow-scrolling: touch;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}

.cart-item-qty span {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 10px;
    transition: var(--transition);
    flex-shrink: 0;
    border-radius: 50%;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover { color: #E53935; background: #FFF0F0; }

.cart-footer {
    padding: 22px 24px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.cart-shipping-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.cart-footer .btn { gap: 8px; }

/* ================================
   PROMO BANNER
   ================================ */
.promo-banner {
    margin-top: 64px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #FFF3E0 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid #FFE0B2;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.promo-banner:hover {
    box-shadow: var(--shadow-lg);
}

.promo-content {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
}

.promo-image {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
    transition: transform 0.6s ease;
}

.promo-text { padding: 40px 44px; }

.promo-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-warm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.promo-text h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.promo-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.promo-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-warm);
    margin-bottom: 22px;
}

/* ================================
   BUSINESS SECTION
   ================================ */
.business {
    padding: 100px 0;
    background: var(--bg-light);
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.business-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.business-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.06);
    pointer-events: none;
}

.business-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.business-lead {
    font-size: 1.08rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 18px 0 28px;
    line-height: 1.7;
}

.price-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 34px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.price-row:hover {
    border-color: var(--primary-glow);
    box-shadow: 0 2px 8px var(--primary-glow);
}

.price-amount {
    font-weight: 700;
    color: var(--primary);
}

/* ================================
   GALLERY
   ================================ */
.gallery {
    padding: 90px 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 14px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: var(--radius-md);
    z-index: 2;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    border-color: rgba(255, 255, 255, 0.35);
}

/* ================================
   ABOUT
   ================================ */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images { position: relative; }

.about-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.img-1 {
    box-shadow: var(--shadow-lg);
}

.img-1 img {
    height: 400px;
    object-fit: cover;
}

.img-2 {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 200px;
    box-shadow: var(--shadow-xl);
    border: 5px solid white;
    border-radius: var(--radius-lg);
}

.img-2 img {
    height: 180px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -18px;
    left: -18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 20px 26px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.exp-icon { width: 28px; height: 28px; }

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: left;
    font-weight: 600;
}

.about-lead {
    font-size: 1.08rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 20px 0;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 30px 0 38px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 0;
}

.feature-check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ================================
   DELIVERY INFO
   ================================ */
.delivery-info {
    padding: 90px 0;
    background: var(--bg-white);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.delivery-card {
    text-align: center;
    padding: 44px 30px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.delivery-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 18px;
    stroke-width: 1.5;
}

.delivery-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.delivery-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ================================
   CONTACT
   ================================ */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-lucide {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover { text-decoration: underline; }

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.84rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-white);
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A8A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 44px;
    padding-bottom: 44px;
}

.footer-logo-img { height: 40px; }

.footer-brand p {
    margin-top: 18px;
    font-size: 0.88rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.footer-social a i { width: 18px; height: 18px; }
.footer-social a svg { width: 18px; height: 18px; }

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.footer-contact a:hover { color: white; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
}

.footer-credit a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover { text-decoration: underline; }

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-hidden { opacity: 0; }
.animate-in { animation: fadeInUp 0.6s ease-out forwards; }

/* ================================
   RESPONSIVE — iPad Landscape (1024px)
   ================================ */
@media (max-width: 1024px) {
    .container { padding: 0 22px; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .business-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
    .gallery-item-large { grid-column: span 2; }
    .price-table { grid-template-columns: 1fr; }
    .promo-content { grid-template-columns: 220px 1fr; }

    .products-section,
    .business,
    .about,
    .contact { padding: 80px 0; }

    .section-header { margin-bottom: 44px; }

    .business-image { max-width: 580px; margin: 0 auto; }
    .about-images { max-width: 440px; margin: 0 auto; }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 80px; }
}

/* ================================
   RESPONSIVE — Show mobile menu (900px)
   ================================ */
@media (max-width: 900px) {
    /* Hide desktop nav, show hamburger */
    .nav-links { display: none !important; }
    .menu-toggle { display: flex; }
    .btn-nav { display: none; }
}

/* ================================
   RESPONSIVE — Tablet (768px)
   ================================ */
@media (max-width: 768px) {
    .container { padding: 0 18px; }

    /* Hero */
    .hero { min-height: auto; padding: 130px 0 90px; }
    .hero-text h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .hero-stats { flex-direction: column; gap: 14px; }
    .hero-buttons { gap: 12px; }
    .hero-wave svg { height: 50px; }

    /* Products */
    .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .product-grid-2 { grid-template-columns: 1fr; }
    .product-info { padding: 16px; }
    .product-info h4 { font-size: 0.92rem; }
    .product-desc { font-size: 0.8rem; margin-bottom: 12px; }
    .product-price { font-size: 1.18rem; }

    /* Promo */
    .promo-content { grid-template-columns: 1fr; }
    .promo-image img { min-height: 200px; max-height: 260px; }
    .promo-text { padding: 28px; }
    .promo-text h3 { font-size: 1.25rem; }
    .promo-price { font-size: 1.6rem; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
        gap: 10px;
    }
    .gallery-item-large { grid-column: span 2; grid-row: span 2; }
    .gallery { padding: 64px 0; }

    /* Delivery */
    .delivery-grid { grid-template-columns: 1fr; gap: 14px; }
    .delivery-card { padding: 30px 24px; }
    .delivery-info { padding: 64px 0; }

    /* USP */
    .usp-banner { padding: 40px 0; }
    .usp-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .usp-lucide { width: 32px; height: 32px; }
    .usp-item h4 { font-size: 0.88rem; }
    .usp-item p { font-size: 0.78rem; }

    /* About */
    .about-images { max-width: 380px; margin: 0 auto; }
    .about-features { grid-template-columns: 1fr; }
    .img-1 img { height: 300px; }
    .img-2 { width: 155px; right: -14px; bottom: -18px; }
    .img-2 img { height: 145px; }
    .about-experience { top: -14px; left: -10px; padding: 14px 18px; }
    .exp-icon { width: 22px; height: 22px; }
    .exp-text { font-size: 0.7rem; }

    /* Sections */
    .products-section,
    .business,
    .about,
    .contact { padding: 60px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 1.65rem; }
    .section-header p { font-size: 0.92rem; }

    .contact-form-wrapper { padding: 28px; }

    /* Prevent iOS zoom on input focus */
    .form-group input,
    .form-group textarea,
    .form-group select { font-size: 16px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer { padding: 44px 0 0; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Cart full width */
    .cart-sidebar { width: 100%; max-width: 100vw; }

    /* Touch targets */
    .btn { padding: 15px 28px; min-height: 50px; }
    .btn-cart { width: 48px; height: 48px; }
    .qty-btn { width: 34px; height: 34px; font-size: 1rem; }
    .cart-item-remove { padding: 10px; }
}

/* ================================
   RESPONSIVE — Small phones (480px)
   ================================ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero */
    .hero { padding: 120px 0 70px; }
    .hero-text h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 0.92rem; line-height: 1.65; }
    .hero-badge { font-size: 0.72rem; padding: 7px 16px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 12px; }
    .stat-number { font-size: 1rem; }
    .stat-label { font-size: 0.75rem; }

    /* Products */
    .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-info { padding: 14px; }
    .product-info h4 { font-size: 0.86rem; }
    .product-desc { font-size: 0.76rem; margin-bottom: 10px; }
    .product-price { font-size: 1.05rem; }
    .btn-cart { width: 42px; height: 42px; }
    .btn-cart svg { width: 17px; height: 17px; }

    /* USP */
    .usp-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .usp-banner { padding: 32px 0; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 130px;
        gap: 8px;
    }
    .gallery-item-large { grid-row: span 2; }
    .gallery { padding: 48px 0; }

    /* Promo */
    .promo-text { padding: 22px; }
    .promo-text h3 { font-size: 1.12rem; }
    .promo-price { font-size: 1.4rem; margin-bottom: 16px; }

    /* Section headers */
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.4rem; }
    .section-header p { font-size: 0.85rem; }
    .section-badge { font-size: 0.68rem; padding: 5px 14px; letter-spacing: 1.5px; }

    /* Business */
    .business-lead { font-size: 0.95rem; }
    .price-row { padding: 10px 14px; font-size: 0.85rem; }

    /* Delivery */
    .delivery-card { padding: 26px 18px; }
    .delivery-icon { width: 40px; height: 40px; }
    .delivery-card h4 { font-size: 0.95rem; }
    .delivery-card p { font-size: 0.84rem; }

    /* About */
    .about-images { max-width: 300px; }
    .img-1 img { height: 240px; }
    .img-2 { width: 125px; right: -10px; bottom: -14px; border-width: 3px; }
    .img-2 img { height: 115px; }
    .about-experience { top: -12px; left: -8px; padding: 12px 14px; gap: 8px; }
    .exp-icon { width: 20px; height: 20px; }
    .exp-text { font-size: 0.75rem; }
    .about-lead { font-size: 0.92rem; }
    .about-feature { font-size: 0.84rem; }

    /* Contact */
    .contact-info h2 { font-size: 1.4rem; }
    .contact-form-wrapper { padding: 22px; border-radius: var(--radius-lg); }
    .form-group input,
    .form-group textarea,
    .form-group select { padding: 13px 16px; font-size: 16px; }

    /* Footer */
    .footer-brand p { font-size: 0.85rem; }
    .footer-bottom { font-size: 0.75rem; padding: 20px 0; }

    /* Cart */
    .cart-header { padding: 18px 20px; }
    .cart-items { padding: 14px 20px; }
    .cart-footer { padding: 18px 20px; }
    .cart-item-img { width: 52px; height: 52px; }

    /* Fullscreen menu adjustments */
    .mobile-menu-overlay .mobile-nav a {
        font-size: 1.65rem;
        padding: 12px 32px;
    }
}

/* ================================
   RESPONSIVE — Tiny phones (360px)
   ================================ */
@media (max-width: 360px) {
    .hero-text h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.85rem; }

    .product-grid { gap: 8px; }
    .product-info { padding: 12px; }
    .product-info h4 { font-size: 0.82rem; }
    .product-price { font-size: 0.98rem; }
    .btn-cart { width: 40px; height: 40px; }

    .gallery-grid { grid-auto-rows: 105px; gap: 6px; }

    .section-header h2 { font-size: 1.25rem; }

    .mobile-menu-overlay .mobile-nav a {
        font-size: 1.4rem;
        padding: 10px 28px;
    }
}

/* ================================
   TOUCH DEVICE OPTIMIZATIONS
   ================================ */
@media (hover: none) {
    .product-card:hover {
        transform: none;
        box-shadow: var(--shadow-card);
    }
    .product-card:hover .product-image img {
        transform: none;
        filter: brightness(1.04) contrast(1.06) saturate(1.18);
    }
    .gallery-item:hover img { transform: none; }
    .gallery-item:hover::after { opacity: 0; }
    .delivery-card:hover { transform: none; box-shadow: var(--shadow-sm); }
    .btn-primary:hover { transform: none; }
    .business-image:hover img { transform: none; }
    .price-row:hover { border-color: var(--border-light); box-shadow: none; }
    .promo-banner:hover { box-shadow: var(--shadow-card); }
    .promo-banner:hover .promo-image img { transform: none; }

    /* Active states for touch feedback */
    .product-card:active { transform: scale(0.98); transition: transform 0.1s; }
    .btn:active { transform: scale(0.97); transition: transform 0.1s; }
    .btn-cart:active { transform: scale(0.9); transition: transform 0.1s; }
    .gallery-item:active { transform: scale(0.98); transition: transform 0.1s; }
    .delivery-card:active { transform: scale(0.98); transition: transform 0.1s; }
}

/* ================================
   LANDSCAPE PHONES
   ================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: row; gap: 20px; }

    .mobile-menu-overlay .mobile-nav a {
        font-size: 1.2rem;
        padding: 8px 24px;
    }
    .mobile-menu-overlay .mobile-nav { gap: 2px; }
}

/* ================================
   REDUCED MOTION
   ================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .hero-bg-image { animation: none; transform: scale(1); }
}

/* ================================
   SAFE AREA (notched phones)
   ================================ */
@supports (padding: env(safe-area-inset-bottom)) {
    .cart-footer { padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
    .footer-bottom { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
    .mobile-menu-overlay { padding-bottom: env(safe-area-inset-bottom); }
}
