/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #FFFDD7;
    --bg-white: #ffffff;
    --primary: #244225;
    --primary-hover: #1a301b;
    --text: #1a1a1a;
    --text-secondary: #555;
    --text-muted: #888;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
    --white: #ffffff;
    --black: #1a1a1a;
    --danger: #d32f2f;
    --success: #2e7d32;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Global focus-visible for keyboard navigation */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--primary); color: #fff; padding: 10px 20px; border-radius: 0 0 var(--radius) var(--radius); z-index: 99999; font-weight: 600; transition: top 0.2s; }
.skip-link:focus { top: 0; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 0;
}
.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: 0.85rem;
    font-weight: 500;
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}
.breadcrumbs a {
    color: var(--text-muted);
    transition: color 0.2s;
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: var(--primary);
}
.breadcrumbs span[aria-hidden="true"] {
    margin: 0 8px;
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 0.8rem;
}
.breadcrumbs li:last-child span[itemprop="name"] {
    color: var(--text);
    font-weight: 600;
}

/* ===== PAGE TRANSITIONS ===== */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition-inner {
    text-align: center;
}

.pt-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: ptSpin 0.7s linear infinite;
}

@keyframes ptSpin {
    to { transform: rotate(360deg); }
}

/* Page Enter Animation */
.main-content {
    animation: pageEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Exit - applied via JS */
body.page-exiting .main-content {
    animation: pageExit 0.25s ease both;
}

@keyframes pageExit {
    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

/* ===== FLOATING GLASSMORPHISM NAVBAR ===== */
.nav-spacer {
    display: none;
}

.nav-spacer.active {
    display: block;
}

.floating-nav {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
    padding: 12px 24px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-nav.floating {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    padding: 0;
    animation: navFloatIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes navFloatIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px) scale(0.96); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.floating-nav.floating .floating-nav-inner {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06),
                0 1px 2px rgba(0, 0, 0, 0.04);
}

.floating-nav.scrolled .floating-nav-inner {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08),
                0 2px 4px rgba(0, 0, 0, 0.04);
}

.floating-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fn-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.fn-logo img {
    height: 38px;
    width: auto;
}

.fn-links {
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
}

.fn-link {
    position: relative;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 12px;
    transition: color 0.3s ease;
    white-space: nowrap;
    z-index: 1;
}

.fn-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.fn-link:hover::before,
.fn-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.fn-link:hover,
.fn-link.active {
    color: var(--primary);
}

.fn-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.fn-cart {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 66, 37, 0.05);
    border-radius: 12px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.fn-cart:hover {
    background: rgba(36, 66, 37, 0.1);
    color: var(--primary);
}

.fn-cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fn-shop-btn {
    padding: 9px 22px;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fn-shop-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(36, 66, 37, 0.3);
}

.fn-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(36, 66, 37, 0.05);
    border-radius: 12px;
    padding: 0;
    transition: background 0.25s;
}

.fn-burger:hover { background: rgba(36, 66, 37, 0.1); }

.fn-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.fn-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fn-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.fn-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.fn-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.fn-mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.fn-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: 100px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

.fn-mobile-overlay.active .fn-mobile-panel {
    transform: translateX(0);
}

.fn-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fn-mobile-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fn-mobile-overlay.active .fn-mobile-links li {
    opacity: 1;
    transform: translateX(0);
}

.fn-mobile-overlay.active .fn-mobile-links li:nth-child(1) { transition-delay: 0.1s; }
.fn-mobile-overlay.active .fn-mobile-links li:nth-child(2) { transition-delay: 0.15s; }
.fn-mobile-overlay.active .fn-mobile-links li:nth-child(3) { transition-delay: 0.2s; }
.fn-mobile-overlay.active .fn-mobile-links li:nth-child(4) { transition-delay: 0.25s; }
.fn-mobile-overlay.active .fn-mobile-links li:nth-child(5) { transition-delay: 0.3s; }

.fn-mobile-links a {
    display: block;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.fn-mobile-links a:hover,
.fn-mobile-links a.active {
    background: rgba(36, 66, 37, 0.06);
    color: var(--primary);
}

.fn-mobile-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.35s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.fn-mobile-overlay.active .fn-mobile-bottom {
    opacity: 1;
    transform: translateY(0);
}

.fn-mobile-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(36, 66, 37, 0.05);
    border-radius: 14px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.25s ease;
}

