/* =====================================================================
   SOLE ORIGIN — MAIN STYLESHEET
   =====================================================================
   TABLE OF CONTENTS (use Ctrl+F to jump to any section):
   1.  RESET & BASE
   2.  LAYOUT HELPERS (.so-container, buttons)
   3.  HEADER STYLES (topbar + main nav)
   4.  HERO BANNER (#so-hero)
   5.  TRUST ICONS STRIP (#so-trust-icons)
   6.  CATEGORY SLIDER (#so-categories)
   7.  FEATURED COLLECTION (#so-featured)
   8.  ELITE COLLECTION GRID (#so-elite)
   9.  HERITAGE SECTION (#so-heritage)
   10. TESTIMONIALS (#so-testimonials)
   11. JOURNAL + INSTAGRAM (#so-journal-insta)
   12. FOOTER STYLES
   13. SHOP ARCHIVE / SINGLE PRODUCT PAGES
   14. ANIMATIONS / EFFECTS (scroll reveal, hover transitions)
   15. MOBILE DRAWER MENU (hamburger, slide-in panel, overlay)
   16. RESPONSIVE / MEDIA QUERIES
   ===================================================================== */

/* ---------- 1. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0; padding: 0;
    font-family: var(--so-font-body);
    color: var(--so-text-dark);
    background: var(--so-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--so-font-heading); margin: 0 0 .5em; font-weight: 600; }
a { text-decoration: none; color: inherit; transition: color .25s ease, background .25s ease, transform .25s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 2. LAYOUT HELPERS ---------- */
.so-container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }
.so-page-padding { padding-top: 60px; padding-bottom: 60px; }

.so-section-heading { text-align: center; margin-bottom: 40px; position: relative; }
.so-section-heading h2 {
    font-size: 32px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--so-navy); display: inline-block; position: relative; padding: 0 30px;
}
.so-section-heading h2::before, .so-section-heading h2::after {
    content: ''; position: absolute; top: 50%; width: 20px; height: 1px; background: var(--so-gold);
}
.so-section-heading h2::before { left: -10px; }
.so-section-heading h2::after { right: -10px; }
.so-section-heading.so-light h2 { color: var(--so-white); }

.btn {
    display: inline-block; padding: 14px 32px; font-size: 13px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase; text-align: center;
    border-radius: 2px; transition: all .3s ease; cursor: pointer; border: 1px solid transparent;
}
.btn-gold { background: var(--so-gold); color: var(--so-navy); }
.btn-gold:hover { background: var(--so-gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,160,79,.35); }

.btn-outline { background: transparent; color: var(--so-navy); border-color: var(--so-navy); }
.btn-outline:hover { background: var(--so-navy); color: var(--so-white); }

.btn-outline-light { background: transparent; color: var(--so-white); border-color: var(--so-white); }
.btn-outline-light:hover { background: var(--so-white); color: var(--so-navy); }

.so-eyebrow-small { color: var(--so-gold); letter-spacing: 2px; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.so-text-link { color: var(--so-gold); font-weight: 600; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; }
.so-text-link i { margin-left: 6px; transition: transform .25s ease; }
.so-text-link:hover i { transform: translateX(4px); }
.so-view-all { text-align: center; margin-top: 36px; }


/* ---------- 3. HEADER STYLES ---------- */
.so-topbar { background: var(--so-navy); color: rgba(255,255,255,.75); font-size: 12px; padding: 8px 0; letter-spacing: .5px; }
.so-topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.so-topbar-messages { display: flex; gap: 28px; }
.so-topbar-messages li { display: flex; align-items: center; gap: 6px; }
.so-topbar-messages i { color: var(--so-gold); font-size: 11px; }
.so-topbar-right { display: flex; align-items: center; gap: 20px; }
.so-topbar-phone { display: flex; align-items: center; gap: 6px; color: var(--so-gold); }
.so-topbar-phone:hover { color: var(--so-gold-light); }
.so-topbar-select { display: flex; align-items: center; gap: 5px; cursor: pointer; }

.so-main-header { background: var(--so-white); border-bottom: 1px solid var(--so-border); position: sticky; top: 0; z-index: 999; }
.so-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; gap: 30px; }

.so-logo-text { display: flex; align-items: center; gap: 10px; }
.so-logo-mark {
    width: 44px; height: 44px; border: 1px solid var(--so-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--so-font-heading); color: var(--so-gold); font-size: 18px; font-weight: 700;
}
.so-logo-words { font-family: var(--so-font-heading); font-size: 20px; font-weight: 700; color: var(--so-navy); letter-spacing: 1px; line-height: 1.2; }
.so-logo-words small { display: block; font-family: var(--so-font-accent); font-size: 9px; letter-spacing: 2px; color: var(--so-text-muted); font-weight: 400; }

.primary-menu { display: flex; gap: 32px; }
.primary-menu a {
    font-size: 14px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
    color: var(--so-text-dark); position: relative; padding-bottom: 6px;
}
.primary-menu a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background: var(--so-gold); transition: width .3s ease;
}
.primary-menu a:hover::after, .primary-menu .current-menu-item a::after { width: 100%; }
.primary-menu .current-menu-item a { color: var(--so-gold); }

.so-header-icons { display: flex; align-items: center; gap: 8px; }
.so-icon-btn {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--so-navy); font-size: 16px; position: relative; transition: background .25s ease;
}
.so-icon-btn:hover { background: var(--so-cream); color: var(--so-gold); }
.cart-count {
    position: absolute; top: -2px; right: -2px; background: var(--so-oxblood); color: #fff;
    font-size: 10px; width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.so-mobile-menu-toggle { display: none; } /* shown only below 768px — see section 15 MOBILE DRAWER */

.so-search-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; background: var(--so-cream); }
.so-search-panel.active { max-height: 100px; padding: 20px 0; }
.so-search-panel input[type="search"] { width: 100%; padding: 12px 16px; border: 1px solid var(--so-border); font-size: 15px; }


/* ---------- 4. HERO BANNER (#so-hero) ----------
   This is THE main visual "effect" zone:
   - dark gradient overlay for text readability over the background image
   - gold eyebrow text + huge serif title (Fraunces)
   - shoe image floats in with zoom/fade animation (see section 14)
   To swap the background image: Customize > Homepage Hero Banner > Background Image
*/
.so-hero {
    position: relative;
    background: linear-gradient(120deg, var(--so-navy) 0%, #1a2438 60%, var(--so-navy-light) 100%);
    background-size: cover; background-position: center;
    min-height: 560px; display: flex; align-items: center; overflow: hidden;
}
.so-hero::before {
    /* dark gradient overlay so text stays readable on any uploaded photo */
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(12,19,34,.92) 0%, rgba(12,19,34,.55) 55%, rgba(12,19,34,.15) 100%);
}
.so-hero-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 80px 20px; }
.so-hero-text { max-width: 560px; }
.so-hero-eyebrow { color: var(--so-gold); letter-spacing: 3px; font-size: 14px; font-weight: 500; text-transform: uppercase; display: block; margin-bottom: 6px; }
.so-hero-title {
    font-size: 72px; color: var(--so-white); font-weight: 700; line-height: 1; margin-bottom: 18px;
    text-transform: uppercase;
}
.so-hero-subtitle { color: rgba(255,255,255,.8); font-size: 16px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 32px; max-width: 420px; }
.so-hero-buttons { display: flex; gap: 16px; }
.so-hero-image { flex-shrink: 0; max-width: 480px; }
.so-hero-image img { filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }


/* ---------- 5. TRUST ICONS STRIP (#so-trust-icons) ---------- */
.so-trust-icons { background: var(--so-navy-light); padding: 22px 0; }
.so-trust-icons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.so-trust-icon-item { display: flex; align-items: center; gap: 14px; color: var(--so-white); justify-content: center; }
.so-trust-icon-item i { color: var(--so-gold); font-size: 22px; }
.so-trust-icon-item strong { display: block; font-size: 12px; letter-spacing: .8px; }
.so-trust-icon-item span { display: block; font-size: 11px; color: rgba(255,255,255,.6); }


