@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* ============================
   DESIGN TOKENS
   ============================ */
:root {
    --white: #ffffff;
    --off-white: #f8f7f4;
    --cream: #faf9f6;
    --black: #1a1a1a;
    --dark: #2d2d2d;
    --gray-900: #333333;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #cccccc;
    --gray-100: #eeeeee;
    --gold: #c9a84c;
    --gold-dark: #b8953f;
    --gold-light: #dfc06f;
    --border: rgba(0, 0, 0, 0.08);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    --header-h: 80px;
    --max-w: 1280px;
    --radius: 4px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================
   HEADER (Glassmorphism)
   ============================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-area img {
    height: 60px;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out);
}
.logo-area:hover img { transform: scale(1.03); }

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: #ab7f23; /* Classic Matte Gold */
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15); /* Adds just enough body */
}

nav {
    margin-left: auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav ul li a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-700);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

nav ul li a:hover,
nav ul li a.active { color: var(--black); }
nav ul li a:hover::after,
nav ul li a.active::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 24px;
    flex-shrink: 0;
}

.search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--black);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.search-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.search-btn-label {
    line-height: 1;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid var(--black);
    color: var(--black);
    background: transparent;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0%;
    background: var(--black);
    transition: height 0.4s var(--ease-out);
    z-index: -1;
}

.btn:hover { color: var(--white); }
.btn:hover::before { height: 100%; }

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.btn-gold::before { background: var(--gold-dark); }
.btn-gold:hover { border-color: var(--gold-dark); color: var(--white); }

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff !important;
}
.btn-whatsapp::before { background: #128c7e; }
.btn-whatsapp:hover { border-color: #128c7e; color: #ffffff; }

/* ============================
   HERO
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 60px 0;
}

.hero-tagline {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-slogan {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 24px;
}

.hero-sub-slogan {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 40px;
}

/* Staggered reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s var(--ease-out) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   SECTIONS
   ============================ */
.categories-section {
    padding: 120px 0;
    background: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    text-align: center;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto 72px;
}

/* ============================
   CATEGORY CARDS (Homepage)
   ============================ */
.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.category-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--off-white);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.category-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}

.card-content p {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.category-card:hover .card-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ============================
   PRODUCT GRID (List Pages)
   ============================ */
.grid-4,
#product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px 28px;
}

/* Products rendered by JS: <a class="grid-item product-card"><img><h3><p></a> */
.product-card {
    display: block;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    transition: all 0.4s var(--ease-out);
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-bottom: 20px;
    mix-blend-mode: multiply;
    transition: transform 0.6s var(--ease-out);
}

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

.product-card h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.product-card p {
    font-size: 12px;
    color: var(--gray-500);
    font-style: italic;
    font-family: var(--font-display);
}

/* ============================
   PAGE HEADERS
   ============================ */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--white);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
}

.page-header p,
.page-desc {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 300;
    font-family: var(--font-display);
    font-style: italic;
}

/* Sub-category filters */
.sub-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 24px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.sub-cat-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    padding-bottom: 8px;
    position: relative;
    transition: color 0.3s ease;
}

.sub-cat-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.sub-cat-link:hover,
.sub-cat-link.active { color: var(--black); }
.sub-cat-link:hover::after,
.sub-cat-link.active::after { width: 100%; }

/* ============================
   PRODUCT DETAIL (Split Layout)
   ============================ */
.pd-section {
    padding-top: var(--header-h);
}

.pd-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--header-h));
}

.pd-left { background: var(--off-white); }

