/* ====================================================================
   Big Baby Balloon - Site stylesheet
   Theme: Gold + Cream + Charcoal, Cormorant Garamond + Inter
   ==================================================================== */

:root {
    --gold:        #C9A227;
    --gold-2:      #D4AF37;
    --gold-soft:   #E7CB6B;
    --gold-deep:   #9C7C1A;
    --cream:       #FBF6EC;
    --cream-2:     #F4ECDA;
    --ink:         #1F1B16;
    --ink-soft:    #4A4338;
    --line:        #E8DFC8;
    --line-2:      #EAE2D0;
    --rose:        #F4D5D2;
    --shadow-sm:   0 2px 8px rgba(31, 27, 22, .06);
    --shadow-md:   0 8px 24px rgba(31, 27, 22, .08);
    --shadow-lg:   0 24px 48px rgba(31, 27, 22, .12);
    --radius-sm:   8px;
    --radius:      14px;
    --radius-lg:   22px;
    --container:   1200px;
    --header-h:    78px;
    --logo-h:      140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 0 0 .6em;
    color: var(--ink);
    line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--ink-soft); }

/* =====================  Brand (image-only logo)  ===================== */
.brand-logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 5;
}
.brand-logo img {
    height: 140px;
    width: 140px;
    max-width: 140px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .2s;
    background: #fff;
    /* Match the menu bottom border (1px solid #E8DFC8) so the logo sits as part of the header chrome */
    border: 1px solid var(--line);
    /* Float the logo downward so it visually spills out of the header
       onto the hero without changing the header's own height. */
    margin-bottom: -70px;
}
.brand-logo:hover img { transform: scale(1.03); }

/* =====================  Top strip  ===================== */
.top-strip {
    background: var(--ink);
    color: #f5ecd6;
    font-size: .85rem;
}
.top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
    gap: 16px;
}
.top-info, .top-socials { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; align-items: center; }
.top-info a { color: #f5ecd6; }
.top-info i { color: var(--gold-2); margin-right: 6px; }
.top-socials a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,.06);
    transition: background .2s, transform .2s;
}
.top-socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

/* =====================  Header / Nav  ===================== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header-h);
    gap: 20px;
    position: relative;
}
/* Desktop visual order: logo center, nav-left left, nav-right right */
.brand-logo { order: 2; justify-self: center; }
.nav-left  { order: 1; justify-self: end;   padding-right: 14px; }
.nav-right { order: 3; justify-self: start; padding-left: 14px; }
.hamburger { order: 4; }
.main-nav {
    display: flex; align-items: center; gap: 22px;
}
.main-nav a {
    position: relative;
    color: var(--ink);
    font-weight: 500;
    font-size: .96rem;
    padding: 6px 0;
}
.main-nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: center;
    transition: transform .25s;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