/* ---------- 6. CATEGORY SLIDER (#so-categories) ---------- */
.so-categories { padding: 70px 0; background: var(--so-cream); }
.so-category-swiper { padding: 10px 40px; }
.so-category-item { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.so-category-circle {
    width: 110px; height: 110px; border-radius: 50%; background: var(--so-white);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    border: 1px solid var(--so-border); transition: border-color .3s ease, transform .3s ease;
}
.so-category-circle img { width: 75%; object-fit: contain; }
.so-category-item:hover .so-category-circle { border-color: var(--so-gold); transform: translateY(-6px); }
.so-category-name { font-size: 12px; font-weight: 600; letter-spacing: .8px; color: var(--so-navy); }
.so-swiper-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%; background: var(--so-white); border: 1px solid var(--so-border);
    display: flex; align-items: center; justify-content: center; transition: background .25s ease;
}
.so-swiper-nav:hover { background: var(--so-gold); color: var(--so-white); }
.so-swiper-prev { left: 0; } .so-swiper-next { right: 0; }


/* ---------- 7. FEATURED COLLECTION (#so-featured) ---------- */
.so-featured { padding: 70px 0; background: var(--so-white); }
.so-featured-tabs { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; border-bottom: 1px solid var(--so-border); }
.so-tab-btn {
    padding: 0 0 16px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    color: var(--so-text-muted); position: relative; border-bottom: 2px solid transparent; transition: color .25s ease;
}
.so-tab-btn.active, .so-tab-btn:hover { color: var(--so-navy); border-bottom-color: var(--so-gold); }

.so-products-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.so-product-card {
    background: var(--so-white); border: 1px solid var(--so-border); border-radius: 4px;
    padding: 16px; transition: box-shadow .3s ease, transform .3s ease;
}
.so-product-card:hover { box-shadow: 0 16px 30px rgba(12,19,34,.08); transform: translateY(-4px); }
.so-product-image { position: relative; margin-bottom: 14px; border-radius: 3px; overflow: hidden; background: var(--so-cream); }
.so-product-image img { width: 100%; aspect-ratio: 1/1; object-fit: contain; transition: transform .4s ease; }
.so-product-card:hover .so-product-image img { transform: scale(1.06); }

.so-badge {
    position: absolute; top: 10px; left: 10px; z-index: 3; font-size: 10px; font-weight: 700;
    letter-spacing: .5px; padding: 4px 10px; border-radius: 2px; color: #fff;
}
.so-badge-new { background: #d9822b; }
.so-badge-sale { background: var(--so-oxblood); }
.so-wishlist-btn {
    position: absolute; top: 8px; right: 8px; z-index: 3; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
    color: var(--so-navy); transition: color .25s ease, background .25s ease;
}
.so-wishlist-btn:hover { color: var(--so-oxblood); background: var(--so-white); }
.so-wishlist-btn.active i { font-weight: 900; color: var(--so-oxblood); }

.so-product-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--so-gold); margin-bottom: 6px; }
.so-product-rating span { color: var(--so-text-muted); }
.so-product-title { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.so-product-title a:hover { color: var(--so-gold); }
.so-product-meta { font-size: 12px; color: var(--so-text-muted); margin: 0 0 8px; }
.so-product-price { font-size: 17px; font-weight: 700; color: var(--so-navy); margin-bottom: 14px; }
.so-product-price del { color: var(--so-text-muted); font-weight: 400; margin-right: 8px; }
.so-product-price ins { text-decoration: none; color: var(--so-oxblood); }
.so-add-cart-btn { display: block; width: 100%; text-align: center; }
.so-add-cart-btn.loading { opacity: .6; pointer-events: none; }
.so-add-cart-btn.added::after { content: ' ✓'; }


/* ---------- 8. ELITE COLLECTION GRID (#so-elite) ----------
   The dark luxury 5x2 grid. Each card has a numbered label that fades
   in gold on hover, and the shoe image desaturates slightly until hover
   (mirrors high-end editorial e-commerce sites).
*/
.so-elite-section { background: var(--so-navy); padding: 80px 0; }
.so-elite-header { text-align: center; margin-bottom: 44px; }
.so-elite-header h2 { color: var(--so-gold); font-size: 30px; letter-spacing: 1px; text-transform: uppercase; }
.so-elite-header p { color: rgba(255,255,255,.55); letter-spacing: 2px; font-size: 12px; text-transform: uppercase; }

.so-elite-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: rgba(255,255,255,.06); }
.so-elite-card {
    position: relative; aspect-ratio: 3/4; background: var(--so-navy-light); overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between; padding: 18px;
}
.so-elite-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%) brightness(.85); transition: filter .5s ease, transform .6s ease; }
.so-elite-card:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.08); }
.so-elite-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,19,34,.85) 0%, transparent 55%); }
.so-elite-number {
    position: relative; z-index: 2; font-family: var(--so-font-heading); color: var(--so-gold);
    font-size: 22px; font-weight: 700; opacity: .85; transition: opacity .3s ease;
}
.so-elite-card:hover .so-elite-number { opacity: 1; }
.so-elite-name {
    position: relative; z-index: 2; color: var(--so-white); font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
}


/* ---------- 9. HERITAGE SECTION (#so-heritage) ---------- */
.so-heritage { background: var(--so-cream); padding: 80px 0; }
.so-heritage-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 36px; align-items: center; }
.so-heritage-text h2 { font-size: 30px; color: var(--so-navy); line-height: 1.25; margin: 10px 0 16px; }
.so-heritage-text p { color: var(--so-text-muted); font-size: 15px; margin-bottom: 20px; }
.so-heritage-image img { border-radius: 6px; box-shadow: 0 20px 40px rgba(12,19,34,.18); }
.so-heritage-features { display: grid; gap: 18px; }
.so-feature-item { display: flex; align-items: center; gap: 12px; }
.so-feature-item i { color: var(--so-gold); font-size: 18px; width: 24px; text-align: center; }
.so-feature-item strong { display: block; font-size: 13px; color: var(--so-navy); }
.so-feature-item span { font-size: 11px; color: var(--so-text-muted); }
.so-heritage-stat {
    margin-top: 10px; border: 1px solid var(--so-gold); border-radius: 6px; padding: 16px;
    display: grid; grid-template-columns: auto auto; gap: 4px 14px; align-items: baseline; text-align: center;
}
.so-heritage-stat strong { font-size: 22px; color: var(--so-gold); font-family: var(--so-font-heading); }
.so-heritage-stat span { font-size: 10px; letter-spacing: 1px; color: var(--so-text-muted); align-self: center; }


/* ---------- 10. TESTIMONIALS (#so-testimonials) ---------- */
.so-testimonials { background: var(--so-navy); padding: 80px 0; }
.so-testimonial-card { background: var(--so-navy-light); border: 1px solid rgba(201,160,79,.2); border-radius: 6px; padding: 26px; height: 100%; }
.so-testimonial-name strong { display: block; color: var(--so-white); font-size: 14px; }
.so-testimonial-name span { font-size: 12px; color: rgba(255,255,255,.5); }
.so-stars { color: var(--so-gold); margin: 10px 0; font-size: 14px; letter-spacing: 2px; }
.so-testimonial-card p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.7; }