.fn-mobile-cart:hover {
    background: rgba(36, 66, 37, 0.1);
}

.fn-mobile-shop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.fn-mobile-shop:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(36, 66, 37, 0.3);
}

/* ===== BANNER CAROUSEL ===== */
.banner-carousel {
    position: relative;
    width: 100vw;
    height: 72vh;
    min-height: 460px;
    max-height: 660px;
    overflow: hidden;
    border-radius: 28px;
    margin-left: calc(50% - 50vw);
}

.banner-carousel .container { max-width: 100%; padding: 0; }

.banner-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.banner-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: bannerZoom 12s ease-in-out infinite alternate;
}

.banner-carousel:hover .banner-slide.active img {
    animation-play-state: paused;
}

@keyframes bannerZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.15); }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 31, 11, 0.9) 0%,
        rgba(10, 31, 11, 0.5) 40%,
        rgba(10, 31, 11, 0.1) 70%,
        transparent 100%
    );
}

.banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    max-width: 650px;
}

.banner-content > * {
    opacity: 0;
    transform: translateY(24px);
}

@keyframes bannerTextIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-slide.active .banner-content > *:nth-child(1) {
    animation: bannerTextIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.banner-slide.active .banner-content > *:nth-child(2) {
    animation: bannerTextIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.banner-slide.active .banner-content > *:nth-child(3) {
    animation: bannerTextIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.banner-slide.active .banner-content > *:nth-child(4) {
    animation: bannerTextIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.banner-tag {
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #4ade80;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.banner-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.banner-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 14px 28px;
    background: #fff;
    color: var(--primary);
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.banner-btn i { transition: transform 0.3s ease; }
.banner-btn:hover i { transform: translateX(4px); }

.banner-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.banner-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4ade80, #a3e635);
    border-radius: 0 3px 3px 0;
    transition: width 0.1s linear;
}

.banner-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.banner-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.banner-dot.active {
    width: 36px;
    border-radius: 6px;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.banner-dot.active::after {
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== FLOATING CART PANEL ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.cart-panel.active {
    transform: translateX(0);
}

.cart-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.cart-panel-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
}

.cart-panel-header h3 i {
    font-size: 1.3rem;
    color: var(--primary);
}

.cart-panel-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-light);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.25s;
}

.cart-panel-close:hover {
    background: #fee2e2;
    color: var(--danger);
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-panel-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-panel-empty i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 16px;
}

.cart-panel-empty h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.cart-panel-empty p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cart-panel-empty a {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s;
}

.cart-panel-empty a:hover {
    background: var(--primary-hover);
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.cart-item:last-child { border-bottom: none; }

.cart-item-check {
    position: absolute;
    top: 14px;
    left: -4px;
}

.cart-item-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--border-light);
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
    padding-left: 10px;
}

.cart-item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-variant {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-price {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--black);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: background 0.2s;
}

.cart-item-qty button:hover { background: var(--border-light); }

.cart-item-qty span {
    width: 28px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: #fee2e2;
    color: var(--danger);
}

/* Cart Footer */
.cart-panel-footer {
    border-top: 1px solid var(--border-light);
    padding: 16px 24px;
    flex-shrink: 0;
    background: #fff;
}

.cart-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.cart-footer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--black);
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
    margin-bottom: 16px;
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-checkout-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(36, 66, 37, 0.3);
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cart-select-info {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* ===== SECTION HEADERS ===== */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header-center h2,
.section-header-row h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    border-bottom: 1.5px solid var(--border-light);
    padding-bottom: 16px;
}

.view-all-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.view-all-link:hover { gap: 8px; }

/* ===== CATEGORIES ===== */
.section-categories {
    padding: 60px 24px;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.category-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card-bg img {
    transform: scale(1.08);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(10, 31, 11, 0.9) 0%, rgba(10, 31, 11, 0.3) 40%, rgba(10, 31, 11, 0.05) 100%);
    transition: background 0.5s ease;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(10, 31, 11, 0.95) 0%, rgba(10, 31, 11, 0.45) 40%, rgba(10, 31, 11, 0.1) 100%);
}

.category-card-content {
    position: relative;
    z-index: 3;
    padding: 32px;
    color: #fff;
}