/* Nav dropdown */
.nav-dd { position: relative; }
.nav-dd > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-dd > a .nav-caret { font-size: .65rem; color: var(--gold-deep); transition: transform .2s; }
.nav-dd:hover > a .nav-caret, .nav-dd:focus-within > a .nav-caret { transform: rotate(180deg); }
.nav-dd-menu {
    position: absolute; top: calc(100% + 10px); left: -14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-width: 240px;
    padding: 10px;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s, transform .18s, visibility .18s;
    z-index: 60;
    display: flex; flex-direction: column; gap: 2px;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu a {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .9rem;
    color: var(--ink-soft);
    border-bottom: 0 !important;
    display: flex; align-items: center; gap: 10px;
}
.nav-dd-menu a i { color: var(--gold-deep); width: 16px; text-align: center; }
.nav-dd-menu a:hover { background: var(--cream); color: var(--gold-deep); }
.nav-dd-menu a::after { display: none !important; }

.nav-cta {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff !important;
    padding: 9px 16px !important;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .35);
}
.nav-cta:hover { transform: translateY(-1px); color: #fff !important; }
.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    width: 44px; height: 44px;
    background: transparent; border: 0;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================  Buttons  ===================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s, color .2s;
    text-decoration: none;
    line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
    color: #fff;
    box-shadow: 0 8px 22px rgba(201, 162, 39, .35);
}
.btn-gold:hover { color: #fff; box-shadow: 0 12px 28px rgba(201, 162, 39, .45); }
.btn-outline {
    border-color: var(--ink); color: var(--ink);
    background: #fff;
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost {
    background: rgba(255,255,255,.85);
    border-color: var(--line);
    color: var(--ink);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .35);
}
.btn-whatsapp:hover { color: #fff; }

/* =====================  Hero  ===================== */
.hero {
    position: relative;
    /* Animated GIF background — metallic copper overlay */
    background:
      linear-gradient(135deg, rgba(184, 115, 51, .75), rgba(120, 60, 30, .70)),
      url('/assets/hero.gif') center/cover no-repeat;
    background-color: #8a4a2b;
    color: #fff;
    padding: 88px 0 70px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero .container { position: relative; z-index: 2; }
/* Hide the old decorative radial gradients since we now have a real background */
.hero::before { content: none; }
.hero-inner { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-title { color: #fff; }
.hero-sub { color: rgba(255, 255, 255, .92); }
/* Original elegant eyebrow chip — gold-tint on light sections */
.eyebrow {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(212, 175, 55, .16);
    color: var(--gold-deep);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600; font-size: .78rem;
    letter-spacing: .14em; text-transform: uppercase;
    margin: 0 auto 22px;
}
/* Eyebrow sits on the dark hero — make it readable */
.hero .eyebrow {
    background: rgba(212, 175, 55, .25);
    color: #f6e7c2;
    border: 1px solid rgba(212, 175, 55, .45);
}
.hero-title { font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.05; color: #fff; }
.hero-title em { font-style: italic; color: var(--gold-2); }
.hero-sub { font-size: 1.1rem; color: rgba(255, 255, 255, .92); max-width: 640px; margin: 0 auto 32px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 220, 180, .35);
    border-radius: var(--radius-lg);
    padding: 26px 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .15);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #fff5d6;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}
.hero-stats span {
    font-size: .82rem;
    color: rgba(255, 240, 220, .88);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* =====================  Section  ===================== */
.section { padding: 80px 0; }
.section.soft { background: var(--cream); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head p { color: var(--ink-soft); }
.section-foot { text-align: center; margin-top: 44px; }

/* =====================  Why  ===================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.why-card i {
    font-size: 1.6rem;
    width: 60px; height: 60px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
    color: #fff;
    margin-bottom: 16px;
}
.why-card h3 { margin-bottom: 8px; }

/* =====================  Category cards  ===================== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-grid-page { grid-template-columns: repeat(3, 1fr); }
.cat-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform .25s, box-shadow .25s;
    color: var(--ink);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream-2), var(--rose)) center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem;
    color: var(--gold-deep);
}
.cat-card h3 { font-size: 1.2rem; padding: 16px 18px 4px; margin: 0; }
.cat-card .cat-card-body h3 { padding: 0; margin-bottom: 6px; }
.cat-card-body { padding: 16px 18px 18px; }
.cat-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0 18px 18px;
    font-size: .85rem; color: var(--gold-deep); font-weight: 600;
}
.cat-link i { transition: transform .2s; }
.cat-card:hover .cat-link i { transform: translateX(4px); }

/* =====================  Product card  ===================== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column;
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.p-img {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--cream);
    overflow: hidden;
    display: block;
}
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.p-card:hover .p-img img { transform: scale(1.05); }
.p-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--gold);
}
.p-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--ink); color: var(--cream);
    font-size: .72rem; font-weight: 700; letter-spacing: .08em;
    padding: 5px 10px; border-radius: 999px;
}
.p-badge-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #fff; }
.p-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.p-cat { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.p-title { font-size: 1.15rem; margin: 0; }
.p-title a { color: var(--ink); }
.p-title a:hover { color: var(--gold-deep); }
.p-desc { font-size: .86rem; color: var(--ink-soft); margin: 0; min-height: 2.7em; }
.p-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 6px; }
.p-now { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--ink); font-weight: 700; }
.p-was { text-decoration: line-through; color: #aaa; font-size: .9rem; }
.p-off  { background: rgba(37,211,102,.16); color: #1c7c41; font-size: .72rem; padding: 3px 8px; border-radius: 999px; font-weight: 700; }

/* =====================  CTA strip  ===================== */
.cta-strip {
    background:
      linear-gradient(135deg, rgba(31,27,22,.92), rgba(31,27,22,.92)),
      radial-gradient(closest-side, var(--gold-2), transparent) center/cover;
    color: #fff;
    padding: 60px 0;
}
.cta-strip-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin: 0 0 6px; }
.cta-strip p  { color: rgba(255,255,255,.8); margin: 0; }

/* =====================  FAQ  ===================== */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
    border-bottom: 1px solid var(--line);
    padding: 18px 4px;
}
.faq summary {
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "\f078"; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--gold-deep);
    transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p { margin-top: 10px; color: var(--ink-soft); }

/* =====================  Page head  ===================== */
.page-head {
    background: var(--cream);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: 6px; }
.page-head p  { color: var(--ink-soft); margin: 0; }

/* =====================  Shop layout  ===================== */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; }
.shop-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: calc(var(--header-h) + 18px); align-self: start; }
.side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
}
.side-card h4 { font-size: 1.05rem; margin-bottom: 14px; }
.side-cat { list-style: none; padding: 0; margin: 0; }
.side-cat li a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: .92rem;
    border-bottom: 1px dashed var(--line);
}
.side-cat li:last-child a { border-bottom: 0; }
.side-cat li a:hover, .side-cat li a.active { color: var(--gold-deep); font-weight: 600; }

.shop-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; margin-bottom: 22px; flex-wrap: wrap;
}
.search-bar { position: relative; flex: 1; max-width: 360px; }
.search-bar i { position: absolute; top: 50%; left: 14px; transform: translateY(-50%); color: var(--ink-soft); }
.search-bar input {
    width: 100%; padding: 11px 36px 11px 38px;
    border: 1px solid var(--line); border-radius: 999px;
    background: #fff;
    font: inherit;
    transition: border-color .2s, box-shadow .2s;
}
.search-bar input:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.15); }
.clear-search { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }
.result-count { font-size: .9rem; color: var(--ink-soft); }
/* =====================  Pagination (custom view)  ===================== */
.pagination { margin-top: 36px; display: flex; justify-content: center; }
.pg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    font-weight: 600;
    font-size: .92rem;
    line-height: 1;
    transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.pg-btn:hover {
    background: var(--cream);
    border-color: var(--gold);
    color: var(--gold-deep);
    transform: translateY(-1px);
}
.pg-current {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(201, 162, 39, .35);
}
.pg-current:hover { transform: none; color: #fff; }
.pg-disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
}
.pg-dots {
    color: var(--ink-soft);
    padding: 0 4px;
    font-weight: 600;
    letter-spacing: .14em;
}

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-state i { font-size: 3rem; color: var(--gold); margin-bottom: 10px; }