/* ---------- 11. JOURNAL + INSTAGRAM (#so-journal-insta) ---------- */
.so-journal-insta { padding: 70px 0; background: var(--so-white); }
.so-journal-insta-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; }
.so-journal-col h3, .so-instagram-heading h3 { font-size: 18px; text-transform: uppercase; letter-spacing: 1px; color: var(--so-navy); margin-bottom: 20px; }
.so-journal-item { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.so-journal-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.so-journal-item strong { display: block; font-size: 13px; line-height: 1.4; }
.so-journal-item span { font-size: 11px; color: var(--so-text-muted); }
.so-instagram-heading { display: flex; justify-content: space-between; align-items: baseline; }
.so-instagram-heading span { color: var(--so-gold); font-size: 13px; }
.so-instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.so-insta-item { aspect-ratio: 1/1; overflow: hidden; border-radius: 4px; }
.so-insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.so-insta-item:hover img { transform: scale(1.1); }


/* ---------- 12. FOOTER STYLES ---------- */
.so-trust-strip { background: var(--so-cream); border-top: 1px solid var(--so-border); border-bottom: 1px solid var(--so-border); padding: 18px 0; }
.so-trust-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.so-trust-item { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: .5px; color: var(--so-navy); }
.so-trust-item i { color: var(--so-gold); font-size: 18px; }
.so-trust-item small { display: block; font-weight: 400; color: var(--so-text-muted); font-size: 10px; text-transform: none; letter-spacing: 0; }
.so-trust-cards { display: flex; gap: 14px; font-size: 26px; color: var(--so-navy); }

.so-footer-main { background: var(--so-navy); color: rgba(255,255,255,.65); padding: 60px 0 0; }
.so-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; gap: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.so-footer-col h4, .so-newsletter-title { color: var(--so-white); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.so-footer-brand p { font-size: 13px; line-height: 1.7; margin: 16px 0 20px; }
.so-logo-text-footer { font-family: var(--so-font-heading); font-size: 22px; color: var(--so-gold); font-weight: 700; }
.so-social-icons { display: flex; gap: 10px; }
.so-social-icons a {
    width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: background .25s ease, border-color .25s ease;
}
.so-social-icons a:hover { background: var(--so-gold); border-color: var(--so-gold); color: var(--so-navy); }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { font-size: 13px; transition: color .25s ease, padding-left .25s ease; }
.footer-menu a:hover { color: var(--so-gold); padding-left: 4px; }
.so-footer-contact li { display: flex; gap: 10px; font-size: 13px; margin-bottom: 12px; align-items: flex-start; }
.so-footer-contact i { color: var(--so-gold); margin-top: 2px; width: 14px; }
.so-newsletter-text { font-size: 12px; margin-bottom: 14px; }
.so-newsletter-form { display: flex; border: 1px solid rgba(255,255,255,.2); border-radius: 3px; overflow: hidden; }
.so-newsletter-form input { flex: 1; background: transparent; border: none; padding: 12px 14px; color: #fff; font-size: 13px; }
.so-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.so-newsletter-form button { background: var(--so-gold); color: var(--so-navy); padding: 0 18px; transition: background .25s ease; }
.so-newsletter-form button:hover { background: var(--so-gold-light); }

.so-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 20px; font-size: 12px; position: relative; }
.so-footer-legal { display: flex; gap: 20px; }
.so-footer-legal a:hover { color: var(--so-gold); }
.so-scroll-top {
    position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--so-gold); color: var(--so-navy); display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease; z-index: 500;
}
.so-scroll-top.visible { opacity: 1; pointer-events: auto; }
.so-scroll-top:hover { transform: translateY(-4px); }


/* ---------- 13. SHOP ARCHIVE / SINGLE PRODUCT ---------- */
.so-shop-header { text-align: center; padding: 40px 0; }
.so-shop-header h1 { color: var(--so-navy); text-transform: uppercase; letter-spacing: 1px; }
.so-shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding-bottom: 70px; }
.so-filter-block { margin-bottom: 30px; }
.so-filter-block h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; color: var(--so-navy); }
.so-filter-block ul li { margin-bottom: 8px; }
.so-filter-block a { font-size: 13px; color: var(--so-text-muted); }
.so-filter-block a:hover { color: var(--so-gold); }
.so-shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 13px; color: var(--so-text-muted); }
.so-products-grid-archive { grid-template-columns: repeat(4, 1fr); }
.so-pagination { text-align: center; margin-top: 40px; }

.so-single-product { padding: 40px 0 70px; }
.so-product-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin: 30px 0 50px; }
.so-product-summary-col h1.product_title { font-size: 30px; color: var(--so-navy); margin-bottom: 10px; }
.so-product-form-wrap { margin: 24px 0; }
.so-product-trust-mini { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--so-text-muted); margin: 20px 0; padding-top: 16px; border-top: 1px solid var(--so-border); }
.so-product-trust-mini i { color: var(--so-gold); margin-right: 6px; }


/* ---------- 14. ANIMATIONS / EFFECTS ----------
   Scroll-reveal: elements with [data-aos] start hidden/offset, then
   assets/js/main.js adds the .aos-visible class via IntersectionObserver
   when they scroll into view, triggering this transition.
*/
[data-aos] { opacity: 0; transition: opacity .8s ease, transform .8s ease; }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="zoom-in"] { transform: scale(.9); }
[data-aos].aos-visible { opacity: 1; transform: none; }

@keyframes so-fade-in { from { opacity: 0; } to { opacity: 1; } }
.so-search-panel.active { animation: so-fade-in .3s ease; }


/* ---------- 15. MOBILE DRAWER MENU ----------
   Three pieces work together:
   1. .so-hamburger  -> the 3-line icon that animates into an X (pure CSS,
      triggered by .active class added via JS on the parent button)
   2. .so-mobile-overlay -> dark transparent backdrop, fades in, click closes drawer
   3. .so-mobile-drawer  -> the panel itself, slides in from the right with a
      cubic-bezier "ease-out" curve so it feels snappy, not linear/robotic.
   Body gets class .so-mobile-menu-active (added by main.js) to lock scrolling
   while the drawer is open, so the page behind doesn't scroll on iOS/Android.
*/

/* Hamburger icon -> X animation */
.so-hamburger { width: 22px; height: 16px; position: relative; display: inline-block; }
.so-hamburger span {
    position: absolute; left: 0; width: 100%; height: 2px; background: var(--so-navy);
    border-radius: 2px; transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.so-hamburger span:nth-child(1) { top: 0; }
.so-hamburger span:nth-child(2) { top: 7px; }
.so-hamburger span:nth-child(3) { top: 14px; }
.so-mobile-menu-toggle.active .so-hamburger span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.so-mobile-menu-toggle.active .so-hamburger span:nth-child(2) { opacity: 0; }
.so-mobile-menu-toggle.active .so-hamburger span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* Dark backdrop behind the drawer */
.so-mobile-overlay {
    position: fixed; inset: 0; background: rgba(12,19,34,.55);
    opacity: 0; pointer-events: none; transition: opacity .35s ease;
    z-index: 1000;
}
.so-mobile-overlay.active { opacity: 1; pointer-events: auto; }

/* The sliding drawer panel itself */
.so-mobile-drawer {
    position: fixed; top: 0; right: 0; height: 100%; width: 86%; max-width: 360px;
    background: var(--so-white); z-index: 1001;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1); /* smooth "ease-out-expo" feel */
    display: flex; flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,.25);
    overflow-y: auto;
}
.so-mobile-drawer.active { transform: translateX(0); }

.so-mobile-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px; border-bottom: 1px solid var(--so-border); flex-shrink: 0;
}
.so-mobile-drawer-close {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--so-navy); font-size: 18px; transition: background .2s ease;
}
.so-mobile-drawer-close:hover { background: var(--so-cream); }

.so-mobile-drawer-nav { padding: 10px 0; flex-grow: 1; }
.mobile-menu li { border-bottom: 1px solid var(--so-border); }
.mobile-menu a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; font-size: 15px; font-weight: 600; color: var(--so-navy);
    text-transform: uppercase; letter-spacing: .5px;
    transition: background .2s ease, padding-left .2s ease, color .2s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { background: var(--so-cream); padding-left: 26px; color: var(--so-gold); }
.mobile-menu a::after { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--so-gold); opacity: .6; }

.so-mobile-drawer-icons {
    display: flex; flex-direction: column; gap: 2px; padding: 10px 0;
    border-top: 1px solid var(--so-border); border-bottom: 1px solid var(--so-border);
}
.so-mobile-drawer-icons a {
    display: flex; align-items: center; gap: 12px; padding: 14px 20px; font-size: 14px; color: var(--so-text-dark);
    transition: background .2s ease;
}
.so-mobile-drawer-icons a:hover { background: var(--so-cream); }
.so-mobile-drawer-icons i { color: var(--so-gold); width: 18px; text-align: center; }

.so-mobile-drawer-contact { padding: 18px 20px; margin-top: auto; flex-shrink: 0; }
.so-mobile-drawer-contact a {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--so-navy); color: var(--so-gold); padding: 14px; border-radius: 4px;
    font-weight: 600; font-size: 14px;
}

/* Body scroll-lock while drawer is open (class toggled by main.js) */
body.so-mobile-menu-active { overflow: hidden; }


/* ---------- 16. RESPONSIVE ----------
   Mobile-first overrides layered by breakpoint, largest to smallest.
   Test widths: 1100px (tablets/small laptops), 900px (large phones/small
   tablets landscape), 600px (phones portrait), 380px (small phones).
*/

/* ===== Tablets / small laptops (<=1100px) ===== */
@media (max-width: 1100px) {
    .so-products-grid { grid-template-columns: repeat(3, 1fr); }
    .so-elite-grid { grid-template-columns: repeat(3, 1fr); }
    .so-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .so-heritage-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .so-heritage-image { order: -1; }
    .so-journal-insta-grid { grid-template-columns: 1fr; gap: 36px; }
    .so-shop-layout { grid-template-columns: 1fr; }
    .so-products-grid-archive { grid-template-columns: repeat(2, 1fr); }
    .so-product-page-grid { grid-template-columns: 1fr; }
    .so-hero-title { font-size: 58px; }
    .so-trust-icons-grid { grid-template-columns: repeat(3, 1fr); }
    .primary-menu { gap: 20px; }
}

