/* ===================================================================
   Khushbu Handicrafts - Main Stylesheet
   Design inspired by orangetree.in (Poppins font, minimalist, white space,
   full-bleed hero, mega-menu nav, premium product grids)
   Palette adapted for a leather furniture brand:
     - Body text:  #1A1A1A  (charcoal)
     - Primary:    #3D2817  (deep leather brown)
     - Accent:     #B8804D  (saddle tan)
     - Highlight:  #C9A961  (antique brass gold)
     - Background: #FFFFFF
     - Soft bg:    #F5EFE6  (cream leather)
   =================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #1A1A1A;
    background: #FAF8F4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: #B8804D; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .6em;
    font-weight: 500;
    line-height: 1.25;
    color: #1A1A1A;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 600; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); letter-spacing: -.005em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .72rem;
    font-weight: 500;
    color: #B8804D;
    margin-bottom: .8em;
}

/* ---------- Layout helpers ---------- */
.container {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 1600px) {
    .container { max-width: 1600px; }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; max-width: 100%; }
}
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col { flex: 1; padding: 0 12px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-soft { color: #6b6b6b; }
.bg-cream { background: #F5EFE6; }
.bg-dark { background: #1A1A1A; color: #fff; }
.bg-dark a { color: #fff; }
.bg-tan { background: #B8804D; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all .25s ease;
    cursor: pointer;
}
.btn-primary {
    background: #1A1A1A;
    color: #fff;
    border-color: #1A1A1A;
}
.btn-primary:hover {
    background: #3D2817;
    color: #fff;
    border-color: #3D2817;
}
.btn-outline {
    background: transparent;
    color: #1A1A1A;
    border-color: #1A1A1A;
}
.btn-outline:hover {
    background: #1A1A1A;
    color: #fff;
}
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.btn-ghost-light:hover {
    background: #fff;
    color: #1A1A1A;
    border-color: #fff;
}
.btn-tan {
    background: #B8804D;
    color: #fff;
    border-color: #B8804D;
}
.btn-tan:hover {
    background: #3D2817;
    color: #fff;
    border-color: #3D2817;
}
.btn-lg { padding: 16px 40px; font-size: .9rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ===================================================================
   ANNOUNCEMENT BAR (top)
   =================================================================== */
.announcement {
    background: #3D2817;
    color: #fff;
    font-size: .76rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-align: center;
    padding: 9px 16px;
    overflow: hidden;
    position: relative;
}
.announcement-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
.announcement-track span {
    display: inline-block;
    padding: 0 32px;
}
.announcement-track span::after {
    content: "\2022";
    margin-left: 32px;
    opacity: .6;
}
.announcement-track span:last-child::after { display: none; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #EAE2D4;
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.06); }

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: .75rem;
    border-bottom: 1px solid #f3f0eb;
}
.header-top a { color: #6b6b6b; }
.header-top a:hover { color: #B8804D; }
.header-top .top-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.header-top .top-links a { display: inline-flex; align-items: center; gap: 6px; }
.header-top .contact-info { display: flex; gap: 24px; }
.header-top .contact-info a { display: inline-flex; align-items: center; gap: 6px; }

.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 0;
    gap: 24px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-right { justify-content: flex-end; }

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1A1A1A;
    transition: all .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #e2ddd4;
    border-radius: 999px;
    overflow: hidden;
    background: #F6F1E9;
    flex: 1;
    max-width: 360px;
}
.search-box input {
    border: 0;
    background: transparent;
    padding: 9px 16px;
    font-size: .85rem;
    flex: 1;
    outline: none;
    font-family: inherit;
}
.search-box button {
    border: 0;
    background: transparent;
    padding: 9px 14px;
    color: #6b6b6b;
    font-size: .9rem;
}

.logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.logo .brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #1A1A1A;
    text-transform: uppercase;
}
.logo .brand .accent { color: #B8804D; }
.logo .tag {
    font-size: .58rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-top: 2px;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1A1A1A;
    font-size: .82rem;
    font-weight: 500;
}
.header-icon svg { width: 20px; height: 20px; }

/* ===================================================================
   PRIMARY NAVIGATION with MEGA MENU DROPDOWN
   =================================================================== */
.primary-nav {
    background: #1A1A1A;
    color: #fff;
    position: relative;
}
.primary-nav .nav-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
}
.primary-nav .nav-item {
    position: relative;
}
.primary-nav .nav-link {
    display: inline-block;
    padding: 16px 28px;
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all .25s ease;
}
.primary-nav .nav-link:hover,
.primary-nav .nav-item:hover > .nav-link,
.primary-nav .nav-item.active > .nav-link {
    color: #C9A961;
    border-bottom-color: #C9A961;
}
.primary-nav .nav-link.has-dropdown::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 8px;
    opacity: .7;
}

/* Mega menu dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    color: #1A1A1A;
    width: 760px;
    max-width: calc(100vw - 32px);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
    border-top: 3px solid #C9A961;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: 200;
}
.nav-item:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 16px;
}
.mega-menu a.cat-tile {
    display: block;
    text-align: center;
    padding: 8px 6px;
    border: 1px solid #eee;
    transition: all .2s ease;
    background: #F6F1E9;
}
.mega-menu a.cat-tile:hover {
    background: #fff;
    border-color: #C9A961;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.mega-menu a.cat-tile .cat-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 6px;
}
.mega-menu a.cat-tile .cat-name {
    font-size: .72rem;
    font-weight: 500;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: block;
    line-height: 1.3;
}
.mega-menu .mega-cta {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* ===================================================================
   HERO
   =================================================================== */
/* ---------- Hero slider (modern multi-slide with crossfade + Ken Burns) ---------- */
.hero {
    position: relative;
    height: clamp(520px, 80vh, 760px);
    background: #1A1A1A;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero .hero-bg .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease, transform 6s ease;
}
.hero .hero-bg .hero-slide.is-active {
    opacity: .85;
    transform: scale(1);
}
.hero .hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(20,12,8,.88) 0%, rgba(20,12,8,.65) 40%, rgba(20,12,8,.25) 80%, rgba(20,12,8,0) 100%);
}
.hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero .hero-content {
    max-width: 720px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(20,12,8,.55) 0%, rgba(20,12,8,.25) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 3px solid #C9A961;
    border-radius: 2px;
}
.hero h1 {
    color: #fff;
    max-width: 20ch;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin-bottom: .6em;
}
.hero h1 .highlight {
    color: #C9A961;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}
.hero p {
    font-size: 1.02rem;
    max-width: 560px;
    margin-bottom: 2em;
    color: rgba(255,255,255,.95);
    line-height: 1.7;
}
.hero .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero .eyebrow {
    color: #C9A961;
    margin-bottom: 1.2em;
    position: relative;
    padding-left: 28px;
}
.hero .eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #C9A961;
}
@media (max-width: 768px) {
    .hero .hero-content { padding: 24px; background: rgba(20,12,8,.6); }
}

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all .25s ease;
    cursor: pointer;
}
.hero-arrow:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-50%) scale(1.08);
}
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ---------- Hero slider dots ---------- */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.hero-dots button {
    width: 36px;
    height: 3px;
    background: rgba(255,255,255,.4);
    border: 0;
    padding: 0;
    transition: all .25s ease;
    cursor: pointer;
}
.hero-dots button.is-active {
    background: #C9A961;
    width: 56px;
}