/* =====================  Product detail  ===================== */
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .86rem; color: var(--ink-soft); margin-bottom: 24px; flex-wrap: wrap; }
.crumbs i { font-size: .6rem; color: var(--gold); }
.crumbs a:hover { color: var(--gold-deep); }

.prod-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.prod-gallery { position: sticky; top: calc(var(--header-h) + 18px); }
.prod-main-img {
    aspect-ratio: 1/1;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
}
.prod-main-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-main-img.placeholder i { font-size: 5rem; color: var(--gold); }
.prod-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.prod-thumb {
    width: 76px; height: 76px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s, transform .2s;
}
.prod-thumb.active, .prod-thumb:hover { border-color: var(--gold); transform: scale(1.04); }

.prod-info { padding-top: 8px; }
.prod-cat {
    display: inline-block;
    color: var(--gold-deep);
    font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 8px;
}
.prod-title { margin-bottom: 12px; }
.prod-price { margin-bottom: 22px; display: flex; align-items: baseline; gap: 12px; }
.prod-short { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 24px; line-height: 1.7; }
.prod-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.prod-perks {
    list-style: none; padding: 18px 0 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    border-top: 1px solid var(--line);
}
.prod-perks li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-soft); }
.prod-perks i { color: var(--gold-deep); width: 18px; text-align: center; }