/* ===== Large phones / small tablets (<=900px) — header switches to mobile drawer ===== */
@media (max-width: 900px) {
    .so-topbar-messages { display: none; }
    .primary-menu { display: none; }
    .so-mobile-menu-toggle { display: flex; }
    .so-header-inner { padding: 14px 16px; }
    .so-logo-words { font-size: 17px; }
    .so-logo-mark { width: 38px; height: 38px; font-size: 15px; }

    .so-hero { min-height: auto; }
    .so-hero-inner { flex-direction: column; text-align: center; padding: 56px 16px; gap: 30px; }
    .so-hero-text { max-width: 100%; }
    .so-hero-title { font-size: 46px; }
    .so-hero-subtitle { max-width: 100%; }
    .so-hero-buttons { justify-content: center; flex-wrap: wrap; }
    .so-hero-image { max-width: 320px; }

    .so-trust-icons-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .so-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .so-elite-grid { grid-template-columns: repeat(2, 1fr); }
    .so-footer-grid { grid-template-columns: 1fr 1fr; }
    .so-footer-brand { grid-column: 1 / -1; }
    .so-instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .so-products-grid-archive { grid-template-columns: repeat(2, 1fr); }
    .so-trust-inner { flex-direction: column; text-align: center; }
    .so-trust-cards { justify-content: center; }
    .so-footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }

    .so-section-heading h2 { font-size: 26px; }
}

/* ===== Phones portrait (<=600px) ===== */
@media (max-width: 600px) {
    .so-container { padding: 0 16px; }
    .so-topbar-right { gap: 12px; }
    .so-topbar-select { display: none; } /* hide lang/currency selector, keep just phone */

    .so-hero-title { font-size: 36px; }
    .so-hero-eyebrow { font-size: 12px; }
    .so-hero-buttons { flex-direction: column; width: 100%; }
    .so-hero-buttons .btn { width: 100%; }

    .so-trust-icons-grid { grid-template-columns: 1fr 1fr; }
    .so-trust-icon-item { flex-direction: column; text-align: center; gap: 8px; }

    .so-category-swiper { padding: 10px 36px; }
    .so-category-circle { width: 84px; height: 84px; }

    .so-featured-tabs { flex-wrap: wrap; gap: 14px 20px; }
    .so-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .so-product-card { padding: 12px; }

    .so-elite-grid { grid-template-columns: 1fr 1fr; }
    .so-elite-header h2 { font-size: 22px; }

    .so-heritage-features { grid-template-columns: 1fr 1fr; gap: 14px; }
    .so-heritage-stat { grid-column: 1 / -1; }

    .so-testimonial-card { padding: 20px; }

    .so-journal-item img { width: 54px; height: 54px; }
    .so-instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

    .so-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .so-social-icons { justify-content: center; }
    .so-footer-contact li { justify-content: center; }
    .so-newsletter-form { max-width: 320px; margin: 0 auto; }

    .so-products-grid-archive { grid-template-columns: 1fr 1fr; }
    .so-shop-header h1 { font-size: 22px; }
    .so-product-page-grid { gap: 26px; }

    .so-scroll-top { width: 40px; height: 40px; bottom: 20px; right: 16px; }
}

/* ===== Small phones (<=380px) ===== */
@media (max-width: 380px) {
    .so-hero-title { font-size: 30px; }
    .so-products-grid, .so-elite-grid, .so-products-grid-archive, .so-trust-icons-grid { grid-template-columns: 1fr 1fr; }
    .so-instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
    .so-heritage-features { grid-template-columns: 1fr; }
    .so-logo-words small { display: none; } /* drop tagline on tiny screens to save space */
}

/* Respect users who've asked their OS to reduce motion */
@media (prefers-reduced-motion: reduce) {
    [data-aos], .so-mobile-drawer, .so-mobile-overlay, .so-hamburger span, .so-product-card, .so-elite-card img {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* ---------- Touch-target sizing (mobile usability) ----------
   Apple/Google guidelines recommend at least 44x44px tappable area.
   Header icons and the hamburger were 38px on desktop — bump them up
   only on touch breakpoints so desktop spacing stays tight.
*/
@media (max-width: 900px) {
    .so-icon-btn { width: 44px; height: 44px; }
    .so-wishlist-btn { width: 38px; height: 38px; }
    .btn { padding: 14px 24px; } /* slightly roomier tap area, same visual style */
    .so-swiper-nav { width: 40px; height: 40px; }
}

/* Prevent any unexpectedly wide element (long product titles, embeds, etc.)
   from forcing horizontal scroll on small screens */
html, body { overflow-x: hidden; max-width: 100%; }
img, table { max-width: 100%; }

/* =========================================================
   DIGIGLOBO THEME v2.0 — EXTENDED STYLES
   Developer: Ahmad Saleem | +92 346 4292408 | beauteous.pk
   ========================================================= */

/* ---- WHATSAPP FLOATING BUTTON ---- */
.so-whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}
.so-whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.6); color: #fff; }
.so-whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #1a1a1a;
    color: #fff;
    font-size: .75rem;
    padding: .3rem .7rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.so-whatsapp-float:hover .so-whatsapp-tooltip { opacity: 1; }

/* ---- FOOTER WHATSAPP CTA ---- */
.so-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #25d366;
    color: #fff !important;
    padding: .55rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: background .2s, transform .2s;
    flex-direction: column;
    align-items: flex-start;
}
.so-footer-whatsapp i { font-size: 1.2rem; }
.so-footer-whatsapp span { font-size: .8rem; opacity: .9; font-weight: 400; }
.so-footer-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); }

/* ---- FOOTER CREDIT ---- */
.so-footer-credit {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    text-align: center;
    margin-top: .5rem;
    line-height: 1.6;
}
.so-footer-credit strong { color: var(--so-gold); }
.so-footer-credit a { color: #25d366; text-decoration: none; }

/* ---- CATEGORY HERO ---- */
.so-cat-hero {
    position: relative;
    background: var(--so-navy);
    background-size: cover;
    background-position: center;
    padding: 5rem 0 3.5rem;
    text-align: center;
    overflow: hidden;
}
.so-cat-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(12,19,34,.85) 60%, rgba(201,160,79,.15));
}
.so-cat-hero-content {
    position: relative;
    z-index: 2;
}
.so-cat-hero h1 {
    font-family: var(--so-font-heading);
    color: var(--so-gold);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: .5rem 0;
}
.so-cat-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }
.so-cat-hero .woocommerce-breadcrumb { color: rgba(255,255,255,.5); font-size: .82rem; }
.so-cat-hero .woocommerce-breadcrumb a { color: var(--so-gold-light); }

/* ---- FILTER TOGGLE MOBILE ---- */
.so-filter-toggle-btn {
    display: none;
    background: var(--so-navy);
    color: var(--so-gold);
    border: 1.5px solid var(--so-gold);
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-size: .9rem;
    cursor: pointer;
    gap: .5rem;
    align-items: center;
    margin-bottom: 1.2rem;
    font-family: var(--so-font-accent);
    font-weight: 600;
    letter-spacing: .04em;
}
@media (max-width: 900px) {
    .so-filter-toggle-btn { display: inline-flex; }
    .so-shop-sidebar {
        position: fixed;
        top: 0; left: -320px;
        width: 300px;
        height: 100vh;
        overflow-y: auto;
        z-index: 10000;
        background: var(--so-white);
        box-shadow: var(--so-shadow-lg);
        padding: 1.5rem;
        transition: left .3s ease;
    }
    .so-shop-sidebar.open { left: 0; }
}

/* ---- SIDEBAR STYLES ---- */
.so-sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.so-sidebar-header h3 { font-family: var(--so-font-heading); color: var(--so-navy); font-size: 1.3rem; margin: 0; }
.so-sidebar-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--so-text-muted); padding: .3rem; }

.so-filter-cats { list-style: none; padding: 0; margin: 0; }
.so-filter-cats li + li { margin-top: .3rem; }
.so-filter-cats a {
    display: flex; justify-content: space-between;
    padding: .45rem .6rem;
    border-radius: var(--so-radius);
    color: var(--so-text-dark);
    text-decoration: none;
    font-size: .9rem;
    transition: background .2s, color .2s;
}
.so-filter-cats a:hover, .so-filter-cats a.active {
    background: var(--so-navy); color: var(--so-gold);
}
.so-filter-cats a span { color: var(--so-text-muted); font-size: .78rem; }