.category-card-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.category-card-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.category-card-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 260px;
}

.category-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4ade80;
    transition: all 0.3s ease;
}

.category-card-cta i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-cta i {
    transform: translate(3px, -3px);
}

/* ===== PRODUCTS ===== */
.section-products {
    padding: 0 24px 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card-link { display: block; }

.product-card-img {
    position: relative;
    aspect-ratio: 1;
    background: var(--border-light);
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 1;
}

.product-card-body {
    padding: 16px;
}

.product-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--black);
    margin: 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
}

.product-old-price {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card-footer {
    padding: 0 16px 16px;
}

.product-buy-btn {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: rgba(36, 66, 37, 0.05);
    color: var(--primary);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.product-buy-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== VALUES ===== */
.section-values {
    padding: 0 24px 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 14px;
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.value-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== REVIEWS ===== */
.section-reviews {
    padding: 80px 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
}

.review-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.review-author {
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.review-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--black);
}

.review-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.section-faq {
    padding: 80px 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.faq-left h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.faq-left p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    transition: color 0.25s;
}

.faq-q:hover { color: var(--primary); }

.faq-q i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--black);
    color: #fff;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.25s;
}

.footer-col ul li a:hover { opacity: 1; }

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    opacity: 0.5;
}

.developer-credit { margin-top: 6px; font-size: 0.78rem; }
.developer-credit a { color: #fff; font-weight: 600; text-decoration: underline; opacity: 0.8; }
.developer-credit a:hover { opacity: 1; }

/* ===== FOOTER NEWSLETTER STRIP ===== */
.footer-newsletter {
    background: var(--primary);
    padding: 20px 0;
    color: #fff;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.fn-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.fn-text {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fn-text i {
    font-size: 1.6rem;
    opacity: 0.85;
}
.fn-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}
.fn-text span {
    font-size: 0.82rem;
    opacity: 0.75;
}
.fn-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.fn-form input[type="email"] {
    padding: 10px 16px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.88rem;
    font-family: var(--font);
    min-width: 260px;
    transition: border-color 0.3s ease;
    outline: none;
}
.fn-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.fn-form input[type="email"]:focus { border-color: #fff; }
.fn-btn {
    padding: 10px 24px;
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.88rem;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.fn-btn:hover {
    background: var(--bg);
    transform: translateY(-1px);
}

/* ===== FOOTER MAIN ===== */
.footer-main {
    padding-bottom: 20px;
}
.footer-brand {
    max-width: 320px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 40px;
    width: auto;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

/* ===== FOOTER SOCIAL ICONS (per-platform colors) ===== */
.fs-whatsapp:hover { background: #25d366 !important; }
.fs-facebook:hover { background: #1877f2 !important; }
.fs-instagram:hover { background: #e4405f !important; }
.fs-track:hover { background: rgba(255,255,255,0.2) !important; }

/* ===== FOOTER CONTACT ===== */
.footer-contact li {
    display: flex;
    align-items: center;
}
.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* ===== FOOTER TRUST BADGES ===== */
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.ft-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

/* ===== FOOTER BOTTOM INNER ===== */
.fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== ABOUT PAGE ===== */
.about-page { padding-bottom: 60px; }

.about-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: -80px 0 0 0;
    padding-top: 80px;
}

.about-hero-bg { position: absolute; inset: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10, 31, 11, 0.9) 0%, rgba(26, 58, 28, 0.8) 100%); }

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 60px;
}

.about-hero-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-gradient-text {
    background: linear-gradient(135deg, #4ade80, #a3e635);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-mission { padding: 60px 24px; }

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-mission-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.about-mission-icon {
    width: 60px;
    height: 60px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 auto 18px;
}

.about-mission-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.about-mission-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

.about-story { padding: 40px 24px 60px; }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-story-image img { width: 100%; height: 420px; object-fit: cover; }

.about-story-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 24px;
    text-align: center;
}

.about-badge-num { display: block; font-size: 1.8rem; font-weight: 800; color: #4ade80; line-height: 1; }
.about-badge-text { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); }

.about-section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.about-story-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }

.about-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
}

.about-highlight-item i { font-size: 1.3rem; color: #4ade80; }

.about-why { padding: 40px 24px 60px; }

.about-why-header { text-align: center; margin-bottom: 40px; }

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.about-why-icon {
    width: 52px;
    height: 52px;
    background: rgba(36, 66, 37, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 16px;
}

.about-why-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.about-why-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

.about-store { padding: 0 24px 60px; }

.about-store-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-store-bg { position: absolute; inset: 0; }
.about-store-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-store-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(36, 66, 37, 0.92) 0%, rgba(36, 66, 37, 0.8) 100%); }

.about-store-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
}

