:root {
    --color-primary: #14539a;
    --color-primary-dark: #0d3c73;
    --color-accent: #d32f2f;
    --color-accent-dark: #a82424;
    --color-aqua: #29b6d8;
    --color-dark: #1c2b3a;
    --color-light: #f4f8fb;
    --color-muted: #6b7a89;
    --radius: 10px;
    --shadow: 0 4px 18px rgba(20, 60, 100, 0.08);
    --shadow-lg: 0 12px 32px rgba(20, 60, 100, 0.14);
}

/* ---------- Icon system ---------- */
.icon {
    width: 1em; height: 1em; display: inline-block; flex-shrink: 0;
    vertical-align: -0.15em;
    fill: none; stroke: currentColor; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
}
.icon-solid { fill: currentColor; stroke: none; }

* { box-sizing: border-box; }

html { overflow-x: hidden; }
body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    color: var(--color-dark);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ---------- Top bar ---------- */
.topbar {
    background: var(--color-primary-dark);
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #fff; opacity: 0.9; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar .topbar-links span { margin-right: 18px; }

/* ---------- Header ---------- */
header.main-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo .logo-icon {
    width: 92px; height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-aqua), var(--color-primary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; overflow: hidden; flex-shrink: 0;
}
.logo .logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.logo .logo-text { line-height: 1.1; }
.logo .logo-text .brand-name { font-size: 20px; color: var(--color-accent); font-weight: 800; letter-spacing: 0.5px; }
.logo .logo-text .brand-tag { font-size: 11px; color: var(--color-muted); font-weight: 400; }

nav.main-nav { display: flex; gap: 28px; align-items: center; }
nav.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-dark);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--color-primary); border-bottom-color: var(--color-accent); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions a { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; }
.cart-icon-wrap { position: relative; }
.cart-badge {
    position: absolute; top: -8px; right: -10px;
    background: var(--color-accent); color: #fff;
    font-size: 11px; font-weight: 700;
    border-radius: 50%; width: 19px; height: 19px;
    display: flex; align-items: center; justify-content: center;
}
.btn-call {
    background: var(--color-accent); color: #fff !important;
    padding: 9px 16px; border-radius: 30px; font-size: 14px;
}
.btn-call:hover { background: var(--color-accent-dark); }

.mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--color-dark); }

/* ---------- Mobile Drawer ---------- */
.drawer-overlay {
    position: fixed; inset: 0; background: rgba(9, 22, 36, 0.55);
    z-index: 290; opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer {
    position: fixed; top: 0; right: 0; height: 100vh; width: 84%; max-width: 340px;
    background: #fff; z-index: 300; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    box-shadow: -14px 0 40px rgba(6, 26, 48, 0.25);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px; border-bottom: 1px solid var(--color-light);
}
.drawer-close {
    background: var(--color-light); border: none; width: 36px; height: 36px; border-radius: 50%;
    font-size: 16px; cursor: pointer; color: var(--color-dark);
}

.drawer-nav { display: flex; flex-direction: column; padding: 10px 0; overflow-y: auto; }
.drawer-nav a {
    display: flex; align-items: center; gap: 14px;
    padding: 15px 22px; font-weight: 600; font-size: 15.5px; color: var(--color-dark);
    border-bottom: 1px solid var(--color-light); position: relative;
}
.drawer-nav a .dn-icon { font-size: 18px; width: 22px; text-align: center; }
.drawer-nav a.active { color: var(--color-primary); background: var(--color-light); }
.drawer-nav a.active::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--color-accent); }
.dn-count {
    margin-left: auto; background: var(--color-accent); color: #fff; font-size: 11px; font-weight: 700;
    border-radius: 10px; padding: 2px 8px;
}