.prod-tabs { margin-top: 60px; border-top: 1px solid var(--line); padding-top: 24px; }
.prod-tab { border-bottom: 1px solid var(--line); }
.prod-tab-head {
    width: 100%;
    background: transparent; border: 0; cursor: pointer;
    text-align: left;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    color: var(--ink);
}
.prod-tab-head i { color: var(--gold-deep); transition: transform .2s; }
.prod-tab-open .prod-tab-head i { transform: rotate(180deg); }
.prod-tab-body { display: none; padding: 4px 4px 22px; color: var(--ink-soft); }
.prod-tab-open .prod-tab-body { display: block; }
.prod-rich { line-height: 1.7; }
.prod-rich p { margin: 0 0 1em; }
.prod-rich br + br { display: none; }   /* collapse multiple <br> left over from cleaning */
.policy-body { line-height: 1.8; }
.policy-body h2, .policy-body h3 { margin-top: 1.4em; }
.policy-body ul { padding-left: 22px; }
.prod-short { white-space: pre-line; line-height: 1.7; }
.prod-short br + br { display: none; }
.prod-list { padding-left: 20px; }
.prod-list li { margin-bottom: 6px; }

.related { margin-top: 70px; }
.related h2 { margin-bottom: 28px; }

/* =====================  About / Contact / Policy  ===================== */
.about-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.about-text h2 { margin: 12px 0 18px; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.val-card {
    padding: 22px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.val-card i { color: var(--gold-deep); font-size: 1.4rem; margin-bottom: 10px; display: inline-block; }
.val-card h4 { margin-bottom: 6px; }
.val-card p { font-size: .92rem; margin: 0; }
.cta-card {
    background: var(--ink); color: var(--cream);
    padding: 28px;
    border-radius: var(--radius-lg);
    position: sticky; top: calc(var(--header-h) + 18px);
}
.cta-card h3 { color: #fff; }
.cta-card p { color: rgba(255,255,255,.8); }
.cta-card .btn-whatsapp { margin-top: 8px; }
.cta-card .btn-outline { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.4); }
.cta-card .btn-outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    color: var(--ink);
    transition: transform .2s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--ink); }
.contact-card i {
    font-size: 1.5rem;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
    color: #fff;
    margin-bottom: 14px;
}
.contact-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.contact-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.policy-wrap { max-width: 880px; margin: 0 auto; }
.policy-body { line-height: 1.8; }
.policy-body h2, .policy-body h3 { margin-top: 1.4em; }
.policy-body ul { padding-left: 22px; }

/* =====================  Blog  ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--cream-2), var(--rose)) center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-deep); font-size: 2.4rem;
}
.blog-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-meta {
    font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold-deep); font-weight: 600;
}
.blog-card h3 { font-size: 1.3rem; margin: 4px 0 6px; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--gold-deep); }
.blog-card p { color: var(--ink-soft); margin: 0; font-size: .92rem; }
.blog-read {
    margin-top: auto; padding-top: 12px;
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold-deep); font-weight: 600; font-size: .9rem;
}
.blog-read i { transition: transform .2s; }
.blog-card:hover .blog-read i { transform: translateX(4px); }

.blog-feature {
    display: grid; grid-template-columns: 2fr 1fr; gap: 24px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
    padding: 18px;
}
.blog-feature-main { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.blog-feature-img {
    aspect-ratio: 4/3;
    background: var(--cream) center/cover no-repeat;
    border-radius: var(--radius);
}
.blog-feature-body { padding: 24px 26px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.blog-feature-body h3 { font-size: 1.7rem; }
.blog-feature-body h3 a { color: var(--ink); }
.blog-feature-side { display: flex; flex-direction: column; gap: 10px; }
.blog-side-card {
    display: grid; grid-template-columns: 88px 1fr; gap: 12px; align-items: center;
    padding: 10px; border: 1px solid var(--line); border-radius: var(--radius);
    color: var(--ink);
    transition: background .15s;
}
.blog-side-card:hover { background: var(--cream); color: var(--ink); }
.blog-side-img {
    width: 88px; height: 64px;
    background: var(--cream) center/cover no-repeat;
    border-radius: 8px;
}
.blog-side-card h4 { font-size: .98rem; margin: 4px 0 0; }

.blog-article { max-width: 820px; margin: 0 auto; }
.blog-head { text-align: center; margin-bottom: 30px; }
.blog-head h1 { margin: 10px 0 14px; }
.blog-lede { font-size: 1.1rem; color: var(--ink-soft); }
.blog-hero-img {
    aspect-ratio: 16/8;
    background: var(--cream) center/cover no-repeat;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}
.blog-body { font-size: 1.04rem; line-height: 1.85; color: var(--ink); }
.blog-body p { margin: 0 0 1.1em; }
.blog-body h2, .blog-body h3 { margin: 1.4em 0 .5em; }
.blog-body img { border-radius: var(--radius); margin: 1em 0; }
.blog-body ul, .blog-body ol { padding-left: 22px; margin: 0 0 1.2em; }
.blog-body blockquote { border-left: 3px solid var(--gold); padding: 4px 18px; margin: 1.2em 0; color: var(--ink-soft); font-style: italic; }
.rich-content { white-space: normal; }

.blog-cta {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--cream), var(--cream-2));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
}
.blog-cta h3 { margin-bottom: 6px; }
.blog-cta p { color: var(--ink-soft); margin-bottom: 18px; }

/* =====================  Services (list)  ===================== */
.services-list { display: flex; flex-direction: column; gap: 14px; }
.service-row {
    display: grid; grid-template-columns: 64px 1fr 40px;
    gap: 18px; align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    color: var(--ink);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-row:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--gold); color: var(--ink); }