.so-sort-list { list-style: none; padding: 0; margin: 0; }
.so-sort-list a {
    display: block; padding: .45rem .6rem; border-radius: var(--so-radius);
    color: var(--so-text-dark); text-decoration: none; font-size: .9rem;
    transition: background .2s, color .2s;
}
.so-sort-list a:hover { background: var(--so-navy); color: var(--so-gold); }

.so-tag-cloud { display: flex; flex-wrap: wrap; gap: .4rem; }
.so-tag-chip {
    background: var(--so-cream); color: var(--so-text-dark);
    padding: .3rem .75rem; border-radius: 50px;
    font-size: .78rem; text-decoration: none;
    transition: background .2s, color .2s;
    border: 1px solid var(--so-border);
}
.so-tag-chip:hover { background: var(--so-navy); color: var(--so-gold); border-color: var(--so-navy); }

.so-price-inputs { display: flex; align-items: center; gap: .5rem; }
.so-price-input { border: 1px solid var(--so-border); border-radius: var(--so-radius); padding: .45rem .6rem; width: 80px; font-size: .9rem; }

/* ---- VIEW TOGGLE ---- */
.so-view-toggle { display: flex; gap: .3rem; }
.so-view-btn {
    background: transparent; border: 1.5px solid var(--so-border);
    width: 36px; height: 36px; border-radius: var(--so-radius);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--so-text-muted); transition: all .2s;
}
.so-view-btn.active, .so-view-btn:hover { background: var(--so-navy); color: var(--so-gold); border-color: var(--so-navy); }

.so-toolbar-right { display: flex; align-items: center; gap: 1rem; }

/* ---- QUICK VIEW BUTTON ---- */
.so-product-actions {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(12,19,34,.85);
    padding: .8rem;
    display: flex; justify-content: center;
    transform: translateY(100%);
    transition: transform .25s;
}
.so-product-card:hover .so-product-actions { transform: translateY(0); }
.so-quick-view-btn {
    color: var(--so-gold);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-decoration: none;
    display: flex; align-items: center; gap: .4rem;
    font-family: var(--so-font-accent);
}

/* ---- LIST VIEW ---- */
#soProductGrid.list-view { grid-template-columns: 1fr !important; }
#soProductGrid.list-view .so-product-card {
    display: flex; gap: 1.5rem;
}
#soProductGrid.list-view .so-product-image {
    flex: 0 0 220px; height: 220px;
}
#soProductGrid.list-view .so-product-list-info {
    flex: 1;
}
.so-product-excerpt { font-size: .88rem; color: var(--so-text-muted); margin: .5rem 0; }
.so-product-list-info { display: none; }
#soProductGrid.list-view .so-product-list-info { display: block; }

/* ---- NO PRODUCTS STATE ---- */
.so-no-products {
    text-align: center; padding: 5rem 2rem;
    color: var(--so-text-muted);
}
.so-no-products i { font-size: 3rem; color: var(--so-border); margin-bottom: 1rem; }
.so-no-products h3 { font-family: var(--so-font-heading); color: var(--so-navy); margin-bottom: .5rem; }
.so-no-products .btn { margin-top: 1.5rem; }

/* ---- SUB CATEGORIES ---- */
.so-subcategories-section { padding: 3rem 0; background: var(--so-cream); }
.so-subcat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1rem; margin-top: 1.5rem; }
.so-subcat-card {
    text-align: center; background: #fff; border-radius: var(--so-radius-lg);
    overflow: hidden; text-decoration: none; color: var(--so-text-dark);
    box-shadow: var(--so-shadow); transition: transform .25s, box-shadow .25s;
}
.so-subcat-card:hover { transform: translateY(-4px); box-shadow: var(--so-shadow-lg); }
.so-subcat-card img { width: 100%; height: 130px; object-fit: cover; }
.so-subcat-card span { display: block; padding: .7rem; font-weight: 600; font-size: .85rem; font-family: var(--so-font-accent); }

/* ---- SINGLE PRODUCT EXTRAS ---- */
.so-product-category-badge { margin-bottom: .5rem; }
.so-product-category-badge a {
    background: var(--so-cream); color: var(--so-navy);
    padding: .25rem .75rem; border-radius: 50px;
    font-size: .78rem; text-decoration: none;
    font-family: var(--so-font-accent); font-weight: 600;
    letter-spacing: .06em;
}
.so-product-price-wrap { display: flex; align-items: center; gap: .75rem; margin: .75rem 0; }
.so-save-badge {
    background: var(--so-oxblood); color: #fff;
    font-size: .72rem; font-weight: 700;
    padding: .3rem .65rem; border-radius: 50px;
    letter-spacing: .06em; font-family: var(--so-font-accent);
}