.pd-image,
.pd-image-sticky {
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.pd-image img,
.pd-image-sticky img,
#main-product-img {
    max-height: 75%;
    max-width: 90%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.pd-info-scroll {
    padding: 80px 60px 80px 80px;
}

.pd-category,
.pd-category-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.pd-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

.pd-sku {
    font-size: 13px;
    color: var(--gray-500);
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.pd-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 300;
    margin-bottom: 48px;
}

.specs-list {
    border-top: 1px solid var(--border);
    margin-bottom: 48px;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.specs-list li span:first-child {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.specs-list li span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.gallery-scroller {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 36px;
}

.gallery-scroller img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid var(--border);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.gallery-scroller img:hover,
.gallery-scroller img.active {
    opacity: 1;
    border-color: var(--gold);
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-hero {
    height: 35vh;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--header-h);
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.about-hero h1 {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    color: var(--white);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-content p {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.9;
    color: var(--gray-700);
    font-weight: 400;
    margin-bottom: 32px;
}

.dropcap {
    float: left;
    font-size: 64px;
    line-height: 50px;
    padding: 8px 12px 0 0;
    font-family: var(--font-display);
    color: var(--gold);
    font-weight: 600;
}

/* ============================
   CONTACT
   ============================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ============================
   FOOTER (White / Clean)
   ============================ */
footer {
    background: var(--white);
    color: var(--gray-700);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
}

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

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 320px;
}

.footer-nav h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: var(--black);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gray-500);
    text-transform: uppercase;
}

/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu-btn { display: none; }

.mobile-menu-overlay {
    display: none;
}

/* ============================
   SEARCH OVERLAY
   ============================ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 24px 48px;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.search-overlay.active { opacity: 1; pointer-events: all; }

.search-panel {
    width: min(840px, 100%);
}

.search-panel-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gray-500);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.search-close {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 36px;
    background: none;
    border: none;
    color: var(--black);
}

.search-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--black);
    font-family: var(--font-display);
    font-size: 32px;
    padding: 12px 0;
    background: transparent;
    outline: none;
    color: var(--black);
}

.search-results {
    margin-top: 28px;
    max-height: min(52vh, 520px);
    overflow-y: auto;
    padding-right: 6px;
}

.search-result-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.search-result-item:hover {
    transform: translateX(4px);
}

.search-result-image {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 18px;
    background: var(--off-white);
}

.search-result-info {
    min-width: 0;
}

.search-result-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--black);
}

.search-result-desc {
    margin-top: 6px;
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.6;
}

.search-result-category {
    margin-top: 8px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.search-no-results {
    padding: 24px 0;
    color: var(--gray-500);
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    animation: none; /* Stop pulsing on hover */
}

.whatsapp-float svg { 
    color: white; 
    width: 32px;
    height: 32px;
}

/* ============================
   CATALOG
   ============================ */
.catalog-section { padding: 40px 0 120px; }

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
    animation: fadeIn 0.8s var(--ease-out) forwards;
}

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

/* ============================
   RESPONSIVE - TABLET
   ============================ */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }

    .asymmetric-grid { grid-template-columns: 1fr; gap: 24px; }

    .pd-split { grid-template-columns: 1fr; }
    .pd-image, .pd-image-sticky {
        position: relative;
        top: auto;
        height: 50vh;
        min-height: 300px;
    }
    .pd-info-scroll { padding: 48px 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .about-content { padding: 60px 24px; }
    .about-content p { font-size: 17px; }
}

/* ============================
   RESPONSIVE - MOBILE
   ============================ */
@media (max-width: 768px) {
    :root { --header-h: 64px; }

    header .container nav { display: none; }

    .header-actions {
        margin-left: auto;
        gap: 10px;
    }

    .search-btn {
        min-height: 38px;
        padding: 0 12px;
    }

    .search-btn-label {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 28px;
        height: 28px;
        border: none;
        background: transparent;
        z-index: 2001;
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 2px;
        background: var(--black);
        transition: all 0.3s ease;
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 2000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
    .mobile-menu-overlay ul { text-align: center; }
    .mobile-menu-overlay ul li { margin-bottom: 20px; }
    .mobile-menu-overlay ul li a {
        font-family: var(--font-display);
        font-size: 22px;
        color: var(--black);
        letter-spacing: 1px;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 24px;
        background: none;
        border: none;
        font-size: 32px;
        color: var(--black);
    }

    .search-overlay {
        padding: 96px 20px 32px;
    }

    .search-close {
        top: 20px;
        right: 20px;
    }

    .search-input {
        font-size: 24px;
    }

    .search-result-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 16px 0;
    }

    .search-result-image {
        width: 72px;
        height: 72px;
        border-radius: 14px;
    }

    .search-result-title {
        font-size: 20px;
    }

    .search-result-desc {
        font-size: 13px;
    }

    .hero { min-height: 85svh; justify-content: center; }
    .hero-content { 
        padding: 0 20px; 
        text-align: center; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }
    .hero-slogan { font-size: clamp(32px, 8vw, 40px); }
    .hero-sub-slogan { font-size: 14px; margin-bottom: 24px; text-align: center; }
    
    .hero::after {
        background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.9) 100%);
    }

    .hero-content > div.reveal-up {
        flex-direction: column;
        width: 100%;
        gap: 12px !important;
        align-items: center;
    }
    
    .hero-content > div.reveal-up .btn {
        width: 100%;
        max-width: 320px;
    }

    .page-header { padding: 120px 0 48px; }
    .page-header h1 { font-size: 28px; }

    .about-hero { height: 30vh; margin-top: var(--header-h); }
    .about-hero h1 { font-size: 32px; }

    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .sub-categories { gap: 16px; }
    .sub-cat-link { font-size: 11px; }

    #product-grid, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-card { padding: 12px; }
    .product-card h3 { font-size: 12px; }
    .product-card p { font-size: 10px; }

    .logo-area img { height: 44px; }
}