.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.service-info h3 { font-size: 1.2rem; margin: 0 0 4px; }
.service-info p { margin: 0 0 4px; font-size: .9rem; color: var(--ink-soft); }
.service-meta { font-size: .78rem; color: var(--gold-deep); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.service-meta i { margin-right: 6px; }
.service-arrow { color: var(--gold-deep); font-size: 1.2rem; }

/* =====================  Footer  ===================== */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,.85);
    padding: 64px 0 0;
    margin-top: 80px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
}
.foot-col h4 {
    color: var(--gold-2);
    font-size: 1.05rem; margin-bottom: 14px;
}
.foot-col p { color: rgba(255,255,255,.7); font-size: .92rem; }
.foot-brand .foot-logo {
    display: inline-block;
    margin-bottom: 14px;
}
.foot-brand .foot-logo img {
    height: 96px;
    width: 96px;
    object-fit: cover;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    transition: transform .2s;
}
.foot-brand .foot-logo:hover img { transform: scale(1.05); }
.foot-links, .foot-contact { list-style: none; padding: 0; margin: 0; }
.foot-links li, .foot-contact li { margin-bottom: 9px; font-size: .92rem; }
.foot-links a { color: rgba(255,255,255,.8); }
.foot-links a:hover { color: var(--gold-2); }
.foot-contact a { color: rgba(255,255,255,.8); }
.foot-contact i { color: var(--gold-2); width: 18px; margin-right: 8px; }
.foot-socials { display: flex; gap: 10px; margin-top: 14px; }
.foot-socials a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.07); border-radius: 50%;
    color: #fff;
    transition: background .2s, transform .2s;
}
.foot-socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.foot-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 48px;
    padding: 18px 0;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    text-align: center;
}