.so-whatsapp-buy-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #25d366; color: #fff !important;
    padding: .7rem 1.5rem; border-radius: 50px;
    font-weight: 700; text-decoration: none;
    font-family: var(--so-font-accent);
    transition: background .2s, transform .2s;
    margin-top: .75rem;
    font-size: .9rem;
}
.so-whatsapp-buy-btn:hover { background: #1ebe5c; transform: translateY(-2px); color: #fff; }
.so-whatsapp-buy-btn i { font-size: 1.2rem; }

.so-delivery-estimate {
    display: flex; align-items: center; gap: .6rem;
    background: rgba(201,160,79,.1);
    border: 1px dashed var(--so-gold);
    border-radius: var(--so-radius);
    padding: .65rem 1rem;
    font-size: .87rem;
    margin-top: .75rem;
    color: var(--so-text-dark);
}
.so-delivery-estimate i { color: var(--so-gold); }

.so-product-share {
    display: flex; align-items: center; gap: .6rem;
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid var(--so-border);
    font-size: .85rem; color: var(--so-text-muted);
}
.so-product-share a {
    width: 32px; height: 32px;
    background: var(--so-navy); color: var(--so-gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: .85rem;
    transition: background .2s;
}
.so-product-share a:hover { background: var(--so-gold); color: var(--so-navy); }

/* Product features strip */
.so-product-features-strip {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
    gap: 1rem; background: var(--so-navy);
    border-radius: var(--so-radius-lg);
    padding: 1.5rem 2rem; margin: 2.5rem 0;
}
.so-pf-item { text-align: center; color: #fff; }
.so-pf-item i { font-size: 1.75rem; color: var(--so-gold); margin-bottom: .5rem; display: block; }
.so-pf-item strong { display: block; font-size: .92rem; }
.so-pf-item span { font-size: .78rem; color: rgba(255,255,255,.6); }

/* Related products heading */
.so-related-products-wrap .so-section-heading { text-align: center; margin-bottom: 1.5rem; }
.so-related-products-wrap h2 { font-family: var(--so-font-heading); color: var(--so-navy); font-size: 1.8rem; }

/* ---- PAGE HERO VARIANTS ---- */
.so-page-hero {
    padding: 4.5rem 0 3rem;
    text-align: center;
}
.so-page-hero-navy { background: var(--so-navy); }
.so-page-hero-navy h1 { color: var(--so-gold); font-family: var(--so-font-heading); font-size: clamp(2rem,5vw,3rem); margin-bottom: .5rem; }
.so-page-hero-navy p { color: rgba(255,255,255,.7); max-width: 550px; margin: 0 auto; }
.so-page-hero-navy p a { color: var(--so-gold-light); }

.so-page-hero-cream { background: var(--so-cream); border-bottom: 1px solid var(--so-border); }
.so-page-hero-cream h1 { color: var(--so-navy); font-family: var(--so-font-heading); font-size: clamp(2rem,5vw,3rem); margin-bottom: .5rem; }
.so-page-hero-cream p { color: var(--so-text-muted); max-width: 550px; margin: 0 auto; }
.so-page-hero-cream p a { color: var(--so-navy); font-weight: 600; }

.so-page-content { padding: 4rem 0 5rem; }

/* ---- CONTACT PAGE ---- */
.so-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) { .so-contact-grid { grid-template-columns: 1fr; } }

.so-contact-info h2 { font-family: var(--so-font-heading); color: var(--so-navy); font-size: 1.6rem; margin-bottom: .5rem; }
.so-contact-card {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem; background: var(--so-cream);
    border-radius: var(--so-radius); margin-bottom: .75rem;
    border-left: 3px solid var(--so-gold);
}
.so-contact-card.so-contact-wa { border-left-color: #25d366; }
.so-contact-card i { font-size: 1.2rem; color: var(--so-gold); margin-top: .1rem; }
.so-contact-card.so-contact-wa i { color: #25d366; }
.so-contact-card strong { display: block; font-size: .8rem; color: var(--so-text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.so-contact-card a, .so-contact-card span { color: var(--so-text-dark); text-decoration: none; font-size: .95rem; }
.so-contact-card a:hover { color: var(--so-gold); }

.so-contact-form-col h2 { font-family: var(--so-font-heading); color: var(--so-navy); font-size: 1.6rem; margin-bottom: 1.5rem; }
.so-contact-form .so-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width:600px) { .so-contact-form .so-form-row { grid-template-columns: 1fr; } }
.so-form-group { margin-bottom: 1rem; }
.so-form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--so-text-dark); }
.so-form-group input, .so-form-group select, .so-form-group textarea {
    width: 100%; border: 1.5px solid var(--so-border);
    border-radius: var(--so-radius); padding: .7rem 1rem;
    font-family: var(--so-font-body); font-size: .92rem;
    color: var(--so-text-dark); transition: border .2s;
    background: #fff;
}
.so-form-group input:focus, .so-form-group select:focus, .so-form-group textarea:focus {
    outline: none; border-color: var(--so-gold); box-shadow: 0 0 0 3px rgba(201,160,79,.12);
}
.so-contact-map { border-radius: var(--so-radius-lg); overflow: hidden; box-shadow: var(--so-shadow); }

/* ---- FAQ PAGE ---- */
.so-faq-search-wrap {
    position: relative; max-width: 540px;
    margin: 0 auto 2.5rem;
}
.so-faq-search-wrap i {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    color: var(--so-text-muted);
}
.so-faq-search-wrap input {
    width: 100%; padding: .85rem 1rem .85rem 2.8rem;
    border: 1.5px solid var(--so-border); border-radius: 50px;
    font-size: .95rem; font-family: var(--so-font-body);
    transition: border .2s;
}
.so-faq-search-wrap input:focus { outline: none; border-color: var(--so-gold); }

.so-faq-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; justify-content: center; }
.so-faq-tab {
    padding: .45rem 1.1rem; border-radius: 50px;
    border: 1.5px solid var(--so-border);
    background: transparent; cursor: pointer;
    font-family: var(--so-font-accent); font-size: .82rem;
    font-weight: 600; color: var(--so-text-muted);
    transition: all .2s;
}
.so-faq-tab:hover, .so-faq-tab.active {
    background: var(--so-navy); color: var(--so-gold); border-color: var(--so-navy);
}

.so-faq-group { margin-bottom: 2rem; }
.so-faq-group-title {
    font-family: var(--so-font-heading); color: var(--so-navy);
    font-size: 1.2rem; padding-bottom: .75rem;
    border-bottom: 2px solid var(--so-border); margin-bottom: 1rem;
    display: flex; align-items: center; gap: .6rem;
}
.so-faq-group-title i { color: var(--so-gold); }

.so-faq-item { border: 1px solid var(--so-border); border-radius: var(--so-radius); margin-bottom: .6rem; overflow: hidden; }
.so-faq-question {
    width: 100%; background: transparent; border: none;
    padding: 1rem 1.25rem; text-align: left;
    font-family: var(--so-font-body); font-size: .95rem; font-weight: 600;
    color: var(--so-text-dark); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    transition: background .2s, color .2s;
}
.so-faq-question:hover { background: var(--so-cream); }
.so-faq-question.active { background: var(--so-navy); color: var(--so-gold); }
.so-faq-question.active i { transform: rotate(180deg); color: var(--so-gold); }
.so-faq-question i { flex-shrink: 0; transition: transform .3s; color: var(--so-text-muted); }
.so-faq-answer { display: none; padding: 0 1.25rem 1rem; background: #fff; }
.so-faq-answer.open { display: block; }
.so-faq-answer p { color: var(--so-text-muted); font-size: .92rem; line-height: 1.7; margin: .75rem 0 0; }

.so-faq-cta {
    text-align: center; background: var(--so-navy);
    border-radius: var(--so-radius-lg); padding: 3rem;
    margin-top: 3rem;
}
.so-faq-cta h3 { color: var(--so-gold); font-family: var(--so-font-heading); font-size: 1.6rem; margin-bottom: .5rem; }
.so-faq-cta p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.so-faq-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- LEGAL PAGES ---- */
.so-legal-page .so-container { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .so-legal-page .so-container { grid-template-columns: 1fr; } }

.so-legal-toc {
    position: sticky; top: 6rem;
    background: var(--so-cream); border-radius: var(--so-radius-lg);
    padding: 1.5rem; border: 1px solid var(--so-border);
}
.so-legal-toc h3 { font-family: var(--so-font-heading); color: var(--so-navy); font-size: 1rem; margin-bottom: 1rem; }
.so-legal-toc ol { padding-left: 1.2rem; margin: 0; }
.so-legal-toc li { margin-bottom: .4rem; }
.so-legal-toc a { color: var(--so-text-muted); font-size: .85rem; text-decoration: none; transition: color .2s; }
.so-legal-toc a:hover { color: var(--so-gold); }

.so-legal-content h2 {
    font-family: var(--so-font-heading); color: var(--so-navy);
    font-size: 1.35rem; margin: 2rem 0 .75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--so-border);
}
.so-legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.so-legal-content p, .so-legal-content li { color: var(--so-text-muted); line-height: 1.75; font-size: .95rem; }
.so-legal-content ul, .so-legal-content ol { padding-left: 1.5rem; margin: .75rem 0; }
.so-legal-content a { color: var(--so-navy); font-weight: 600; }

/* ---- SIDEBAR SEARCH ---- */
.so-sidebar-search { display: flex; gap: .4rem; }
.so-sidebar-search input {
    flex: 1; border: 1.5px solid var(--so-border); border-radius: var(--so-radius);
    padding: .5rem .75rem; font-size: .88rem;
}
.so-sidebar-search button {
    background: var(--so-navy); color: var(--so-gold);
    border: none; border-radius: var(--so-radius);
    padding: .5rem .9rem; cursor: pointer;
}

/* ---- SECTION TITLE STANDALONE ---- */
.so-section-title {
    font-family: var(--so-font-heading);
    color: var(--so-navy);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ---- SCROLL TOP ENHANCEMENTS ---- */
.so-scroll-top { display: flex; align-items: center; justify-content: center; }

/* ---- RESPONSIVE FIXES ---- */
@media (max-width: 600px) {
    .so-product-page-grid { grid-template-columns: 1fr !important; }
    .so-product-features-strip { grid-template-columns: 1fr 1fr; }
    .so-faq-cta { padding: 2rem 1rem; }
    .so-page-hero { padding: 3rem 0 2rem; }
}

/* ---- HIDDEN FAQ GROUP (filtered) ---- */
.so-faq-group.hidden { display: none; }
.so-faq-item.hidden { display: none; }


/* =========================================================
   DIGIGLOBO v2.1 — HEADER, MOBILE MENU & FOOTER OVERHAUL
   Developer: Ahmad Saleem | +92 346 4292408
   ========================================================= */

/* ---- TOPBAR WHATSAPP LINK ---- */
.so-topbar-wa {
    display: flex; align-items: center; gap: 5px;
    color: #25d366 !important;
    font-weight: 600; font-size: 11.5px;
    text-decoration: none;
    border: 1px solid rgba(37,211,102,.35);
    border-radius: 50px;
    padding: 2px 10px;
    transition: background .2s;
}
.so-topbar-wa:hover { background: rgba(37,211,102,.1); }
.so-topbar-wa i { font-size: 13px; }
@media (max-width: 600px) { .so-topbar-wa { display: none; } }

/* ============================================================
   HAMBURGER BUTTON — COMPLETE REWRITE
   Visible ONLY on mobile ≤900px.
   Three lines animate into an X when menu opens.
   ============================================================ */
.so-mobile-menu-toggle {
    display: none;          /* hidden on desktop — shown in @media below */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 8px;
    background: transparent;
    border: 1.5px solid var(--so-border);
    cursor: pointer;
    padding: 0;
    gap: 0;
    position: relative;
    transition: background .2s, border-color .2s;
    flex-shrink: 0;
}
.so-mobile-menu-toggle:hover { background: var(--so-cream); border-color: var(--so-gold); }

/* The three lines */
.so-hb-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--so-navy);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform .3s ease, opacity .2s ease, top .3s ease, background .2s;
}
.so-hb-top { top: 14px; }
.so-hb-mid { top: 21px; }
.so-hb-bot { top: 28px; }

/* X state when active */
.so-mobile-menu-toggle.active .so-hb-top {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--so-oxblood);
}
.so-mobile-menu-toggle.active .so-hb-mid {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}
.so-mobile-menu-toggle.active .so-hb-bot {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
    background: var(--so-oxblood);
}
.so-mobile-menu-toggle.active { background: var(--so-cream); border-color: var(--so-oxblood); }