/* ===================================================================
   FEATURE / SERVICE STRIP
   =================================================================== */
.feature-strip {
    background: #F5EFE6;
    padding: 32px 0;
    border-bottom: 1px solid #E6DDCB;
}
.feature-strip .row {
    align-items: center;
    justify-content: center;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    text-align: left;
}
.feature-item .ico {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8804D;
}
.feature-item h4 {
    margin: 0 0 2px;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .03em;
}
.feature-item p { margin: 0; font-size: .78rem; color: #6b6b6b; }

/* ===================================================================
   SECTION HEADERS
   =================================================================== */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-head .eyebrow { color: #B8804D; }
.section-head h2 { margin-bottom: .4em; }
.section-head p { color: #6b6b6b; font-size: 1.02rem; }

/* ===================================================================
   CATEGORY GRID (home + category pages)
   =================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cat-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #F0E9DC;
    display: block;
}
.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.cat-card .overlay h3 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0;
}
.cat-card .overlay .sub {
    display: block;
    color: rgba(255,255,255,.8);
    font-size: .8rem;
    margin-top: 4px;
}
.cat-card .view-link {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #C9A961;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(60px);
    opacity: 0;
    transition: all .35s ease;
}
.cat-card:hover .view-link {
    transform: translateX(0);
    opacity: 1;
}

/* ===================================================================
   PRODUCT GRID
   =================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}
.product-card {
    background: #fff;
    border: 1px solid #E8E0D0;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: #C9A961;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.product-card .pc-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #F6F1E9;
}
.product-card .pc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .pc-media img { transform: scale(1.06); }
.product-card .pc-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #B8804D;
    color: #fff;
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
}
.product-card .pc-enquire {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,26,26,.92);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    transform: translateY(100%);
    transition: transform .3s ease;
}
.product-card:hover .pc-enquire { transform: translateY(0); }
.product-card .pc-body {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card .pc-cat {
    font-size: .68rem;
    color: #B8804D;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 6px;
}
.product-card .pc-name {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 6px;
    color: #1A1A1A;
    line-height: 1.35;
}
.product-card .pc-desc {
    font-size: .82rem;
    color: #6b6b6b;
    margin: 0 0 12px;
    flex: 1;
}
.product-card .pc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E8E0D0;
    padding-top: 12px;
    font-size: .78rem;
}
.product-card .pc-price {
    font-weight: 600;
    color: #1A1A1A;
}
.product-card .pc-moq { color: #6b6b6b; font-size: .75rem; }

/* ===================================================================
   PRODUCT DETAILS PAGE
   =================================================================== */
.breadcrumb {
    padding: 18px 0;
    background: #F6F1E9;
    border-bottom: 1px solid #E8E0D0;
    font-size: .8rem;
    color: #6b6b6b;
}
.breadcrumb a { color: #6b6b6b; }
.breadcrumb a:hover { color: #B8804D; }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

.product-detail { padding: 56px 0; }
.pd-wrap {
    display: grid;
    grid-template-columns: 1.15fr minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
.pd-gallery {
    position: sticky;
    top: 120px;
    align-self: start;
}
.pd-main-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #F6F1E9;
    overflow: hidden;
    margin-bottom: 16px;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 12px;
}
.pd-thumb {
    aspect-ratio: 1/1;
    background: #F6F1E9;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s ease;
}
.pd-thumb.is-active { border-color: #C9A961; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-info .pd-cat {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #B8804D;
    margin-bottom: 8px;
}
.pd-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.pd-info .pd-sku {
    font-size: .82rem;
    color: #6b6b6b;
    margin-bottom: 24px;
}
.pd-info .pd-short {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E8E0D0;
}
.pd-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    margin: 24px 0 28px;
}
.pd-specs .spec { border-left: 2px solid #C9A961; padding-left: 14px; }
.pd-specs .spec dt {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #6b6b6b;
    margin-bottom: 4px;
}
.pd-specs .spec dd { margin: 0; font-weight: 500; }
.pd-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.pd-cta {
    background: #1A1A1A;
    color: #fff;
    padding: 16px 32px;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .12em;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.pd-cta:hover { background: #3D2817; color: #fff; }
.pd-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 16px 28px;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .12em;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pd-whatsapp:hover { background: #1da851; color: #fff; }
.pd-desc { margin-top: 40px; }
.pd-desc h3 { margin-top: 28px; margin-bottom: 14px; }
.pd-desc p { color: #444; }

/* ===================================================================
   FILTER SIDEBAR (product category page)
   =================================================================== */
.shop-layout { padding: 48px 0; }
.shop-wrap {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.shop-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}
.shop-sidebar .widget {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8E0D0;
}
.shop-sidebar .widget:last-child { border-bottom: 0; }
.shop-sidebar h3 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 16px;
    color: #1A1A1A;
}
.shop-sidebar .cat-list li {
    border-bottom: 1px dashed #E6DDCB;
}
.shop-sidebar .cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: .9rem;
    color: #444;
}
.shop-sidebar .cat-list li a:hover,
.shop-sidebar .cat-list li.active > a {
    color: #B8804D;
}
.shop-sidebar .cat-list .count {
    font-size: .75rem;
    color: #aaa;
    background: #F0E9DC;
    padding: 1px 8px;
    border-radius: 999px;
}
.shop-sidebar .cat-list .sub-list {
    margin-left: 14px;
    display: none;
}
.shop-sidebar .cat-list li.active > .sub-list { display: block; }

.shop-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E8E0D0;
    flex-wrap: wrap;
    gap: 12px;
}
.shop-top .result-count { font-size: .85rem; color: #6b6b6b; }
.shop-top .sort-form {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: #6b6b6b;
}
.shop-top select {
    border: 1px solid #e2ddd4;
    padding: 8px 12px;
    font-family: inherit;
    font-size: .85rem;
    background: #fff;
    cursor: pointer;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 28px;
}
.shop-grid .product-card .pc-media { aspect-ratio: 4/5; }

/* ---------- Mobile filter dropdown ---------- */
.mobile-filter-btn {
    display: none;
    background: #1A1A1A;
    color: #fff;
    padding: 10px 18px;
    border: 0;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ===================================================================
   PAGINATION
   =================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 56px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #e2ddd4;
    font-size: .85rem;
    color: #1A1A1A;
    transition: all .2s ease;
}
.pagination a:hover,
.pagination span.is-active {
    background: #1A1A1A;
    color: #fff;
    border-color: #1A1A1A;
}
.pagination .is-disabled {
    color: #ccc;
    pointer-events: none;
}

/* ===================================================================
   BRAND STORY / ABOUT
   =================================================================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split.split-60-40 { grid-template-columns: 1.4fr 1fr; }
.split .media {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #F0E9DC;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split.media-left .media { order: -1; }

/* ---------- Stats strip (force single row, no wrap on desktop) ---------- */
.stats-strip {
    background: #1A1A1A;
    color: #fff;
    padding: 56px 0;
}
.stats-strip .container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}
.stats-strip .stat {
    flex: 1 1 0;
    min-width: 160px;
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.stats-strip .stat:last-child {
    border-right: 0;
}
.stats-strip .stat h3 {
    color: #C9A961;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1;
}
.stats-strip .stat p {
    margin: 0;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}
@media (max-width: 768px) {
    .stats-strip .container { flex-wrap: wrap; gap: 32px 16px; }
    .stats-strip .stat { flex: 1 1 40%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 16px; }
    .stats-strip .stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}

/* ---------- Our Journey section (NEW) ---------- */
.our-journey {
    padding: 96px 0;
    background: #fff;
}
.journey-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.journey-media { position: relative; }
.journey-media img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.journey-badge {
    position: absolute;
    bottom: -24px;
    right: -16px;
    background: #1A1A1A;
    color: #fff;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0,0,0,.2);
    border: 2px solid #C9A961;
}
.journey-badge-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #C9A961;
    line-height: 1;
}
.journey-badge-text {
    display: block;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 6px;
    color: rgba(255,255,255,.8);
}
.journey-content h2 { margin-bottom: 24px; }
.journey-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 18px;
}
.journey-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid #E8E0D0;
    border-bottom: 1px solid #E8E0D0;
}
.journey-stats > div { text-align: left; }
.journey-stats strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #B8804D;
    line-height: 1;
}
.journey-stats span {
    display: block;
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-top: 4px;
}
@media (max-width: 880px) {
    .journey-row { grid-template-columns: 1fr; gap: 48px; }
    .journey-badge { right: 16px; }
    .journey-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ---------- Category Carousel (NEW) ---------- */
.cat-carousel {
    position: relative;
    padding: 0 56px;
}
.cat-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 0 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cat-carousel-track::-webkit-scrollbar { display: none; }
.cat-carousel .cat-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
}
.cat-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #1A1A1A;
    color: #fff;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.cat-arrow:hover {
    background: #B8804D;
    transform: translateY(-50%) scale(1.08);
}
.cat-arrow-prev { left: 0; }
.cat-arrow-next { right: 0; }
.cat-arrow:disabled { opacity: .35; cursor: not-allowed; }
@media (max-width: 1100px) { .cat-carousel .cat-card { flex-basis: calc(33.33% - 14px); } }
@media (max-width: 880px)  { .cat-carousel { padding: 0 48px; } .cat-carousel .cat-card { flex-basis: calc(50% - 10px); } }
@media (max-width: 560px) { .cat-carousel .cat-card { flex-basis: calc(80% - 10px); } }

/* ===================================================================
   VALUES / CRAFTSMANSHIP SECTION
   =================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.value-card {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid #E8E0D0;
    background: #fff;
    transition: all .3s ease;
}
.value-card:hover {
    border-color: #C9A961;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.value-card .v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #F5EFE6;
    color: #B8804D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: #6b6b6b; font-size: .92rem; margin: 0; }

/* ===================================================================
   B2B TRADE SECTION
   =================================================================== */
.trade-section {
    background: #1A1A1A;
    color: #fff;
    padding: 96px 0;
}
.trade-section h2 { color: #fff; }
.trade-section .eyebrow { color: #C9A961; }
.trade-section p { color: rgba(255,255,255,.85); }
.trade-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.trade-feature {
    border: 1px solid rgba(255,255,255,.12);
    padding: 32px 24px;
    transition: all .3s ease;
}
.trade-feature:hover {
    border-color: #C9A961;
    background: rgba(201,169,97,.05);
}
.trade-feature .tf-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: #C9A961;
    margin-bottom: 12px;
}
.trade-feature h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.trade-feature p {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    margin: 0;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonial-strip {
    background: #F5EFE6;
    padding: 80px 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial {
    background: #fff;
    padding: 36px;
    border-left: 3px solid #C9A961;
}
.testimonial .stars {
    color: #C9A961;
    letter-spacing: 4px;
    margin-bottom: 14px;
}
.testimonial .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    line-height: 1.5;
    color: #1A1A1A;
    margin-bottom: 22px;
    font-style: italic;
}
.testimonial .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial .author .name { font-weight: 600; }
.testimonial .author .role { font-size: .82rem; color: #6b6b6b; }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    padding: 64px 0;
}
.contact-form {
    background: #fff;
    padding: 40px;
    border: 1px solid #E8E0D0;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px;
    color: #1A1A1A;
    font-weight: 500;
}
.form-group label .req { color: #B8804D; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #e2ddd4;
    padding: 12px 14px;
    font-family: inherit;
    font-size: .92rem;
    background: #fff;
    transition: border-color .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A961;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-panel { padding: 0; }
.contact-info-panel .ci-block {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid #E8E0D0;
}
.contact-info-panel .ci-block:first-child { padding-top: 0; }
.contact-info-panel .ci-block:last-child { border-bottom: 0; }
.contact-info-panel .ci-ico {
    width: 44px;
    height: 44px;
    border: 1px solid #C9A961;
    border-radius: 50%;
    color: #B8804D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-panel .ci-block h4 { margin: 0 0 4px; font-size: .98rem; }
.contact-info-panel .ci-block p { margin: 0; color: #6b6b6b; font-size: .92rem; }
.contact-info-panel .ci-block a { color: #1A1A1A; }
.contact-info-panel .ci-block a:hover { color: #B8804D; }

/* Map */
.contact-map { margin-top: 0; }
.contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(0.4) sepia(0.1);
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
    background: linear-gradient(135deg, #3D2817 0%, #2E1D0F 55%, #251708 100%);
    color: #fff;
    padding: 88px 0;
    text-align: center;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 28px; }
.cta-section .eyebrow { color: #C9A961; }
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================================================
   FLASH MESSAGES
   =================================================================== */
.flash {
    padding: 16px 24px;
    margin-bottom: 24px;
    border-left: 4px solid #C9A961;
    background: #F5EFE6;
}
.flash.flash-success { border-color: #2e7d32; background: #e8f5e9; }
.flash.flash-error { border-color: #c62828; background: #ffebee; }

/* ===================================================================
   FOOTER — premium espresso leather
   =================================================================== */
.site-footer {
    background: #211711;
    color: #AFA392;
    font-size: .9rem;
    border-top: 3px solid #C9A961;
}

/* Trust / assurances strip */
.footer-assurances {
    background: rgba(0,0,0,.18);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.fa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.fa-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 18px;
    border-left: 1px solid rgba(255,255,255,.07);
}
.fa-item:first-child { border-left: 0; }
.fa-item svg {
    width: 30px;
    height: 30px;
    color: #C9A961;
    flex-shrink: 0;
}
.fa-item strong {
    display: block;
    color: #fff;
    font-size: .87rem;
    font-weight: 600;
    line-height: 1.3;
}
.fa-item span {
    display: block;
    font-size: .75rem;
    color: #8B7E6C;
    margin-top: 3px;
    letter-spacing: .02em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding: 64px 0 56px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col h4 {
    color: #fff;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    background: #C9A961;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
    color: #AFA392;
    font-size: .88rem;
    display: inline-block;
    transition: color .2s ease, transform .2s ease;
}
.footer-col ul li a:hover { color: #C9A961; transform: translateX(4px); }
.footer-col .brand-block .logo {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}
.footer-col .brand-block .logo .brand {
    color: #ffffff;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1;
    display: block;
}
.footer-col .brand-block .logo .brand .accent {
    color: #C9A961;
}
.footer-col .brand-block .logo .tag {
    color: #8B7E6C;
    font-size: .58rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}
.footer-col .brand-block p { color: #94887A; font-size: .88rem; line-height: 1.7; }
.footer-col .social-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.footer-col .social-row a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #AFA392;
    transition: all .25s ease;
}
.footer-col .social-row a:hover {
    background: #C9A961;
    border-color: #C9A961;
    color: #211711;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 16px;
}
.newsletter-form input {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    border-right: 0;
    color: #fff;
    padding: 13px 16px;
    font-family: inherit;
    font-size: .85rem;
    transition: border-color .2s ease, background .2s ease;
}
.newsletter-form input::placeholder { color: #7E7263; }
.newsletter-form input:focus {
    outline: none;
    border-color: #C9A961;
    background: rgba(255,255,255,.09);
}
.newsletter-form button {
    background: #C9A961;
    color: #211711;
    border: 0;
    padding: 0 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    transition: background .2s ease, color .2s ease;
}
.newsletter-form button:hover { background: #B8804D; color: #fff; }

.footer-contact-list li {
    margin-bottom: 15px;
    padding-left: 24px;
    position: relative;
    color: #AFA392;
    line-height: 1.6;
}
.footer-contact-list li a { color: #AFA392; }
.footer-contact-list li a:hover { color: #C9A961; }
.footer-contact-list li svg {
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    color: #C9A961;
}

/* Footer bottom band */
.footer-bottom-band {
    background: rgba(0,0,0,.28);
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: #8B7E6C;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: #AFA392; }
.footer-bottom a:hover { color: #C9A961; }
.footer-bottom .fb-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-bottom .fb-links span.fb-sep { color: #4a3b2c; }

/* ===================================================================
   FLOATING WHATSAPP BUTTON
   =================================================================== */
.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;
    z-index: 90;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.06); }
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================================================================
   PAGE HEADER (interior pages)
   =================================================================== */
.page-header {
    padding: 56px 0 48px;
    background: #F5EFE6;
    text-align: center;
    border-bottom: 1px solid #E6DDCB;
}
.page-header h1 { margin-bottom: 8px; }
.page-header p { color: #6b6b6b; max-width: 720px; margin: 0 auto; }
.page-header .breadcrumb {
    background: transparent;
    border: 0;
    padding: 0;
    margin-top: 16px;
    justify-content: center;
    display: flex;
}

/* ===================================================================
   ADMIN PANEL (basic)
   =================================================================== */
.admin-bar {
    background: #2a1a0a;
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: .8rem;
}
.admin-bar a { color: #C9A961; }

.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; }
.admin-table th, .admin-table td { padding: 12px 14px; border-bottom: 1px solid #eee; text-align: left; font-size: .9rem; }
.admin-table th { background: #F0E9DC; font-weight: 600; text-transform: uppercase; font-size: .75rem; letter-spacing: .08em; }
.admin-table tr:hover { background: #F6F1E9; }

.admin-login {
    max-width: 380px;
    margin: 80px auto;
    background: #fff;
    padding: 40px;
    border: 1px solid #E8E0D0;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .mega-menu-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .fa-grid { grid-template-columns: 1fr 1fr; }
    .fa-item { border-left: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
    .fa-item:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 880px) {
    .header-top { display: none; }
    .header-main { grid-template-columns: auto 1fr auto; }
    .header-left { gap: 12px; }
    .header-right .header-icon span { display: none; }
    .search-box { display: none; }
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 86%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        color: #1A1A1A;
        z-index: 999;
        transition: right .35s ease;
        overflow-y: auto;
        padding: 80px 24px 24px;
        box-shadow: -10px 0 40px rgba(0,0,0,.2);
    }
    .primary-nav.is-open { right: 0; }
    .primary-nav .nav-list { flex-direction: column; align-items: stretch; }
    .primary-nav .nav-link {
        color: #1A1A1A;
        padding: 14px 0;
        border-bottom: 1px solid #E8E0D0;
    }
    .mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 0;
        padding: 8px 0 16px;
        width: 100%;
        display: none;
    }
    .nav-item.has-open-mega > .mega-menu { display: block; }
    .mega-menu-grid { grid-template-columns: 1fr 1fr; }

    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .values-grid { grid-template-columns: 1fr; }
    .trade-features { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .split, .split.split-60-40 { grid-template-columns: 1fr; gap: 32px; }
    .split.media-left .media { order: 0; }
    .product-detail { padding: 40px 0; }
    .pd-wrap { grid-template-columns: 1fr; gap: 32px; }
    .pd-gallery { position: static; }
    .shop-wrap { grid-template-columns: 1fr; gap: 32px; }
    .shop-sidebar { position: static; display: none; }
    .shop-sidebar.is-open { display: block; }
    .mobile-filter-btn { display: inline-block; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .section { padding: 56px 0; }
    .section-lg { padding: 64px 0; }
    .hero { height: 70vh; min-height: 480px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
    .container { padding: 0 16px; }
    .category-grid,
    .product-grid { grid-template-columns: 1fr; }
    .mega-menu-grid { grid-template-columns: 1fr; }
    .hero .hero-actions { flex-direction: column; align-items: stretch; }
    .hero .btn { text-align: center; }
    .hero-arrow { width: 40px; height: 40px; }
    .logo .brand { font-size: 1.6rem; }
    .fa-grid { grid-template-columns: 1fr; }
    .fa-item:nth-last-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }
    .fa-item:last-child { border-bottom: 0; }
    .footer-bottom .fb-links { justify-content: center; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 40px; }
.pt-0 { padding-top: 0; } .pb-0 { padding-bottom: 0; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.img-rounded { border-radius: 8px; overflow: hidden; }
.divider { height: 1px; background: #E8E0D0; border: 0; margin: 32px 0; }