.about-store-content h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.about-store-content p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 28px; line-height: 1.7; }

.about-store-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.about-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }

.about-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.about-btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ===== CHECKOUT & CART (kept from original) ===== */
.cart-page { background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border-light); padding: 32px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty h2 { font-weight: 700; margin-bottom: 10px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 28px; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--border-light); }
.cart-table th { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-image { width: 64px; height: 64px; border-radius: var(--radius); overflow: hidden; background: var(--border-light); flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 600; }
.cart-item-variant { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }

.cart-qty-control { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-qty-btn { width: 34px; height: 34px; border: none; background: transparent; font-size: 1rem; transition: var(--transition); }
.cart-qty-btn:hover { background: var(--border-light); }

.cart-remove { color: var(--danger); font-size: 0.85rem; font-weight: 500; }
.cart-remove:hover { text-decoration: underline; }

.cart-summary { margin-top: 28px; text-align: right; padding-top: 20px; border-top: 1px solid var(--border-light); }
.cart-total { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }
.cart-actions { display: flex; gap: 12px; justify-content: flex-end; }

.checkout-page { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; }
.checkout-form { background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border-light); padding: 32px; }
.checkout-form h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.88rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; transition: var(--transition); font-family: inherit; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(36, 66, 37, 0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .error-msg { display: block; color: var(--danger); font-size: 0.78rem; margin-top: 4px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkout-summary { background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border-light); padding: 28px; height: fit-content; position: sticky; top: 94px; }
.checkout-summary h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }

.summary-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 0.92rem; }
.summary-total { display: flex; justify-content: space-between; font-size: 1.15rem; font-weight: 800; padding: 16px 0; }

.payment-method { display: flex; align-items: flex-start; gap: 12px; background: rgba(36, 66, 37, 0.04); border: 1px solid rgba(36, 66, 37, 0.15); padding: 16px; border-radius: var(--radius); margin-bottom: 20px; }
.payment-method input[type="radio"] { margin-top: 4px; accent-color: var(--primary); }
.payment-method label { font-weight: 500; font-size: 0.92rem; }