/* Show hamburger on mobile */
@media (max-width: 900px) {
    .so-mobile-menu-toggle { display: flex !important; }
}

/* ============================================================
   MOBILE DRAWER — COMPLETE REWRITE
   Slides in from LEFT (feels more natural on phones).
   ============================================================ */
.so-mobile-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(12,19,34,.65);
    backdrop-filter: blur(3px);
    z-index: 9990;
    opacity: 0;
    transition: opacity .3s ease;
}
.so-mobile-overlay.active {
    display: block;
    opacity: 1;
}

.so-mobile-drawer {
    position: fixed;
    top: 0; left: -320px;
    width: 300px;
    max-width: 88vw;
    height: 100%;
    background: var(--so-white);
    z-index: 9995;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 40px rgba(0,0,0,.25);
}
.so-mobile-drawer.active { left: 0; }

/* Drawer Header */
.so-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--so-border);
    background: var(--so-navy);
    flex-shrink: 0;
}
.so-mobile-drawer-head .custom-logo { height: 40px; width: auto; max-width: 130px; object-fit: contain; }
.so-mobile-drawer-logo { display: flex; align-items: center; gap: 8px; color: var(--so-gold); font-weight: 700; font-size: 1rem; }

.so-mobile-drawer-close {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: rgba(255,255,255,.8); font-size: 1rem;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}
.so-mobile-drawer-close:hover { background: var(--so-oxblood); color: #fff; border-color: var(--so-oxblood); }

/* WhatsApp bar inside drawer */
.so-drawer-wa-bar {
    display: flex; align-items: center; gap: .6rem;
    background: #25d366;
    color: #fff !important;
    padding: .7rem 1.2rem;
    font-size: .85rem; font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
}
.so-drawer-wa-bar i { font-size: 1.1rem; }
.so-drawer-wa-arrow { margin-left: auto; font-size: .75rem; }
.so-drawer-wa-bar:hover { background: #1ebe5c; color: #fff; }

/* Mobile Nav Links */
.so-mobile-drawer-nav { flex: 1; padding: .5rem 0; }
.so-mobile-drawer-nav .mobile-menu { list-style: none; padding: 0; margin: 0; }
.so-mobile-drawer-nav .mobile-menu li { border-bottom: 1px solid var(--so-border); }
.so-mobile-drawer-nav .mobile-menu > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 1.4rem;
    font-size: .92rem; font-weight: 600;
    color: var(--so-text-dark);
    text-transform: uppercase; letter-spacing: .06em;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.so-mobile-drawer-nav .mobile-menu > li > a:hover,
.so-mobile-drawer-nav .mobile-menu .current-menu-item > a {
    background: var(--so-cream); color: var(--so-navy);
    border-left: 3px solid var(--so-gold);
}
/* Sub-menu in mobile drawer */
.so-mobile-drawer-nav .mobile-menu .sub-menu { display: none; background: var(--so-cream); }
.so-mobile-drawer-nav .mobile-menu .sub-menu li a { padding: .65rem 1.4rem .65rem 2.2rem; font-size: .85rem; font-weight: 500; text-transform: none; letter-spacing: 0; }
.so-mobile-drawer-nav .mobile-menu li.menu-item-has-children > a::after { content: '\f107'; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* Action Buttons inside drawer */
.so-mobile-drawer-actions {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .5rem; padding: 1rem 1.2rem;
    border-top: 1px solid var(--so-border);
    flex-shrink: 0;
}
.so-drawer-action-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .3rem; padding: .75rem;
    background: var(--so-cream); border-radius: 8px;
    text-decoration: none; color: var(--so-navy);
    font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
    transition: background .2s, color .2s;
}
.so-drawer-action-btn i { font-size: 1.1rem; color: var(--so-gold); }
.so-drawer-action-btn:hover { background: var(--so-navy); color: var(--so-gold); }
.so-drawer-action-btn:hover i { color: var(--so-gold-light); }

/* Social row in drawer */
.so-mobile-drawer-social {
    display: flex; justify-content: center; gap: 1rem;
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--so-border);
    flex-shrink: 0;
}
.so-mobile-drawer-social a {
    width: 38px; height: 38px;
    background: var(--so-navy); color: var(--so-gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .9rem; text-decoration: none;
    transition: background .2s;
}
.so-mobile-drawer-social a:hover { background: var(--so-gold); color: var(--so-navy); }

/* Body scroll lock when drawer open */
body.so-mobile-menu-active { overflow: hidden; }

/* HIDE DRAWER on desktop */
@media (min-width: 901px) {
    .so-mobile-drawer, .so-mobile-overlay, .so-mobile-menu-toggle { display: none !important; }
}

/* ============================================================
   LOGO DISPLAY FIXES
   ============================================================ */
.so-logo a { display: block; line-height: 0; }
.so-logo .custom-logo {
    height: 54px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.so-logo img { height: 54px; width: auto; object-fit: contain; }

/* On very small phones, shrink logo a touch */
@media (max-width: 400px) {
    .so-logo .custom-logo, .so-logo img { height: 42px; }
}

/* ============================================================
   FOOTER — COMPLETE REDESIGN
   ============================================================ */

/* Trust strip */
.so-trust-strip {
    background: var(--so-navy-light);
    border-top: 1px solid rgba(201,160,79,.2);
    border-bottom: 1px solid rgba(201,160,79,.1);
    padding: 1.25rem 0;
}
.so-trust-inner {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 1.5rem 2.5rem;
}
.so-trust-item {
    display: flex; align-items: center; gap: .55rem;
    color: rgba(255,255,255,.7);
    font-size: .75rem; font-weight: 600;
    letter-spacing: .8px; text-transform: uppercase;
    font-family: var(--so-font-accent);
}
.so-trust-item i { color: var(--so-gold); font-size: 1rem; }
.so-trust-item small { display: block; font-size: .65rem; font-weight: 400; color: rgba(255,255,255,.45); letter-spacing: .3px; text-transform: none; }
.so-trust-cards { display: flex; gap: .6rem; align-items: center; }
.so-trust-cards i { font-size: 1.6rem; color: rgba(255,255,255,.5); transition: color .2s; }
.so-trust-cards i:hover { color: var(--so-gold-light); }

/* Main footer */
.so-footer-main {
    background: var(--so-navy);
    color: rgba(255,255,255,.75);
    padding-top: 4rem;
}

/* Footer grid — 5 columns on desktop, stack on mobile */
.so-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 1200px) { .so-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
@media (max-width: 960px)  { .so-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 600px)  {
    .so-footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .so-footer-col .footer-menu { align-items: center; }
    .so-footer-contact li { justify-content: center; }
    .so-social-icons { justify-content: center; }
    .so-newsletter-form { margin: 0 auto; }
    .so-footer-whatsapp { align-items: center; }
}

/* Brand column on wide layout spans more */
@media (max-width: 1200px) { .so-footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; } }
@media (max-width: 600px)  { .so-footer-brand { grid-template-columns: 1fr; text-align: center; } }

.so-footer-col h4 {
    color: var(--so-gold);
    font-family: var(--so-font-accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(201,160,79,.2);
}

/* Footer logo */
.so-logo-text-footer {
    display: block;
    font-family: var(--so-font-heading);
    font-size: 1.6rem;
    color: var(--so-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: .75rem;
}
.so-footer-brand .custom-logo, .so-footer-brand img.custom-logo {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: .75rem;
    /* Invert if logo is dark on dark bg (remove if logo has transparent bg) */
    filter: brightness(0) invert(1);
    opacity: .85;
}
.so-footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 1rem; }

/* Footer menus */
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: .45rem; }
.footer-menu a {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: .4rem;
    transition: color .2s, padding-left .2s;
}
.footer-menu a::before { content: '›'; color: var(--so-gold); opacity: 0; transition: opacity .2s; font-size: 1rem; }
.footer-menu a:hover { color: var(--so-gold-light); padding-left: 6px; }
.footer-menu a:hover::before { opacity: 1; }

/* Footer contact list */
.so-footer-contact { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.so-footer-contact li {
    display: flex; align-items: flex-start; gap: .65rem;
    font-size: .85rem; color: rgba(255,255,255,.55);
    margin-bottom: .6rem; line-height: 1.5;
}
.so-footer-contact i { color: var(--so-gold); font-size: .85rem; margin-top: 2px; flex-shrink: 0; }
.so-footer-contact a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.so-footer-contact a:hover { color: var(--so-gold); }

/* Social icons */
.so-social-icons { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.so-social-icons a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: .85rem;
    text-decoration: none; transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.so-social-icons a:hover { background: var(--so-gold); color: var(--so-navy); border-color: var(--so-gold); transform: translateY(-3px); }

/* Newsletter form */
.so-newsletter-title { margin-top: 1.5rem !important; }
.so-newsletter-text { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: .75rem; }
.so-newsletter-form {
    display: flex; max-width: 280px;
    border: 1px solid rgba(201,160,79,.3);
    border-radius: 50px; overflow: hidden;
    background: rgba(255,255,255,.05);
}
.so-newsletter-form input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: .65rem 1rem; color: #fff; font-size: .82rem;
    font-family: var(--so-font-body);
}
.so-newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.so-newsletter-form button {
    background: var(--so-gold); color: var(--so-navy);
    border: none; padding: .65rem 1rem; cursor: pointer;
    font-size: .9rem; transition: background .2s;
    flex-shrink: 0;
}
.so-newsletter-form button:hover { background: var(--so-gold-light); }

/* Footer bottom bar */
.so-footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.so-footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .75rem;
}
.so-footer-bottom p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.4); }
.so-footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.so-footer-legal a { font-size: .75rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.so-footer-legal a:hover { color: var(--so-gold); }

/* Developer credit */
.so-footer-credit {
    font-size: .72rem; color: rgba(255,255,255,.3);
    text-align: right; line-height: 1.5;
}
.so-footer-credit strong { color: var(--so-gold); }
.so-footer-credit a { color: #25d366; text-decoration: none; font-size: .72rem; }
@media (max-width: 600px) {
    .so-footer-bottom-inner { flex-direction: column; text-align: center; }
    .so-footer-credit { text-align: center; }
    .so-footer-legal { justify-content: center; }
}

/* WhatsApp footer CTA button */
.so-footer-whatsapp {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(37,211,102,.15);
    border: 1.5px solid #25d366;
    color: #25d366 !important;
    padding: .55rem 1.1rem;
    border-radius: 50px;
    font-weight: 700; font-size: .82rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: background .2s, transform .2s;
    flex-direction: column; align-items: flex-start;
}
.so-footer-whatsapp i { font-size: 1rem; }
.so-footer-whatsapp span { font-size: .78rem; font-weight: 400; opacity: .8; }
.so-footer-whatsapp:hover { background: #25d366; color: #fff !important; transform: translateY(-2px); }

/* Scroll to top */
.so-scroll-top {
    position: fixed; bottom: 6rem; right: 1.5rem; z-index: 500;
    width: 42px; height: 42px;
    background: var(--so-navy); color: var(--so-gold);
    border: 1px solid rgba(201,160,79,.3);
    border-radius: 50%; display: none; align-items: center; justify-content: center;
    cursor: pointer; font-size: .85rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: background .2s, transform .2s;
}
.so-scroll-top.visible { display: flex; }
.so-scroll-top:hover { background: var(--so-gold); color: var(--so-navy); transform: translateY(-3px); }


/* =========================================================
   DIGIGLOBO v2.1 — ADDITIONAL FIXES
   ========================================================= */

/* ---- STICKY HEADER SCROLL SHADOW ---- */
.so-main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.10);
}

/* ---- SEARCH PANEL ---- */
.so-search-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    background: var(--so-cream);
    border-top: 1px solid transparent;
}
.so-search-panel.open {
    max-height: 120px;
    border-top-color: var(--so-border);
    padding: 1rem 0;
}
.so-search-panel form { display: flex; gap: .5rem; }
.so-search-panel input[type="search"] {
    flex: 1;
    border: 1.5px solid var(--so-border);
    border-radius: var(--so-radius);
    padding: .6rem 1rem;
    font-family: var(--so-font-body);
    font-size: .95rem;
}
.so-search-panel input[type="search"]:focus { outline: none; border-color: var(--so-gold); }
.so-search-panel button[type="submit"] {
    background: var(--so-navy);
    color: var(--so-gold);
    border: none;
    border-radius: var(--so-radius);
    padding: .6rem 1.2rem;
    cursor: pointer;
    font-size: .9rem;
    transition: background .2s;
}
.so-search-panel button[type="submit"]:hover { background: var(--so-gold); color: var(--so-navy); }