/* =====================  Floating WhatsApp  ===================== */
.float-whatsapp {
    position: fixed; right: 22px; bottom: 22px;
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    font-size: 1.6rem;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(37,211,102,.45);
    z-index: 99;
    animation: pulseWa 2s infinite;
}
@keyframes pulseWa {
    0%, 100% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
    50%      { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* =====================  Responsive  ===================== */
@media (max-width: 980px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .cat-grid, .product-grid, .blog-grid, .cat-grid-page { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .shop-layout, .prod-layout, .about-layout { grid-template-columns: 1fr; }
    .shop-side, .prod-gallery, .cta-card { position: static; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .blog-feature { grid-template-columns: 1fr; }
    .blog-feature-main { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    /* Topbar — keep phone + email on a single line at any mobile width */
    .top-strip-inner .hide-sm { display: none; }
    .top-info {
        gap: 10px;
        font-size: .78rem;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
    }
    .top-info li { display: inline-flex; align-items: center; min-width: 0; }
    .top-info li a {
        display: inline-block;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: bottom;
    }
    .top-info i { margin-right: 4px; flex-shrink: 0; }
    .top-socials { flex-shrink: 0; gap: 6px; }
    .top-socials a { width: 26px; height: 26px; font-size: .85rem; }

    .hamburger { display: inline-flex; justify-self: end; }
    /* On mobile: logo on LEFT, hamburger on RIGHT, no centered logo */
    .header-inner {
        grid-template-columns: auto 1fr;
        gap: 12px;
    }
    .brand-logo { justify-self: start; }
    .hamburger { justify-self: end; }
    .nav-left, .nav-right { display: none; }

    /* Backdrop overlay */
    .nav-backdrop {
        position: fixed; inset: 0;
        background: rgba(20, 15, 10, .55);
        z-index: 9998;
        opacity: 0; pointer-events: none;
        transition: opacity .25s;
    }
    .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

    /* Side drawer from RIGHT — full-height overlay panel, top-level stacking context */
    .main-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(320px, 86vw);
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 0;
        box-shadow: -8px 0 28px rgba(0, 0, 0, .25);
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 9999;
        visibility: visible;
        overflow-y: auto;
        opacity: 1;
        pointer-events: auto;
        max-height: none;
        gap: 0;
    }
    .main-nav.is-open { transform: translateX(0); }
    /* Drawer header (close button) */
    .nav-drawer-head {
        display: flex; align-items: center; justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--line);
        position: sticky; top: 0;
        background: #fff;
        z-index: 2;
        flex-shrink: 0;
    }
    .nav-drawer-head .nav-drawer-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.3rem;
        color: var(--ink);
        margin: 0;
        font-weight: 600;
    }
    .nav-close {
        width: 40px; height: 40px;
        background: transparent; border: 0;
        display: inline-flex; align-items: center; justify-content: center;
        cursor: pointer;
        color: var(--ink);
        font-size: 1.4rem;
        border-radius: 50%;
        transition: background .15s;
    }
    .nav-close:hover { background: var(--cream); }
    /* Drawer link list — every row uses identical sizing/borders */
    .main-nav > a,
    .main-nav > .nav-dd {
        padding: 0;
        border-bottom: 1px solid var(--line);
        width: 100%;
        display: block;
    }
    .main-nav > a {
        padding: 14px 22px;
        font-weight: 500;
        display: flex; align-items: center;
    }
    .main-nav > .nav-cta {
        width: calc(100% - 36px);
        margin: 14px 18px 18px;
        padding: 11px 22px;
        align-self: center;
        justify-content: center;
        border-bottom: 0;
        display: inline-flex;
        font-weight: 600;
        box-sizing: border-box;
        min-width: 0;
        max-width: 100%;
    }
    /* Submenu rows — parent link + a + toggle, identical to plain rows */
    .nav-dd {
        position: relative;
    }
    .nav-dd > a {
        padding: 14px 56px 14px 22px;
        display: flex;
        align-items: center;
        background: #fff;
        font-weight: 500;
        width: 100%;
    }
    .nav-dd-plus {
        position: absolute;
        right: 14px;
        top: 14px;
        width: 30px; height: 30px;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: #fff;
        color: var(--gold-deep);
        display: inline-flex; align-items: center; justify-content: center;
        cursor: pointer;
        font-size: .8rem;
        transition: background .15s, color .15s, border-color .15s;
        z-index: 1;
    }
    .nav-dd-plus:hover { background: var(--cream); }
    .nav-dd-plus.is-open {
        background: var(--gold-deep);
        color: #fff;
        border-color: var(--gold-deep);
    }
    /* Submenu items — appear as distinct rows BELOW the parent, with subtle
       indent, matching row height, and lighter visual treatment.
       Accordion-style: max-height animated open/close. */
    .nav-dd-menu {
        /* Override desktop dropdown styles */
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: 0 !important;
        /* Accordion container */
        background: #fafaf7;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        padding: 0 !important;
        min-width: 0 !important;
        z-index: auto !important;
        display: block !important;
        gap: 0;
    }
    .nav-dd-menu.is-open {
        max-height: 600px;
        border-top: 1px solid rgba(232, 223, 200, .6) !important;
    }
    .nav-dd-menu a {
        padding: 12px 22px 12px 38px;
        font-size: .92rem;
        color: var(--ink-soft);
        border-bottom: 1px solid rgba(232, 223, 200, .5);
        display: flex; align-items: center;
        font-weight: 500;
        position: relative;
    }
    .nav-dd-menu a::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 50%;
        width: 6px; height: 6px;
        background: var(--gold-deep);
        border-radius: 50%;
        transform: translateY(-50%);
        opacity: .6;
    }
    .nav-dd-menu a:last-child { border-bottom: 0; }
    .nav-dd > a .nav-caret { display: none; }

    .why-grid, .cat-grid, .product-grid, .blog-grid, .cat-grid-page { grid-template-columns: 1fr 1fr; }
    .hero { padding: 60px 0 50px; }
    .section { padding: 60px 0; }
    .hero-stats { padding: 18px 12px; gap: 10px; }
    .hero-stats strong { font-size: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-vals { grid-template-columns: 1fr; }
    .prod-perks { grid-template-columns: 1fr; }
    .brand-logo img { height: 50px; }

    .float-whatsapp { right: 14px; bottom: 14px; width: 50px; height: 50px; font-size: 1.4rem; }
    .brand-logo img { height: 64px; width: 64px; max-width: 64px; margin-bottom: 0; border-radius: 50%; }
}
@media (max-width: 440px) {
    .why-grid, .cat-grid, .product-grid, .blog-grid, .cat-grid-page { grid-template-columns: 1fr; }
}

/* ===== Services grid (CherishX-style cards with images) ===== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 30px;
}
.svc-card {
    display: flex; flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    color: var(--ink);
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-soft);
}
.svc-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--cream), var(--cream-2));
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-deep);
    font-size: 3rem;
    overflow: hidden;
}
.svc-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.18));
    pointer-events: none;
}
.svc-badge {
    position: absolute; top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
    color: #fff; font-size: .68rem; letter-spacing: .12em;
    padding: 6px 12px; border-radius: 999px;
    box-shadow: 0 4px 12px rgba(184,134,11,.3);
    z-index: 2; font-weight: 600; text-transform: uppercase;
}
.svc-body { padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--ink);
    margin: 0; line-height: 1.2; font-weight: 600;
}
.svc-body p { color: var(--ink-soft); font-size: .92rem; margin: 0; line-height: 1.55; }
.svc-meta { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 6px; }
.svc-price {
    color: var(--gold-deep);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
}
.svc-arrow {
    margin-left: auto;
    width: 34px; height: 34px; border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .82rem;
    transition: transform .25s ease;
}
.svc-card:hover .svc-arrow { transform: translateX(4px); }

.services-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #fffaf2 0%, #fdf3e0 100%);
    border: 1px solid var(--gold-soft);
    border-radius: 16px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 30px;
}
.services-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; color: var(--ink); margin: 0 0 6px; }
.services-cta p { color: var(--ink-soft); margin: 0; }
.services-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* ===== Service detail ===== */
.svc-detail-head { padding: 50px 0 40px; }
.svc-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
}
.svc-detail-img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cream), var(--cream-2));
    background-size: cover; background-position: center;
    box-shadow: var(--shadow-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-deep);
    font-size: 4rem;
}
.svc-detail-body .back-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold-deep); font-weight: 600;
    margin-bottom: 14px; font-size: .88rem;
}
.svc-detail-body h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--ink);
    margin: 8px 0 16px;
    line-height: 1.1;
}
.svc-detail-body .lead { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; margin-bottom: 20px; }
.svc-detail-price {
    background: linear-gradient(135deg, #fffaf2, #fdf3e0);
    border: 1px solid var(--gold-soft);
    border-radius: 12px;
    padding: 14px 20px;
    display: inline-flex; align-items: baseline; gap: 12px;
    margin-bottom: 24px;
}
.svc-detail-price strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; color: var(--gold-deep);
}
.svc-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.svc-prose { max-width: 820px; margin: 0 auto; }
.svc-prose h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--ink); margin-bottom: 18px; }
.rich-body { color: var(--ink-soft); line-height: 1.75; font-size: 1rem; }
.rich-body p { margin: 0 0 14px; }
.rich-body ul, .rich-body ol { margin: 0 0 14px; padding-left: 22px; }
.rich-body li { margin-bottom: 6px; }
.rich-body strong { color: var(--ink); }

.section-soft { background: var(--cream); }
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    color: var(--ink);
    text-align: center;
    margin-bottom: 26px;
}

@media (max-width: 880px) {
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .svc-detail-grid { grid-template-columns: 1fr; gap: 28px; }
    .services-cta { grid-template-columns: 1fr; padding: 28px 24px; }
    .services-cta .cta-actions { justify-content: flex-start; }
}
@media (max-width: 520px) {
    .svc-grid { grid-template-columns: 1fr; }
}