.drawer-footer { margin-top: auto; padding: 18px 22px 26px; border-top: 1px solid var(--color-light); }
.drawer-call-btn, .drawer-whatsapp-btn {
    display: block; text-align: center; padding: 13px; border-radius: 10px; font-weight: 700;
    font-size: 14px; margin-bottom: 12px;
}
.drawer-call-btn { background: var(--color-accent); color: #fff; }
.drawer-whatsapp-btn { background: #e9f9ee; color: #1d7a44; }
.drawer-social { display: flex; gap: 10px; justify-content: center; }
.drawer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: var(--color-light);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    color: var(--color-primary); transition: 0.25s;
}
.drawer-social a:hover { background: var(--color-primary); color: #fff; }

body.drawer-locked { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block; padding: 12px 26px; border-radius: 30px;
    font-weight: 600; font-size: 15px; cursor: pointer; border: none;
    transition: 0.2s; text-align: center;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: var(--color-accent-dark); }
.btn-outline { background: transparent; border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero {
    background:
        radial-gradient(ellipse 900px 600px at 15% -10%, rgba(41,182,216,0.35), transparent 60%),
        linear-gradient(125deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #0f4a86 100%);
    color: #fff;
    padding: 96px 0 90px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}
.hero-blob-1 { width: 420px; height: 420px; background: var(--color-aqua); top: -160px; left: -120px; }
.hero-blob-2 { width: 360px; height: 360px; background: var(--color-accent); bottom: -180px; right: 6%; opacity: 0.35; }
.hero-blob-3 { width: 260px; height: 260px; background: #7fe3ff; top: 40%; left: 46%; opacity: 0.18; }

.hero-inner { display: flex; align-items: center; gap: 56px; position: relative; z-index: 1; }
.hero-text { flex: 1.05; }

.eyebrow-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.3px; margin-bottom: 22px;
}

.hero-text h1 { font-size: 50px; line-height: 1.14; margin: 0 0 20px; font-weight: 800; letter-spacing: -0.5px; }
.hero-text h1 .highlight { position: relative; white-space: nowrap; }
.hero-text h1 .highlight::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 14px;
    background: var(--color-accent); opacity: 0.85; z-index: -1; border-radius: 4px;
    transform: skewX(-4deg);
}
.hero-text p { font-size: 18px; line-height: 1.65; opacity: 0.88; max-width: 480px; margin-bottom: 34px; }

.hero-actions { display: flex; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }
.hero-actions .btn-accent { box-shadow: 0 10px 24px rgba(211,47,47,0.4); }
.hero-actions .btn-accent .arrow { display: inline-block; transition: transform 0.2s; margin-left: 4px; }
.hero-actions .btn-accent:hover .arrow { transform: translateX(4px); }
.btn-ghost {
    background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; }

.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 20px; font-weight: 800; }
.hero-stat span { display: block; font-size: 12.5px; opacity: 0.75; margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.25); }

.hero-visual { flex: 0.95; position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-frame {
    position: relative; width: 100%; max-width: 380px; height: 480px;
    border-radius: 42% 58% 55% 45% / 55% 45% 58% 42%;
    overflow: hidden;
    box-shadow: 0 30px 60px -10px rgba(6,26,48,0.5), 0 0 0 1px rgba(255,255,255,0.15) inset;
    background: linear-gradient(160deg, #eaf6fa, #cfeaf3);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.floating-badge {
    position: absolute; display: flex; align-items: center; gap: 10px;
    background: #fff; color: var(--color-dark); border-radius: 16px; padding: 12px 16px;
    box-shadow: var(--shadow-lg); z-index: 2; animation: floatY 4s ease-in-out infinite;
}
.floating-badge .fb-icon { font-size: 22px; }
.floating-badge strong { display: block; font-size: 13px; font-weight: 700; }
.floating-badge small { display: block; font-size: 11px; color: var(--color-muted); }
.badge-top { top: 6%; left: -8%; }
.badge-bottom { bottom: 8%; right: -10%; animation-delay: 1.5s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ---------- Section titles ---------- */
.section { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 42px; }
.section-title .eyebrow { color: var(--color-accent); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700; }
.section-title h2 { font-size: 32px; font-weight: 800; color: var(--color-dark); margin: 8px 0 10px; }
.section-title p { color: var(--color-muted); max-width: 560px; margin: 0 auto; }
.bg-light { background: var(--color-light); }

/* ---------- Category grid ---------- */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.category-card {
    --cat-c1: var(--color-primary);
    --cat-c2: var(--color-primary-dark);
    position: relative;
    display: flex; align-items: center; gap: 16px;
    background: #fff; border: 1px solid #eef2f6; border-radius: 18px;
    padding: 22px 20px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(20, 60, 100, 0.05);
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
    opacity: 0; transform: translateY(16px);
    animation: catCardIn 0.6s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes catCardIn { to { opacity: 1; transform: translateY(0); } }

.category-card:nth-child(8n+1) { --cat-c1: #2563eb; --cat-c2: #1d4ed8; }
.category-card:nth-child(8n+2) { --cat-c1: #dc2626; --cat-c2: #a82424; }
.category-card:nth-child(8n+3) { --cat-c1: #0891b2; --cat-c2: #0e7490; }
.category-card:nth-child(8n+4) { --cat-c1: #d97706; --cat-c2: #b45309; }
.category-card:nth-child(8n+5) { --cat-c1: #7c3aed; --cat-c2: #5b21b6; }
.category-card:nth-child(8n+6) { --cat-c1: #059669; --cat-c2: #047857; }
.category-card:nth-child(8n+7) { --cat-c1: #db2777; --cat-c2: #9d174d; }
.category-card:nth-child(8n+8) { --cat-c1: #4f46e5; --cat-c2: #3730a3; }

.category-card-glow {
    position: absolute; top: -30%; right: -20%; width: 140px; height: 140px; border-radius: 50%;
    background: radial-gradient(circle, var(--cat-c1) 0%, transparent 72%);
    opacity: 0.12; filter: blur(4px);
    transition: opacity 0.35s ease, transform 0.5s ease;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px -12px rgba(20, 60, 100, 0.22);
    border-color: var(--cat-c1);
    border-color: color-mix(in srgb, var(--cat-c1) 35%, #eef2f6);
}
.category-card:hover .category-card-glow { opacity: 0.22; transform: scale(1.3); }

.cat-icon-wrap {
    flex-shrink: 0; width: 58px; height: 58px; border-radius: 16px;
    background: linear-gradient(135deg, var(--cat-c1), var(--cat-c2));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 16px -6px rgba(20, 60, 100, 0.35);
    box-shadow: 0 8px 16px -6px color-mix(in srgb, var(--cat-c1) 60%, transparent);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
    position: relative; z-index: 1; color: #fff;
}
.category-card:hover .cat-icon-wrap { transform: rotate(-8deg) scale(1.08); }
.cat-icon-wrap .cat-icon { font-size: 26px; line-height: 1; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15)); }

.category-card-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.category-card-body h3 {
    font-size: 15.5px; font-weight: 700; margin: 0 0 4px; color: var(--color-dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cat-count {
    font-size: 12px; font-weight: 600; color: var(--cat-c1);
    background: var(--color-light);
    background: color-mix(in srgb, var(--cat-c1) 10%, transparent);
    padding: 2px 9px; border-radius: 20px; display: inline-block;
}

.cat-arrow {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-light); color: var(--color-muted); font-size: 15px;
    transition: 0.35s cubic-bezier(.22,1,.36,1); position: relative; z-index: 1;
}
.category-card:hover .cat-arrow {
    background: linear-gradient(135deg, var(--cat-c1), var(--cat-c2));
    color: #fff; transform: translateX(3px) rotate(-45deg);
}

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid-3col { grid-template-columns: repeat(3, 1fr); }

.product-card {
    position: relative;
    background: #fff; border: 1px solid #eef2f6; border-radius: 20px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 2px 10px rgba(20, 60, 100, 0.05);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0; transform: translateY(18px);
    animation: catCardIn 0.6s cubic-bezier(.22,1,.36,1) forwards;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px -16px rgba(20, 60, 100, 0.25);
    border-color: #dce8f1;
}

.product-card .product-img {
    aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at 50% 38%, #eef6fb 0%, #f4f8fb 62%, #eef2f6 100%);
    position: relative; overflow: hidden;
}
.product-card .product-img img {
    width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%;
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .product-img img { transform: scale(1.1); }
.product-card .product-img::before {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(20,40,70,0.06) 0%, transparent 22%, transparent 78%, rgba(20,40,70,0.10) 100%);
}

.product-thumb-fallback {
    width: 92px; height: 92px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-aqua), var(--color-primary));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 22px -8px rgba(20, 60, 100, 0.4);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1); position: relative; z-index: 1; color: #fff;
}
.product-thumb-fallback span { font-size: 42px; line-height: 1; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.15)); }
.product-card:hover .product-thumb-fallback { transform: scale(1.08) rotate(-6deg); }

.product-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark)); color: #fff;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.3px; padding: 5px 12px; border-radius: 20px;
    box-shadow: 0 6px 14px -4px rgba(211, 47, 47, 0.45);
}

.product-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.product-body .cat-label {
    font-size: 11px; color: var(--color-aqua); font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.6px; margin-bottom: 6px;
}
.product-body h3 { font-size: 16.5px; margin: 0 0 8px; line-height: 1.3; font-weight: 700; }
.product-body p { font-size: 13px; color: var(--color-muted); flex: 1; margin: 0 0 16px; line-height: 1.6; }
.product-price-row {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px dashed #e5edf3;
}
.product-price { font-size: 17.5px; font-weight: 800; color: var(--color-primary); }
.product-sizes { font-size: 12px; color: var(--color-muted); }

.product-cta {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-light); color: var(--color-muted); font-size: 15px;
    transition: 0.35s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .product-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff; transform: translateX(3px) rotate(-45deg);
}

/* ---------- Feature strip ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.feature-item {
    position: relative; text-align: center; padding: 34px 22px;
    background: #fff; border: 1px solid #eef2f6; border-radius: 18px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(20, 60, 100, 0.05);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0; transform: translateY(18px);
    animation: catCardIn 0.6s cubic-bezier(.22,1,.36,1) forwards;
}
.feature-item:nth-child(1) { --f-c1: #059669; --f-c2: #047857; }
.feature-item:nth-child(2) { --f-c1: #2563eb; --f-c2: #1d4ed8; }
.feature-item:nth-child(3) { --f-c1: #d97706; --f-c2: #b45309; }
.feature-item:nth-child(4) { --f-c1: #7c3aed; --f-c2: #5b21b6; }

.feature-item-glow {
    position: absolute; top: -34%; left: 50%; width: 150px; height: 150px; border-radius: 50%;
    background: radial-gradient(circle, var(--f-c1) 0%, transparent 72%);
    opacity: 0.12; filter: blur(4px); transform: translateX(-50%);
    transition: opacity 0.4s ease, transform 0.5s ease; pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px -14px rgba(20, 60, 100, 0.2);
    border-color: var(--f-c1);
    border-color: color-mix(in srgb, var(--f-c1) 30%, #eef2f6);
}
.feature-item:hover .feature-item-glow { opacity: 0.22; transform: translateX(-50%) scale(1.3); }

.f-icon-wrap {
    width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 17px;
    background: linear-gradient(135deg, var(--f-c1), var(--f-c2));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px -8px rgba(20, 60, 100, 0.35);
    box-shadow: 0 10px 20px -8px color-mix(in srgb, var(--f-c1) 55%, transparent);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
    position: relative; z-index: 1; color: #fff;
}
.feature-item:hover .f-icon-wrap { transform: scale(1.08) rotate(-6deg); }
.f-icon-wrap .f-icon { font-size: 27px; line-height: 1; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15)); }

.feature-item h4 { font-size: 16px; margin: 0 0 8px; font-weight: 700; color: var(--color-dark); position: relative; z-index: 1; }
.feature-item p { font-size: 13px; color: var(--color-muted); margin: 0; line-height: 1.6; position: relative; z-index: 1; }

/* ---------- Certifications ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.cert-card {
    --c-c1: #d4a017; --c-c2: #a8790a;
    position: relative; text-align: center; padding: 32px 20px;
    background: #fff; border: 1px solid #eef2f6; border-radius: 18px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(20, 60, 100, 0.05);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0; transform: translateY(18px);
    animation: catCardIn 0.6s cubic-bezier(.22,1,.36,1) forwards;
}
.cert-card-glow {
    position: absolute; top: -34%; left: 50%; width: 150px; height: 150px; border-radius: 50%;
    background: radial-gradient(circle, var(--c-c1) 0%, transparent 72%);
    opacity: 0.14; filter: blur(4px); transform: translateX(-50%);
    transition: opacity 0.4s ease, transform 0.5s ease; pointer-events: none;
}
.cert-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px -14px rgba(20, 60, 100, 0.2);
    border-color: var(--c-c1);
    border-color: color-mix(in srgb, var(--c-c1) 32%, #eef2f6);
}
.cert-card:hover .cert-card-glow { opacity: 0.26; transform: translateX(-50%) scale(1.3); }

.cert-icon-wrap {
    width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-c1), var(--c-c2));
    display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff;
    box-shadow: 0 10px 20px -8px rgba(184, 134, 11, 0.45);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1); position: relative; z-index: 1;
}
.cert-card:hover .cert-icon-wrap { transform: scale(1.08) rotate(-6deg); }

.cert-card h4 { font-size: 15.5px; font-weight: 700; margin: 0 0 6px; color: var(--color-dark); position: relative; z-index: 1; }
.cert-card p { font-size: 12.5px; color: var(--color-muted); margin: 0; line-height: 1.5; position: relative; z-index: 1; }

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar { background: var(--color-light); padding: 16px 0; font-size: 13px; color: var(--color-muted); }
.breadcrumb-bar a { color: var(--color-primary); font-weight: 600; }

/* ---------- Filters / listing ---------- */
.listing-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.checkout-layout { grid-template-columns: 1fr 360px; }
.cart-layout { grid-template-columns: 1fr 340px; }
.account-layout { grid-template-columns: 300px 1fr; }
.contact-layout { grid-template-columns: 1fr 1fr; }
.filter-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; position: sticky; top: 90px; }
.filter-box h4 { font-size: 15px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 1px; }
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: 4px; }
.filter-list a {
    display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--color-dark);
}
.filter-list a:hover, .filter-list a.active { background: var(--color-light); color: var(--color-primary); }
.filter-list .count { float: right; color: var(--color-muted); font-size: 12px; }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.detail-gallery { background: var(--color-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; padding: 40px; }
.detail-gallery img { max-height: 380px; }
.detail-info .cat-label { color: var(--color-aqua); font-weight: 700; font-size: 13px; text-transform: uppercase; }
.detail-info h1 { font-size: 30px; margin: 8px 0 14px; }
.detail-info .desc { color: var(--color-muted); margin-bottom: 22px; line-height: 1.7; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 22px; }
.size-option {
    border: 2px solid #dde6ec; border-radius: 8px; padding: 10px 18px; cursor: pointer;
    font-weight: 600; font-size: 14px; transition: 0.2s;
}
.size-option.active, .size-option:hover { border-color: var(--color-primary); background: #eaf3fb; color: var(--color-primary); }
.detail-price { font-size: 30px; font-weight: 800; color: var(--color-primary); margin-bottom: 20px; }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-selector { display: flex; align-items: center; border: 2px solid #dde6ec; border-radius: 8px; }
.qty-selector button { background: none; border: none; width: 38px; height: 42px; font-size: 18px; cursor: pointer; }
.qty-selector input { width: 44px; text-align: center; border: none; font-size: 15px; font-weight: 600; }
.detail-actions { display: flex; gap: 14px; }
.ingredients-box { margin-top: 30px; padding-top: 24px; border-top: 1px solid #eef2f5; }
.ingredients-box h4 { font-size: 15px; margin-bottom: 8px; }
.ingredients-box p { font-size: 13px; color: var(--color-muted); line-height: 1.7; }

/* ---------- Cart ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 14px; font-size: 13px; text-transform: uppercase; color: var(--color-muted); border-bottom: 2px solid var(--color-light); }
.cart-table td { padding: 16px 14px; border-bottom: 1px solid var(--color-light); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product img { width: 60px; height: 60px; object-fit: contain; background: var(--color-light); border-radius: 8px; padding: 6px; }
.cart-summary { background: var(--color-light); border-radius: var(--radius); padding: 24px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 15px; }
.summary-row.total { font-size: 19px; font-weight: 800; border-top: 1px solid #dde6ec; padding-top: 14px; margin-top: 6px; }
.remove-link { color: var(--color-accent); font-size: 13px; font-weight: 600; background: none; border: none; cursor: pointer; padding: 0; }

/* ---------- Cart items (grid, replaces table for responsiveness) ---------- */
.cart-items-head {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 14px;
    padding: 0 14px 12px; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.4px;
    color: var(--color-muted); border-bottom: 2px solid var(--color-light);
}
.cart-item {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 14px; align-items: center;
    padding: 18px 14px; border-bottom: 1px solid var(--color-light);
}
.cart-cell-label { display: none; }
.qty-update-form { display: flex; align-items: center; gap: 8px; }

@media (max-width: 640px) {
    .cart-items-head { display: none; }
    .cart-item {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "product product"
            "price qty"
            "subtotal remove";
        row-gap: 14px; padding: 18px 4px;
    }
    .cart-item .cart-product { grid-area: product; }
    .cart-item .cart-cell-price { grid-area: price; }
    .cart-item .cart-cell-qty { grid-area: qty; }
    .cart-item .cart-cell-subtotal { grid-area: subtotal; }
    .cart-item .cart-cell-remove { grid-area: remove; text-align: right; }
    .cart-cell-label { display: block; font-size: 11px; text-transform: uppercase; color: var(--color-muted); margin-bottom: 4px; }
    .qty-update-form { flex-wrap: wrap; }
}
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state .icon { font-size: 60px; margin-bottom: 16px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.form-control {
    width: 100%; padding: 12px 14px; border: 2px solid #dde6ec; border-radius: 8px;
    font-size: 14px; font-family: inherit; transition: 0.2s;
}
.form-control:focus { outline: none; border-color: var(--color-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 110px; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #e3f6ea; color: #1d7a44; }
.alert-error { background: #fde8e8; color: #b02a2a; }
.payment-options { display: flex; gap: 14px; }
.payment-option { flex: 1; border: 2px solid #dde6ec; border-radius: 8px; padding: 16px; cursor: pointer; text-align: center; }
.payment-option.active { border-color: var(--color-primary); background: #eaf3fb; }

/* ---------- Footer ---------- */
footer.main-footer { background: var(--color-dark); color: #cbd7e1; padding: 60px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-grid p, .footer-grid a { font-size: 14px; color: #a9bacb; line-height: 1.9; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 13px; color: #8698ab; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; font-size: 16px; transition: 0.25s;
}
.social-row a:hover { background: var(--color-accent); transform: translateY(-2px); }

.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; background: #25d366; color: #fff;
    width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 6px 20px rgba(0,0,0,0.25); z-index: 200;
    opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.whatsapp-float.visible { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- About / static pages ---------- */
.about-hero { background: var(--color-light); padding: 50px 0; text-align: center; }
.mission-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.mission-item { background: #fff; box-shadow: var(--shadow); border-radius: var(--radius); padding: 20px 14px; text-align: center; }
.mission-item .num { font-size: 22px; font-weight: 800; color: var(--color-accent); }
.mission-item p { font-size: 13px; margin-top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .listing-layout { grid-template-columns: 1fr; }
    .filter-box { position: static; }
    .product-detail { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .feature-strip { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-image-frame { max-width: 320px; height: 400px; }
    .badge-top { left: -4%; }
    .badge-bottom { right: -4%; }
}
@media (max-width: 768px) {
    nav.main-nav { display: none; }
    .mobile-toggle { display: block; }
    .header-actions .btn-call span.label,
    .header-actions a[title="My Account"] span.label,
    .header-actions a[title="Login"] span.label { display: none; }

    .hero { padding: 40px 0 56px; }
    .hero-inner { flex-direction: column; text-align: center; gap: 8px; }
    .hero-text { width: 100%; }
    .hero-text p { margin: 0 auto 26px; font-size: 16px; }
    .hero-actions { justify-content: center; width: 100%; gap: 12px; }
    .hero-actions .btn { flex: 1; min-width: 0; padding: 15px 18px; font-size: 15px; }
    .eyebrow-badge { font-size: 12px; padding: 7px 14px; margin-bottom: 18px; animation: fadeInUp 0.6s ease both; }

    .hero-visual {
        order: -1; margin-bottom: 28px; width: 100%;
        animation: fadeInUp 0.7s ease both;
    }
    .hero-glow {
        position: absolute; width: 82%; height: 82%; top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(255,255,255,0.4), rgba(255,255,255,0) 70%);
        filter: blur(10px); z-index: 0;
    }
    .hero-image-frame { max-width: 290px; height: 360px; margin: 0 auto; position: relative; z-index: 1; }
    .hero-dot { position: absolute; border-radius: 50%; z-index: 0; }
    .hero-dot-1 { width: 14px; height: 14px; background: var(--color-accent); top: 4%; right: 12%; animation: floatY 3s ease-in-out infinite; }
    .hero-dot-2 { width: 10px; height: 10px; background: #ffd166; top: 82%; left: 6%; animation: floatY 3.6s ease-in-out infinite 0.6s; }
    .hero-dot-3 { width: 8px; height: 8px; background: #fff; top: 14%; left: 2%; opacity: 0.8; animation: floatY 4s ease-in-out infinite 1s; }

    .floating-badge { padding: 9px 12px; gap: 7px; animation: fadeInUp 0.8s ease both, floatY 4s ease-in-out infinite; }
    .floating-badge strong { font-size: 12px; }
    .floating-badge small { font-size: 10px; }
    .badge-top { top: 0%; left: 2%; }
    .badge-bottom { bottom: 6%; right: 0%; }

    .hero-text h1 { font-size: 30px; line-height: 1.22; animation: fadeInUp 0.7s ease both; animation-delay: 0.05s; }
    .hero-text p { animation: fadeInUp 0.8s ease both; animation-delay: 0.1s; }
    .hero-actions { animation: fadeInUp 0.9s ease both; animation-delay: 0.15s; }

    .hero-stats {
        width: 100%; justify-content: center; gap: 10px; margin-top: 4px;
        animation: fadeInUp 1s ease both; animation-delay: 0.2s;
    }
    .hero-stat {
        background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
        border-radius: 14px; padding: 10px 14px; flex: 1; min-width: 0;
    }
    .hero-stat strong { font-size: 15px; }
    .hero-stat span { font-size: 10.5px; }
    .hero-stat-divider { display: none; }

    .hero-wave { display: block; }

    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 16px; }

    .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .category-grid, .product-grid, .cert-grid { grid-template-columns: 1fr; }
    .hero-image-frame { max-width: 250px; height: 310px; }
    .hero-text h1 { font-size: 27px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