.success-page { text-align: center; padding: 80px 24px; background: var(--bg-white); border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.success-icon { width: 80px; height: 80px; margin: 0 auto 24px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #fff; }
.success-page h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.success-page p { color: var(--text-secondary); margin-bottom: 8px; }
.order-id { font-weight: 800; color: var(--primary); }

.checkout-steps-indicator { display: flex; justify-content: center; align-items: center; margin: 32px 0; gap: 15px; }
.step-indicator { display: flex; align-items: center; gap: 8px; opacity: 0.5; transition: var(--transition); }
.step-indicator.active { opacity: 1; font-weight: 700; }
.step-number { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--text-secondary); color: #fff; font-size: 0.85rem; font-weight: 700; }
.step-indicator.active .step-number { background: var(--primary); }
.step-label { font-size: 0.9rem; }
.step-line { width: 80px; height: 2px; background: var(--border); }

.checkout-step-panel { display: none; animation: fadeIn 0.4s ease; }
.checkout-step-panel.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header { padding: 40px 0 10px; }
.page-header h1 { font-size: 2rem; font-weight: 800; letter-spacing: -0.3px; }

.badge { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
.badge-warning { background: #fff3e0; color: #e65100; }
.badge-info { background: #e3f2fd; color: #1565c0; }
.badge-primary { background: rgba(36,66,37,0.08); color: var(--primary); }
.badge-success { background: #e8f5e9; color: var(--success); }
.badge-danger { background: #ffebee; color: var(--danger); }
.badge-secondary { background: var(--border-light); color: var(--text-muted); }

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 24px; font-size: 0.92rem; border: 1px solid; }
.alert-error { background: #ffebee; color: var(--danger); border-color: #ffcdd2; }
.alert-success { background: #e8f5e9; color: var(--success); border-color: #c8e6c9; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .floating-nav { width: calc(100% - 24px); top: 10px; }
    .floating-nav.floating { width: calc(100% - 24px); }

    .fn-links { display: none; }
    .fn-shop-btn { display: none; }
    .fn-burger { display: flex; }

    .banner-carousel {
        height: 55vh;
        min-height: 380px;
        border-radius: 20px;
        margin-left: calc(50% - 50vw);
    }

    .banner-content { padding: 30px 24px; }
    .banner-content h1 { font-size: 1.8rem; }
    .banner-content p { font-size: 0.9rem; }

    .category-cards { grid-template-columns: 1fr; gap: 16px; }
    .category-card { min-height: 280px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .values-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }

    .faq-grid { grid-template-columns: 1fr; gap: 30px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .fn-inner { flex-direction: column; text-align: center; }
    .fn-form { width: 100%; }
    .fn-form input[type="email"] { min-width: 0; width: 100%; }
    .fn-btn { width: 100%; }
    .footer-brand { max-width: 100%; }
    .fb-inner { flex-direction: column; text-align: center; gap: 4px; }
    .footer-socials { justify-content: center; }
    .ft-badge { font-size: 0.68rem; }

    .about-mission-grid { grid-template-columns: 1fr; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-story-image img { height: 280px; }
    .about-why-grid { grid-template-columns: 1fr; }
}

/* ===== PRODUCT HOVER ADD TO CART ===== */
.product-card { position: relative; }
.product-hover-cart {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 14px rgba(36, 66, 37, 0.35);
}
.product-card:hover .product-hover-cart {
    opacity: 1;
    transform: translateY(0);
}
.product-hover-cart:hover {
    background: var(--primary-hover);
    transform: scale(1.1) !important;
}
.product-hover-cart.adding {
    background: var(--success);
    animation: cartPop 0.4s ease;
}
@keyframes cartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ===== STORY / ABOUT SECTION ===== */
.section-story { padding: 80px 0; }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-tag { font-size: 0.7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.story-content h2 { font-size: 2rem; font-weight: 800; color: var(--black); margin: 8px 0 16px; line-height: 1.3; }
.story-content p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 12px; }
.story-stats { display: flex; gap: 32px; margin-top: 24px; }
.story-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.story-stat span { font-size: 0.78rem; color: var(--text-muted); }
.story-visual { position: relative; }
.story-img-main { border-radius: 16px; overflow: hidden; }
.story-img-main img { width: 100%; height: 400px; object-fit: cover; }
.story-img-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
    border: 4px solid var(--bg);
    box-shadow: var(--shadow-lg);
}
.story-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* ===== HOW IT WORKS ===== */
.section-how { padding: 80px 0; }
.how-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.how-step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 32px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(36, 66, 37, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}
.how-step h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.how-step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.how-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ===== VALUES ===== */
.section-values { padding: 0 0 80px; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(36, 66, 37, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}
.value-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.value-item p { font-size: 0.82rem; color: var(--text-secondary); }

/* ===== CTA BANNER ===== */
.section-cta { padding: 0 0 80px; }
.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 48px 56px;
    gap: 40px;
}
.cta-content h2 { font-size: 2rem; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.cta-content p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 24px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-btns .btn-primary { background: #fff; color: var(--primary); }
.cta-btns .btn-primary:hover { background: var(--bg); }
.cta-btns .btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-btns .btn-secondary:hover { background: rgba(255,255,255,0.25); }
.cta-visual { flex-shrink: 0; }
.cta-visual img { width: 320px; height: 220px; object-fit: cover; border-radius: 14px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(36, 66, 37, 0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}
.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-danger:hover {
    background: #b71c1c;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--primary);
    padding: 14px 0;
    margin-top: -1px;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 24px;
    white-space: nowrap;
}
.trust-bar-item i {
    font-size: 1.1rem;
    opacity: 0.85;
}
.trust-bar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.contact-hero h1 { font-size: 2.5rem; font-weight: 900; margin: 8px 0 12px; }
.contact-hero p { font-size: 1rem; opacity: 0.85; max-width: 500px; margin: 0 auto; }

/* Quick Connect Cards */
.contact-quick { padding: 48px 24px 0; margin-top: -40px; position: relative; z-index: 2; }
.contact-quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quick-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quick-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.quick-whatsapp .quick-card-icon { background: #dcf8c6; color: #25d366; }
.quick-phone .quick-card-icon { background: #e3f2fd; color: #1976d2; }
.quick-email .quick-card-icon { background: #fff3e0; color: #f57c00; }
.quick-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.quick-card p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }
.quick-card-arrow { position: absolute; top: 16px; right: 16px; color: var(--text-muted); font-size: 1rem; transition: all 0.3s ease; }
.quick-card:hover .quick-card-arrow { color: var(--primary); transform: translate(2px, -2px); }

/* Contact Main Grid */
.contact-main { padding: 60px 24px; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }

/* Form Card */
.contact-form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.contact-form-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }

/* Submit Button */
.contact-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.contact-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.contact-submit-loading { display: inline-flex; align-items: center; gap: 6px; }

/* Alerts */
.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 0.88rem;
}
.contact-success { background: #e8f5e9; color: #2e7d32; }
.contact-success i { font-size: 1.3rem; margin-top: 2px; }
.contact-error { background: #fce4ec; color: #c62828; }
.contact-error i { font-size: 1.3rem; margin-top: 2px; }
.contact-alert strong { display: block; margin-bottom: 2px; }
.contact-alert p { margin: 0; opacity: 0.85; }

/* Info Sidebar */
.contact-info-side { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(36, 66, 37, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.contact-info-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.contact-info-card p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }
.contact-info-card strong { font-size: 0.95rem; color: var(--black); display: block; margin-top: 4px; }
.contact-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.contact-info-badge i { font-size: 0.5rem; color: #4caf50; }

/* Social Card */
.contact-social-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.contact-social-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.contact-social-links { display: flex; gap: 10px; }
.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.social-wa { background: #dcf8c6; color: #25d366; }
.social-wa:hover { background: #25d366; color: #fff; }
.social-fb { background: #e3f2fd; color: #1976d2; }
.social-fb:hover { background: #1976d2; color: #fff; }
.social-ig { background: #fce4ec; color: #e91e63; }
.social-ig:hover { background: #e91e63; color: #fff; }
.social-call { background: #fff3e0; color: #f57c00; }
.social-call:hover { background: #f57c00; color: #fff; }

/* Contact FAQ */
.contact-faq-section { padding: 0 24px 80px; }
.contact-faq-list { max-width: 740px; margin: 0 auto; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== HOMEPAGE CONTACT SECTION ===== */
.section-contact-home { padding: 0 24px 80px; }
.contact-home-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 48px 56px;
    gap: 40px;
}
.contact-home-left h2 { font-size: 1.8rem; font-weight: 800; line-height: 1.3; margin: 8px 0 12px; }
.contact-home-left p { font-size: 0.92rem; opacity: 0.85; max-width: 400px; }
.contact-home-right { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.contact-home-wa { background: #25d366; color: #fff; }
.contact-home-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.contact-home-call { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.contact-home-call:hover { background: rgba(255,255,255,0.25); }
.contact-home-form { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.contact-home-form:hover { background: rgba(255,255,255,0.25); }

/* ===== FOOTER SOCIALS ===== */
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-2px); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-visual { order: -1; }
    .story-img-main img { height: 300px; }
    .how-grid { flex-direction: column; align-items: center; }
    .how-arrow { transform: rotate(90deg); padding-top: 0; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-card { flex-direction: column; text-align: center; padding: 40px 32px; }
    .cta-btns { justify-content: center; }
    .cta-visual img { width: 100%; max-width: 400px; }
    .faq-grid { grid-template-columns: 1fr; gap: 32px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .story-stats { gap: 20px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-card-body { padding: 12px; }
    .product-name { font-size: 0.82rem; }
    .product-price { font-size: 0.95rem; }
    .section-header-row { flex-direction: column; gap: 8px; align-items: flex-start; }
    .values-grid { grid-template-columns: 1fr; }
    .story-content h2 { font-size: 1.5rem; }
    .cta-content h2 { font-size: 1.5rem; }
    .contact-quick-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-home-card { flex-direction: column; text-align: center; padding: 40px 32px; }
    .contact-home-right { justify-content: center; }
    .contact-home-left p { margin: 0 auto 12px; }
    .contact-hero h1 { font-size: 1.8rem; }
}