/* ---- FOOTER WHATSAPP BUTTON (refined) ---- */
.so-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(37,211,102,.12);
    border: 1.5px solid rgba(37,211,102,.5);
    color: #4ad679 !important;
    padding: .65rem 1.15rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    margin-bottom: 1.1rem;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
    flex-direction: row;
}
.so-footer-whatsapp i { font-size: 1.15rem; }
.so-fw-label { font-size: .82rem; font-weight: 700; }
.so-fw-number { font-size: .72rem; font-weight: 400; opacity: .8; margin-left: .25rem; }
.so-footer-whatsapp:hover {
    background: #25d366;
    color: #fff !important;
    border-color: #25d366;
    transform: translateY(-2px);
}

/* ---- FOOTER BRAND LOGO ---- */
.so-footer-brand .custom-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 1rem;
    /* Logo is gold on black — show as-is on dark footer bg */
    filter: none;
    opacity: 1;
}

/* ---- FOOTER BOTTOM CREDIT — no phone number ---- */
.so-footer-credit {
    font-size: .72rem;
    color: rgba(255,255,255,.3);
    line-height: 1.5;
}
.so-footer-credit strong { color: var(--so-gold-light); }
/* Ensure Ahmad's dev number is NEVER shown in footer contact column */
.so-footer-contact .so-dev-only { display: none !important; }

/* ---- FOOTER COPY ---- */
.so-footer-copy { margin: 0; font-size: .78rem; color: rgba(255,255,255,.4); }
.so-footer-copy strong { color: rgba(255,255,255,.65); }

/* ---- HAMBURGER on mobile — make sure visible ---- */
@media (max-width: 900px) {
    .so-mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    /* Hide desktop nav on mobile */
    .so-main-nav { display: none !important; }
    /* Also hide topbar messages (too crowded) */
    .so-topbar-messages { display: none; }
}

/* On desktop, always hide hamburger */
@media (min-width: 901px) {
    .so-mobile-menu-toggle { display: none !important; }
    .so-mobile-drawer, .so-mobile-overlay { display: none !important; }
}

/* ---- MOBILE OVERLAY display fix ---- */
.so-mobile-overlay { display: none; }
.so-mobile-overlay.active { display: block; }

/* ---- MOBILE HEADER layout on phone ---- */
@media (max-width: 900px) {
    .so-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        gap: 0;
    }
    .so-logo { flex: 1; }
    .so-header-icons {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
    }
    /* Hide wishlist & account on very small screens to give room */
    @media (max-width: 380px) {
        .so-wishlist-icon { display: none; }
    }
}

/* ---- TOPBAR — mobile fixes ---- */
@media (max-width: 900px) {
    .so-topbar-inner {
        justify-content: center;
        flex-direction: row;
        gap: 1rem;
    }
    .so-topbar-phone .so-topbar-phone-text { display: none; }
}
@media (max-width: 480px) {
    .so-topbar { font-size: 10px; padding: 6px 0; }
    .so-topbar-wa { display: none; }
}

/* ---- FOOTER responsive — phone ---- */
@media (max-width: 600px) {
    .so-trust-inner { gap: .75rem 1rem; }
    .so-trust-item { flex-direction: column; text-align: center; gap: .2rem; }
    .so-footer-grid { grid-template-columns: 1fr !important; gap: 1.75rem; }
    .so-footer-brand { text-align: center; }
    .so-footer-brand .custom-logo { margin: 0 auto 1rem; }
    .so-footer-brand .so-footer-whatsapp { margin: 0 auto 1rem; }
    .so-social-icons { justify-content: center; }
    .so-footer-contact li { justify-content: center; }
    .footer-menu { text-align: center; }
    .footer-menu a::before { display: none; }
    .so-newsletter-form { max-width: 100%; }
    .so-footer-bottom-inner { flex-direction: column; text-align: center; gap: .6rem; }
    .so-footer-legal { justify-content: center; flex-wrap: wrap; gap: .5rem 1rem; }
    .so-footer-credit { text-align: center; }
}

/* ---- WHATSAPP FLOAT — start hidden, JS fades it in ---- */
.so-whatsapp-float {
    opacity: 0;
    transform: scale(0.8);
}

/* ---- Admin Login — ensure Google Fonts load fast ---- */
