/*
  BRIGHT SHOP STOREFRONT CSS SOURCE OF TRUTH

  Edit this file first:
  packages/bright_oscar/src/oscar/static/oscar/css/bright-unification.css

  Before changing user-facing CSS:
  1. Run: python manage.py findstatic oscar/css/bright-unification.css --verbosity 2
  2. Check browser DevTools Network load order
  3. Inspect computed styles on the actual element
  4. Patch the winning selector/state only
  5. Run collectstatic for deployment

  Do not edit collected staticfiles directly.
*/

/*
  SECTION INDEX

  1. Core layout + typography
  2. Product listing / product card foundations
  3. Header / primary navigation
  4. Storefront subnav + dropdown system
  5. Homepage hero + rails
  6. Basket + checkout
  7. Customer account pages
  8. Responsive storefront overrides

  Notes:
  - Oscar storefront and customer-account pages use this file.
  - Member/user panel pages use a separate stylesheet:
    generalzone/static/userpanel/css/theme.css
  - Audit the winning selector in DevTools before changing any repeated rule.
*/

/* ================================
   1. CORE LAYOUT + TYPOGRAPHY
   ================================ */
/* Bright Shop global typography system */
:root {
    --bs-font-body: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    --bs-font-title: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
    --bs-font-size-body: 0.95rem;
    --bs-font-size-small: 0.86rem;
    --bs-font-size-title: clamp(1.9rem, 2.4vw, 2.45rem);
    --bs-font-size-subtitle: clamp(1.08rem, 1.35vw, 1.35rem);
    --bs-font-size-h1: clamp(1.9rem, 2.4vw, 2.45rem);
    --bs-font-size-h2: clamp(1.5rem, 1.85vw, 1.95rem);
    --bs-font-size-h3: clamp(1.18rem, 1.45vw, 1.42rem);
    --bs-font-size-h4: clamp(1.02rem, 1.15vw, 1.12rem);
    --bs-font-size-nav: 0.91rem;
}

html,
body {
    font-family: var(--bs-font-body);
    font-size: var(--bs-font-size-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-header h1,
.sub-header h2,
.sub-header h3,
.section-title,
.card-title,
.modal-title {
    font-family: var(--bs-font-title);
    letter-spacing: 0.01em;
    line-height: 1.25;
}

h1,
.page-header h1,
.checkout-headline h1,
.card-body > h1,
.card-body > h1.h3 {
    font-size: var(--bs-font-size-h1);
    font-weight: 700;
}

h2,
.sub-header h2,
.section-title {
    font-size: var(--bs-font-size-h2);
    font-weight: 650;
}

h3,
.sub-header h3,
.card-title,
.modal-title {
    font-size: var(--bs-font-size-h3);
    font-weight: 600;
}

p,
small,
.text-muted,
.table,
.list-group-item,
.dropdown-item {
    font-family: var(--bs-font-body);
}

.nav,
.navbar,
.nav-link,
.dropdown-menu,
.dropdown-item,
.menu,
.menu a,
.header .navbar-nav .nav-link,
.header a {
    font-family: var(--bs-font-body);
    font-size: var(--bs-font-size-nav);
    font-weight: 500;
}
/* Submenu typography enforcement */
.shop-global-nav .dropdown-toggle,
.shop-global-nav .dropdown-menu,
.shop-global-nav .dropdown-menu .dropdown-item,
.shop-global-nav .dropdown-menu .dropdown-header,
.navbar .dropdown-menu .dropdown-item,
.navbar .dropdown-menu .dropdown-header,
.dropdown-submenu .dropdown-item,
.dropdown-menu .dropdown-item {
    font-family: var(--bs-font-body) !important;
    font-size: var(--bs-font-size-nav) !important;
    font-weight: 500;
    line-height: 1.4;
}

.shop-global-nav .dropdown-menu .dropdown-item,
.navbar .dropdown-menu .dropdown-item,
.dropdown-menu .dropdown-item {
    letter-spacing: 0.005em;
}

.btn,
button,
input,
select,
textarea,
.form-control,
.form-select,
.form-label,
label,
.input-group-text {
    font-family: var(--bs-font-body);
}

.form-control,
.form-select,
input,
select,
textarea {
    font-size: 0.92rem;
}

.alert,
.notification,
.toast,
.messages,
.alert p,
.alert li {
    font-family: var(--bs-font-body);
    font-size: 0.9rem;
}

/* CMS page heading rhythm */
.card-body > p.text-muted:first-of-type,
.cms-page-body > p:first-child {
    font-size: var(--bs-font-size-subtitle);
    line-height: 1.55;
}

.cms-page-body h2 {
    font-size: var(--bs-font-size-h2);
    margin-top: 1.15rem;
    margin-bottom: 0.55rem;
}

.cms-page-body h3 {
    font-size: var(--bs-font-size-h3);
    margin-top: 0.95rem;
    margin-bottom: 0.45rem;
}

.cms-page-body h4 {
    font-size: var(--bs-font-size-h4);
    margin-top: 0.8rem;
    margin-bottom: 0.35rem;
}

.cms-page-body p,
.cms-page-body li {
    font-size: 1.02rem;
    line-height: 1.6;
}
@media (max-width: 575.98px) {
    html,
    body {
        font-size: 0.92rem;
    }

    .nav-link,
    .dropdown-item,
    .btn,
    .form-control,
    .form-select,
    .alert {
        font-size: 0.88rem;
    }
}

/* ================================
   2. PRODUCT LISTING / PRODUCT CARD FOUNDATIONS
   ================================ */
/* Shared Bright Shop unification styles (safe, presentation-only) */

.listing-shell,
.homepage-catalogue-shell {
    margin-bottom: 1.25rem;
}

.listing-toolbar,
.homepage-catalogue-header {
    border: 1px solid #dde6f0;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.9rem;
}

.listing-grid,
.homepage-catalogue-grid {
    margin: 0 -0.35rem;
}

.listing-grid > li,
.homepage-catalogue-grid > li {
    padding: 0 0.35rem;
    margin-bottom: 0.7rem;
}

.product_pod.product-pod-convert {
    border: 1px solid #dce5ef;
    border-radius: 12px;
    background: #fff;
    padding: 0.6rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    min-height: 100%;
}

.product_pod.product-pod-convert:hover {
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.11);
    border-color: #c7d6e6;
}

.product-pod-convert .image_container {
    border-radius: 10px;
    background: #f8fbff;
    border: 1px solid #e1e9f2;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
}

.product-pod-convert .product-image-link {
    display: flex;
    width: 100%;
    min-height: 160px;
    align-items: center;
    justify-content: center;
}

.product-pod-convert .product-image-thumb {
    max-width: 100%;
    max-height: 156px;
    object-fit: contain;
}

.product-pod-convert .product-title-link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7rem;
    line-height: 1.35;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.product-pod-convert .product-title-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.product-pod-convert .product-meta-row {
    font-size: 0.77rem;
    color: #64748b;
    margin-bottom: 0.2rem;
    min-height: 1rem;
}

.product-pod-convert .meta-sep {
    margin: 0 0.3rem;
    color: #94a3b8;
}

.product-pod-convert .price-stack-card .price-final-card {
    font-size: 1.14rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 0.1rem;
}

.product-pod-convert .price-stack-card .price-tax-note,
.product-pod-convert .price-stack-card .price-mrp,
.product-pod-convert .price-stack-card .price-saving,
.product-pod-convert .price-stack-card .availability-inline {
    font-size: 0.76rem;
}

.checkout-money-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 0.94rem;
}

.checkout-money-row:last-child {
    margin-bottom: 0;
}

.checkout-money-row.total {
    border-top: 1px solid #dbe3ef;
    padding-top: 8px;
    margin-top: 6px;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .listing-toolbar,
    .homepage-catalogue-header,
    .basket-items,
    /* ================================
       6. BASKET + CHECKOUT
       ================================ */
    .checkout-stage-card,
    .checkout-preview-card,
    .premium-section-card,
    .premium-info-block,
    .premium-buybox {
        padding: 0.65rem;
    }

    .basket-actions-row .btn,
    .checkout-cta-primary,
    .checkout-placeorder-btn,
    .basket-cta-primary {
        margin-top: 0.45rem;
    }

    .sub-header h2,
    .sub-header h3,
    .page-header h1,
    .checkout-headline h1 {
        margin-bottom: 0.45rem;
    }

    .checkout-step-list .nav-item {
        min-width: 170px;
        flex: 0 0 auto;
    }
}
/* Homepage phase 2 storefront polish */
.home-phase2-shell {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.home-hero-shell {
    background: linear-gradient(120deg, #0f172a 0%, #1d4ed8 58%, #38bdf8 100%);
    border-radius: 14px;
    color: #fff;
    padding: 1.15rem;
    margin: 0.95rem auto 1rem;
}

.home-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    opacity: 0.9;
    font-weight: 700;
}

.home-hero-cta .btn {
    margin-right: 0.5rem;
    margin-top: 0.42rem;
}

.home-shortcuts {
    border: 1px solid #d9e2ee;
    border-radius: 12px;
    background: #fff;
    padding: 0.85rem;
    margin-bottom: 1rem;
}

.home-shortcuts-title {
    font-size: 0.94rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: #0f172a;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.home-category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #dbe6f3;
    border-radius: 10px;
    padding: 0.45rem;
    text-align: center;
    background: #f8fbff;
    text-decoration: none;
}

.home-category-tile:hover {
    text-decoration: none;
    background: #e8f2ff;
    border-color: #c7dcf5;
}

.home-category-image {
    width: 100%;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 0.4rem;
    border: 1px solid #dbe6f3;
    background: #fff;
}

.home-category-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    background: #e2ecfa;
}

.home-category-label {
    font-size: 0.79rem;
    color: #0f172a;
    line-height: 1.2;
    font-weight: 600;
}

.home-campaign-card {
    border: 1px solid #dbe6f3;
    border-radius: 12px;
    background: #fff;
    padding: 0.9rem;
    margin-bottom: 0.9rem;
    height: 100%;
}

.home-campaign-card img {
    border-radius: 10px;
}

.home-trust-strip {
    border: 1px solid #dbe6f3;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.74rem 0.9rem;
    margin-bottom: 1rem;
}

.home-trust-strip-compact {
    background: #f2f7ff;
}

.home-trust-item {
    font-size: 0.82rem;
    color: #334155;
    margin-bottom: 0.3rem;
}

.home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.home-section-header h2 {
    font-size: 1.05rem;
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

.home-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.home-brand-tile {
    border: 1px solid #dbe6f3;
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #0f172a;
    background: #f8fbff;
    text-align: center;
    text-decoration: none;
}

.home-brand-tile:hover {
    text-decoration: none;
    background: #e8f2ff;
    color: #0a58ca;
}

.homepage-rail-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.homepage-rail-grid {
    flex-wrap: nowrap;
    min-width: max-content;
}

.homepage-rail-grid > li {
    width: 168px;
    flex: 0 0 168px;
    max-width: 168px;
}

.home-footer-note {
    background: #4b5563;
    color: #fff;
    font-size: 0.82rem;
    text-align: center;
    padding: 0.75rem;
    margin-top: 1.2rem;
}

@media (min-width: 576px) {
    .home-category-grid,
    .home-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .home-category-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .home-brand-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .homepage-rail-grid {
        flex-wrap: wrap;
        min-width: 0;
    }

    .homepage-rail-grid > li {
        width: auto;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 991px) {
    .home-hero-shell {
        padding: 0.82rem;
    }

    .home-shortcuts,
    .home-trust-strip,
    .home-campaign-card,
    .homepage-catalogue-header {
        padding: 0.72rem;
    }

    .home-section-header h2,
    .homepage-catalogue-header h2,
    .homepage-catalogue-header .h5 {
        margin-bottom: 0.3rem;
    }
}

/* Product card consistency lock (card internals only) */
.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card__media {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-card__media img,
.store-card__image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.store-card__title {
    font-size: 14px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.store-card__meta {
    min-height: 18px;
}

.store-card__price {
    min-height: 40px;
}

.store-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.store-card__actions {
    margin-top: auto;
}

.store-card__actions button,
.store-card__button {
    width: 100%;
    height: 42px;
}

/* storefront-product-grid row mode is finalized at EOF conflict-resolution block */

/* FINAL vertical alignment lock for product cards */
.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMAGE */
.store-card__media {
    height: 180px;
}

/* TITLE */
.store-card__title {
    height: 40px;
}

/* META (pack / weight) */
.store-card__meta {
    height: 20px;
}

/* PRICE BLOCK */
.store-card__price {
    height: 80px;
}

/* STOCK */
.store-card__stock {
    height: 20px;
}

/* LOCK BODY FLOW */
.store-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* PUSH BUTTON DOWN */
.store-card__actions {
    margin-top: auto;
}

/* BUTTON CONSISTENCY */
.store-card__actions button {
    width: 100%;
    height: 42px;
}

/* CLEAN TEXT SPACING */
.store-card__price,
.store-card__meta,
.store-card__stock {
    line-height: 1.3;
}

/* REMOVE RANDOM SPACING */
.store-card__price,
.store-card__meta,
.store-card__stock,
.store-card__actions {
    margin-top: 0;
    margin-bottom: 0;
}

/* PRECISION ROW ALIGNMENT LOCK (CSS-only, no layout shell changes) */
.storefront-product-grid {
align-items: stretch;
}

.storefront-product-grid > * {
    height: 100%;
    min-width: 0;
}

.storefront-product-grid > * .store-card {
    height: 100%;
}

.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card__media {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-card__media img,
.store-card__image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.store-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    gap: 8px;
}

.store-card__body > * {
    margin-top: 0;
    margin-bottom: 0;
}

.store-card__title {
    line-height: 1.4;
    min-height: calc(1.4em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-card__meta {
    min-height: 20px;
}

.store-card__price {
    min-height: 96px;
}

.store-card__stock {
    min-height: 20px;
}

.store-card__price,
.store-card__meta,
.store-card__stock {
    line-height: 1.3;
}

.store-card__price p,
.store-card__stock p,
.store-card__price .availability,
.store-card__price .price,
.store-card__price .price_color {
    margin-top: 0;
    margin-bottom: 0;
}

.store-card__actions {
    margin-top: auto;
    padding-top: 12px;
}

.store-card__actions button,
.store-card__button {
    width: 100%;
    min-height: 44px;
}

/* FINAL storefront card cleanup: equal row stretch + bottom CTA baseline */
.storefront-product-grid {
align-items: stretch;
}

.storefront-product-grid > * {
    height: 100%;
}

.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    gap: 8px;
}

.store-card__body > * {
    margin-top: 0;
    margin-bottom: 0;
}

.store-card__media {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-card__media img,
.store-card__image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.store-card__title {
    line-height: 1.4;
    min-height: calc(1.4em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-card__brand,
.store-card__meta,
.store-card__stock {
    min-height: 20px;
}

.store-card__price {
    min-height: 110px;
}

.store-card__price,
.store-card__meta,
.store-card__stock {
    line-height: 1.3;
}

.store-card__actions {
    margin-top: auto;
    padding-top: 12px;
}

.store-card__actions button,
.store-card__button {
    width: 100%;
    min-height: 44px;
}

/* FINAL precision card baseline alignment (row-consistent CTA) */
.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card__body {
    display: grid;
    grid-template-rows:
        minmax(calc(1.4em * 2), auto)
        24px
        24px
        110px
        24px
        auto;
    row-gap: 8px;
    height: 100%;
}

.store-card__title {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.store-card__brand,
.store-card__meta,
.store-card__price,
.store-card__stock,
.store-card__actions {
    margin: 0;
}

.store-card__actions {
    display: flex;
    align-items: end;
}

.store-card__actions button,
.store-card__button {
    width: 100%;
    min-height: 44px;
}

/* AUTHORITATIVE FINAL CARD ROW TRACK ALIGNMENT */
.storefront-product-grid {
    align-items: stretch;
}

.storefront-product-grid > * {
    height: 100%;
}

.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card__body {
    display: grid;
    grid-template-rows:
        minmax(calc(1.4em * 2), auto)
        24px
        24px
        110px
        24px
        44px;
    row-gap: 8px;
    height: 100%;
}

.store-card__title {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.store-card__brand,
.store-card__meta,
.store-card__price,
.store-card__stock,
.store-card__actions {
    margin: 0;
}

.store-card__brand,
.store-card__meta,
.store-card__stock {
    min-height: 20px;
    display: flex;
    align-items: center;
}

.store-card__price {
    min-height: 110px;
    line-height: 1.3;
}

.store-card__price p,
.store-card__price .price,
.store-card__price .price_color,
.store-card__price .availability,
.store-card__stock p {
    margin: 0;
}

.store-card__actions {
    display: flex;
    align-items: end;
}

.store-card__actions button,
.store-card__button {
    width: 100%;
    min-height: 44px;
    height: 44px;
}

/* FINAL FIXED-SLOT CARD ALIGNMENT (authoritative) */
.storefront-product-grid {
    align-items: stretch;
}

.storefront-product-grid > * {
    height: 100%;
}

.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card__media {
    height: 180px;
}

.store-card__media img,
.store-card__image {
    max-height: 100%;
    object-fit: contain;
}

.store-card__body {
    display: grid;
    grid-template-rows:
        56px
        24px
        24px
        120px
        24px
        44px;
    row-gap: 8px;
    height: 100%;
}

.store-card__title {
    line-height: 1.4;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.store-card__brand,
.store-card__meta,
.store-card__price,
.store-card__stock,
.store-card__actions {
    margin: 0;
    min-width: 0;
}

.store-card__price {
    line-height: 1.3;
    overflow: hidden;
}

.store-card__price > * {
    margin: 0 0 6px 0;
}

.store-card__price > *:last-child {
    margin-bottom: 0;
}

.store-card__actions {
    display: flex;
    align-items: end;
}

.store-card__actions button,
.store-card__button {
    width: 100%;
    height: 44px;
}

/* FORENSIC FIX: active render path (product.html) deterministic card alignment */
.listing-grid,
.homepage-catalogue-grid,
.homepage-rail-grid,
.storefront-product-grid {
    align-items: stretch;
}

.listing-grid > li,
.homepage-catalogue-grid > li,
.homepage-rail-grid > li,
.storefront-product-grid > * {
    height: 100%;
}

.product_pod.product-pod-convert.store-card,
.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product_pod.product-pod-convert.store-card .store-card__body,
.store-card__body {
    display: grid;
    grid-template-rows:
        56px
        24px
        24px
        120px
        24px
        44px;
    row-gap: 8px;
    height: 100%;
}

.store-card__title {
    line-height: 1.4;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.store-card__title .product-title-link,
.store-card .product-title-link {
    color: inherit;
    text-decoration: none;
}

.store-card__brand,
.store-card__meta,
.store-card__price,
.store-card__stock,
.store-card__actions {
    margin: 0;
    min-width: 0;
}

.store-card__brand,
.store-card__meta,
.store-card__stock {
    display: flex;
    align-items: center;
}

.store-card__price {
    overflow: hidden;
    line-height: 1.3;
}

.store-card__price > * {
    margin: 0 0 6px 0;
}

.store-card__price > *:last-child {
    margin-bottom: 0;
}

.store-card__price p,
.store-card__price .price,
.store-card__price .price_color,
.store-card__price .availability,
.store-card__stock p {
    margin: 0;
}

.store-card__actions {
    display: flex;
    align-items: end;
}

.store-card__actions form,
.store-card__actions .btn-block {
    width: 100%;
}

.store-card__actions button,
.store-card__button,
.store-card__actions .btn {
    width: 100%;
    height: 44px;
    min-height: 44px;
}

.store-card__media {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-card__media img,
.store-card__image,
.store-card .product-image-thumb {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* FINAL AUTHORITATIVE 3-LINE TITLE SLOT CARD ALIGNMENT */
.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card__body {
    display: grid;
    grid-template-rows:
        72px
        28px
        28px
        120px
        28px
        48px;
    row-gap: 8px;
    height: 100%;
}

.store-card__title {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.store-card__brand,
.store-card__meta,
.store-card__price,
.store-card__stock,
.store-card__actions {
    margin: 0;
    min-width: 0;
}

.store-card__price > * {
    margin: 0 0 6px 0;
}

.store-card__price > *:last-child {
    margin-bottom: 0;
}

.store-card__actions {
    display: flex;
    align-items: end;
}

.store-card__actions button,
.store-card__button {
    width: 100%;
    min-height: 44px;
}

.storefront-product-grid {
    align-items: stretch;
}

.storefront-product-grid > * {
    height: 100%;
}

/* FORENSIC AUTHORITATIVE OVERRIDE: actual active DOM is product_pod.store-card */
.listing-grid,
.homepage-catalogue-grid,
.homepage-rail-grid,
.storefront-product-grid {
    align-items: stretch !important;
}

.listing-grid > li,
.homepage-catalogue-grid > li,
.homepage-rail-grid > li,
.storefront-product-grid > * {
    height: 100% !important;
}

.listing-grid > li > .product_pod.store-card,
.homepage-catalogue-grid > li > .product_pod.store-card,
.homepage-rail-grid > li > .product_pod.store-card,
.product_pod.store-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: visible !important;
    margin: 0 !important;
}

.product_pod.store-card > .store-card__body,
.storefront-product-grid .store-card > .store-card__body {
    display: grid !important;
    grid-template-rows:
        72px
        28px
        28px
        120px
        28px
        48px;
    row-gap: 8px;
    height: 100% !important;
}

.product_pod.store-card .store-card__title,
.storefront-product-grid .store-card .store-card__title {
    margin: 0 !important;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product_pod.store-card .store-card__brand,
.product_pod.store-card .store-card__meta,
.product_pod.store-card .store-card__price,
.product_pod.store-card .store-card__stock,
.product_pod.store-card .store-card__actions,
.storefront-product-grid .store-card .store-card__brand,
.storefront-product-grid .store-card .store-card__meta,
.storefront-product-grid .store-card .store-card__price,
.storefront-product-grid .store-card .store-card__stock,
.storefront-product-grid .store-card .store-card__actions {
    margin: 0 !important;
    min-width: 0;
}

.product_pod.store-card .store-card__brand,
.product_pod.store-card .store-card__meta,
.product_pod.store-card .store-card__stock,
.storefront-product-grid .store-card .store-card__brand,
.storefront-product-grid .store-card .store-card__meta,
.storefront-product-grid .store-card .store-card__stock {
    display: flex;
    align-items: center;
}

.product_pod.store-card .store-card__price,
.storefront-product-grid .store-card .store-card__price {
    line-height: 1.3;
    overflow: hidden;
}

.product_pod.store-card .store-card__price > *,
.storefront-product-grid .store-card .store-card__price > * {
    margin: 0 0 6px 0 !important;
}

.product_pod.store-card .store-card__price > *:last-child,
.storefront-product-grid .store-card .store-card__price > *:last-child {
    margin-bottom: 0 !important;
}

.product_pod.store-card .store-card__price p,
.product_pod.store-card .store-card__price div,
.product_pod.store-card .store-card__stock p,
.product_pod.store-card .store-card__stock div,
.storefront-product-grid .store-card .store-card__price p,
.storefront-product-grid .store-card .store-card__price div,
.storefront-product-grid .store-card .store-card__stock p,
.storefront-product-grid .store-card .store-card__stock div {
    margin: 0 !important;
}

.product_pod.store-card .store-card__actions,
.storefront-product-grid .store-card .store-card__actions {
    display: flex !important;
    align-items: end !important;
}

.product_pod.store-card .store-card__actions button,
.product_pod.store-card .store-card__button,
.product_pod.store-card .store-card__actions .btn,
.storefront-product-grid .store-card .store-card__actions button,
.storefront-product-grid .store-card .store-card__button,
.storefront-product-grid .store-card .store-card__actions .btn {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
}

/* FINAL ACTIVE-DOM CARD ALIGNMENT LOCK */
.listing-grid,
.homepage-catalogue-grid,
.homepage-rail-grid,
.storefront-product-grid {
    align-items: stretch;
}

.listing-grid > li,
.homepage-catalogue-grid > li,
.homepage-rail-grid > li,
.storefront-product-grid > * {
    height: 100%;
}

.product_pod.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
    margin: 0;
}

.product_pod.store-card > .store-card__body {
    display: grid;
    grid-template-rows:
        72px
        28px
        28px
        132px
        28px
        48px;
    row-gap: 8px;
    height: 100%;
}

.product_pod.store-card .store-card__title,
.product_pod.store-card .store-card__brand,
.product_pod.store-card .store-card__meta,
.product_pod.store-card .store-card__price,
.product_pod.store-card .store-card__stock,
.product_pod.store-card .store-card__actions {
    margin: 0;
    min-width: 0;
}

.product_pod.store-card .store-card__title {
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product_pod.store-card .store-card__price > *,
.product_pod.store-card .store-card__stock > * {
    margin: 0 0 6px 0;
}

.product_pod.store-card .store-card__price > *:last-child,
.product_pod.store-card .store-card__stock > *:last-child {
    margin-bottom: 0;
}

.product_pod.store-card .store-card__actions {
    display: flex;
    align-items: end;
}

.product_pod.store-card .store-card__actions form,
.product_pod.store-card .store-card__actions .btn,
.product_pod.store-card .store-card__actions .btn-block,
.product_pod.store-card .store-card__actions .store-card__button {
    width: 100%;
    margin: 0;
}

.product_pod.store-card .store-card__actions .btn,
.product_pod.store-card .store-card__actions .store-card__button {
    min-height: 44px;
}

.product_pod.store-card .product_price,
.product_pod.store-card .availability,
.product_pod.store-card .price_color {
    position: static;
    min-height: 0;
}

/* FINAL FLEX SLOT LOCK: button baseline alignment */
.product_pod.store-card > .store-card__body {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    gap: 8px !important;
    grid-template-rows: none !important;
}

/* TITLE */
.product_pod.store-card .store-card__title {
    height: 72px !important;
    overflow: hidden !important;
}

/* BRAND */
.product_pod.store-card .store-card__brand {
    height: 24px !important;
}

/* META */
.product_pod.store-card .store-card__meta {
    height: 24px !important;
}

/* PRICE BLOCK — CRITICAL FIX */
.product_pod.store-card .store-card__price {
    height: 140px !important;
    overflow: hidden !important;
}

/* STOCK */
.product_pod.store-card .store-card__stock {
    height: 24px !important;
}

/* PUSH BUTTON DOWN */
.product_pod.store-card .store-card__actions {
    margin-top: auto !important;
}

/* BUTTON SIZE */
.product_pod.store-card .store-card__actions .btn,
.product_pod.store-card .store-card__button {
    width: 100% !important;
    height: 44px !important;
}

/* CLEAN INTERNAL SPACING */
.product_pod.store-card .store-card__price * {
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* ENSURE CARD HEIGHT STRETCH */
.product_pod.store-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.storefront-product-grid > *,
.listing-grid > li {
    height: 100% !important;
}
/* =====================================================================
   Supplier-facing storefront pass: compact shop-first rhythm (frontend only)
   ===================================================================== */

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #0f172a;
}

/* Compact home header */
.home-shop-nav {
    border-bottom: 1px solid #dbe4ef;
    padding: 0.45rem 0.9rem;
}

.home-shop-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    color: #0f172a !important;
    font-size: 1.03rem;
}

.home-shop-brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.home-shop-nav .navbar-nav .nav-link {
    font-size: 0.93rem;
    font-weight: 600;
    color: #1f2937 !important;
    padding: 0.35rem 0.8rem;
}

.home-shop-nav .navbar-nav .nav-link:hover {
    color: #0b63ce !important;
}

.home-shop-actions {
    display: inline-flex;
    align-items: center;
}

.home-shop-action-link {
    color: #0f172a;
    font-size: 0.88rem;
    text-decoration: none;
    font-weight: 600;
}

.home-shop-action-link:hover {
    color: #0b63ce;
    text-decoration: none;
}

/* Shop-first homepage shell */
.home-phase2-shell {
    padding-top: 0.7rem;
    padding-bottom: 0.9rem;
}

.home-shop-shell {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.home-shop-sidebar {
    border: 1px solid #dce6f1;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.85rem;
    height: fit-content;
}

.home-shop-category-list {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.home-shop-category-link {
    display: block;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #d7e4f3;
}

.home-shop-category-link:hover {
    color: #0b63ce;
    text-decoration: none;
}

.home-shop-support {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.home-shop-support-item {
    background: #ffffff;
    border: 1px solid #deebf8;
    border-radius: 10px;
    padding: 0.45rem 0.55rem;
    display: grid;
    gap: 0.12rem;
}

.home-shop-support-item strong {
    font-size: 0.84rem;
    color: #0f172a;
}

.home-shop-support-item span {
    font-size: 0.77rem;
    color: #475569;
    line-height: 1.35;
}

.home-shop-browse-all {
    width: 100%;
    font-weight: 600;
    min-height: 40px;
}

.home-shop-main {
    min-width: 0;
}

.home-shop-main .homepage-catalogue-shell {
    margin-bottom: 0.95rem;
}

.home-shop-grid {
    margin: 0 -0.3rem;
}

.home-shop-grid > li {
    padding: 0 0.3rem;
    margin-bottom: 0.6rem;
}

/* Product card visual tightening only */
.product_pod.store-card {
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    background: #fff;
    padding: 0.55rem;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.05);
}

.product_pod.store-card .store-card__media {
    background: #f8fbff;
    border: 1px solid #e1e9f2;
    border-radius: 10px;
    padding: 0.35rem;
}

.product_pod.store-card .store-card__title {
    font-size: 0.92rem;
    letter-spacing: 0;
}

.product_pod.store-card .store-card__brand,
.product_pod.store-card .store-card__meta,
.product_pod.store-card .store-card__stock {
    font-size: 0.8rem;
    color: #475569;
}

.product_pod.store-card .store-card__price {
    font-size: 0.86rem;
}

.product_pod.store-card .store-card__actions .btn,
.product_pod.store-card .store-card__button {
    border-radius: 8px;
    font-size: 0.96rem;
    font-weight: 600;
}

/* Catalogue/shared Oscar header compacting */
#top_page.accounts {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0;
    min-height: 42px;
}

#top_page.accounts .nav-link {
    font-size: 0.84rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.header.container {
    padding-top: 0.45rem;
    padding-bottom: 0.35rem;
}

.brand-slot .brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0f172a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
}

.brand-slot .brand-link:hover {
    color: #0b63ce;
    text-decoration: none;
}

/* ================================
   3. HEADER / PRIMARY NAVIGATION
   ================================ */
.brand-logo-inline {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.shop-primary-nav {
    background: #111827 !important;
    border-radius: 10px;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    padding: 0.3rem 0.65rem;
}

.shop-primary-nav .shop-primary-links .nav-link {
    color: #e5e7eb !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
}

.shop-primary-nav .shop-primary-links .nav-link:hover {
    color: #ffffff !important;
}

/* Responsive safety */
@media (max-width: 991px) {
    .home-shop-shell {
        grid-template-columns: 1fr;
    }

    .home-shop-nav {
        padding: 0.4rem 0.65rem;
    }

    .home-shop-brand {
        font-size: 0.95rem;
    }

    .home-shop-brand-logo {
        width: 30px;
        height: 25px;
    }

    .home-shop-grid > li {
        margin-bottom: 0.55rem;
    }
}

@media (max-width: 576px) {
    .home-shop-nav .navbar-nav .nav-link {
        padding: 0.28rem 0.35rem;
        font-size: 0.86rem;
    }

    .home-shop-sidebar {
        padding: 0.7rem;
    }

    .home-shop-support-item span {
        font-size: 0.74rem;
    }
}
/* =====================================================================
   FINAL compact card spacing + per-row action baseline support
   ===================================================================== */

.product_pod.store-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.storefront-product-grid,
.listing-grid,
.homepage-catalogue-grid,
.homepage-rail-grid {
    align-items: stretch;
}

.storefront-product-grid > *,
.listing-grid > li,
.homepage-catalogue-grid > li,
.homepage-rail-grid > li {
    height: 100%;
}

.product_pod.store-card > .store-card__body {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    height: 100% !important;
    min-height: 0;
}

.product_pod.store-card .store-card__title {
    margin: 0 !important;
    font-size: 14px;
    line-height: 1.35;
    min-height: calc(1.35em * 3);
    max-height: calc(1.35em * 3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product_pod.store-card .store-card__title .product-title-link {
    line-height: inherit;
}

.product_pod.store-card .store-card__brand,
.product_pod.store-card .store-card__meta,
.product_pod.store-card .store-card__stock,
.product_pod.store-card .store-card__price,
.product_pod.store-card .store-card__price > *,
.product_pod.store-card .store-card__stock > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1.25;
}

.product_pod.store-card .store-card__brand,
.product_pod.store-card .store-card__meta {
    min-height: 20px;
}

.product_pod.store-card .store-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 0 !important;
    height: auto !important;
}

.product_pod.store-card .store-card__stock {
    display: flex;
    align-items: center;
    gap: 2px;
    min-height: 20px;
}

.product_pod.store-card .store-card__actions {
    margin-top: auto !important;
    padding-top: 6px;
    display: flex;
    align-items: flex-end;
}

.product_pod.store-card .store-card__actions form,
.product_pod.store-card .store-card__actions .btn,
.product_pod.store-card .store-card__button {
    width: 100% !important;
    margin: 0 !important;
}

.product_pod.store-card .store-card__actions .btn,
.product_pod.store-card .store-card__button {
    min-height: 42px;
    height: 42px;
}

.product_pod.store-card .store-card__action-form p {
    margin: 0 !important;
}

.product_pod.store-card .store-card__action-form input[type="number"] {
    display: none;
}

.product_pod.store-card .store-card__media {
    height: 180px;
}

.product_pod.store-card .store-card__media img,
.product_pod.store-card .store-card__image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}
/* =====================================================================
   FINAL per-row spacer baseline alignment (authoritative)
   ===================================================================== */
.product_pod.store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product_pod.store-card > .store-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 4px;
}

.product_pod.store-card .store-card__actions {
    margin-top: 0;
}

.product_pod.store-card .store-card__spacer {
    height: 0;
    flex: 0 0 auto;
}

.product_pod.store-card .store-card__actions .store-card__button,
.product_pod.store-card .store-card__actions .btn {
    width: 100%;
    min-height: 42px;
}

.product_pod.store-card .store-card__price,
.product_pod.store-card .store-card__stock,
.product_pod.store-card .store-card__meta,
.product_pod.store-card .store-card__brand {
    line-height: 1.25;
}

.product_pod.store-card .store-card__price > *,
.product_pod.store-card .store-card__stock > * {
    margin: 0 0 2px 0;
}

.product_pod.store-card .store-card__price > *:last-child,
.product_pod.store-card .store-card__stock > *:last-child {
    margin-bottom: 0;
}

/* =====================================================================
   Frontend typography standardization (Google Fonts sans only)
   ===================================================================== */
:root {
    --font-menu: "Google Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Google Sans Flex", "Google Sans", system-ui, sans-serif;
    --font-body: "Google Sans", "Google Sans", system-ui, sans-serif;
}

html,
body {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-header h1,
.home-section-header h2,
.homepage-catalogue-header h2,
.store-card__title,
.product-title-link,
.category-title,
.section-title {
    font-family: var(--font-heading);
}

nav,
.nav,
.navbar,
.navbar-nav,
.navbar-nav .nav-link,
.navbar-brand,
.shop-primary-nav,
.shop-primary-links .nav-link,
.accounts .nav-link,
.home-shop-nav .navbar-nav .nav-link,
.home-shop-action-link,
.home-category-chip,
.sidebar-panel .list-group-item,
.home-discovery-rail a {
    font-family: var(--font-menu);
}

body,
p,
li,
small,
label,
input,
select,
textarea,
button,
.btn,
.form-control,
.store-card__brand,
.store-card__meta,
.store-card__price,
.store-card__stock,
.price,
.price_color,
.availability,
.product_price,
.account-page,
.order-list,
.order-detail,
footer,
.footer,
.footer-links,
.footer small {
    font-family: var(--font-body);
}

.home-shop-nav .navbar-nav .nav-link,
.navbar-brand,
.accounts .nav-link,
.shop-primary-links .nav-link {
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.store-card__title {
    line-height: 1.28;
}

.store-card__title,
.store-card__meta,
.store-card__price,
.store-card__stock,
.store-card__actions .btn,
.store-card__button {
    line-height: 1.3;
}

.product_pod.store-card .store-card__title,
.product_pod.store-card .store-card__title .product-title-link {
    font-weight: 700;
}

/* Final branding pass: combined logo image only */
.home-shop-brand,
.brand-slot .brand-link {
    gap: 0 !important;
}

.home-shop-brand-logo,
.brand-logo-inline,
.site-brand-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .home-shop-brand-logo,
    .brand-logo-inline,
    .site-brand-logo {
        height: 32px !important;
        max-width: 150px;
    }
}


/* Storefront header compact fix: top-bar logo + no extra pre-content gap */
#top_page.accounts .container {
    display: flex;
    align-items: center;
}

#top_page.accounts .accounts-brand {
    display: inline-flex;
    align-items: center;
    margin-right: 0.9rem;
    padding: 0;
}

#top_page.accounts .accounts-brand-logo {
    height: 34px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

#top_page.accounts .account-collapse {
    flex: 1 1 auto;
}

.header.container {
    padding-top: 0 !important;
    padding-bottom: 0.25rem !important;
}

.shop-primary-nav {
    margin-top: 0 !important;
}

.container.page > .page_inner {
    padding-top: 12px;
}

@media (max-width: 991px) {
    #top_page.accounts .accounts-brand-logo {
        height: 25px;
        max-width: 150px;
    }
}


/* Unified shared storefront header (single bar) */
.header.container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.shop-primary-nav {
    background: #0b3a6b !important;
    border: 1px solid #0a345f;
    border-radius: 10px;
    margin-top: 0 !important;
    margin-bottom: 0.35rem;
    padding: 0.4rem 0.75rem;
}

.shop-primary-nav .unified-site-brand {
    margin-right: 0.85rem;
    padding: 0;
}

.shop-primary-nav .unified-site-brand-logo {
    height: 34px;
    width: auto;
    max-width: 185px;
    display: block;
    object-fit: contain;
}

.shop-primary-nav .shop-primary-links .nav-link,
.shop-primary-nav .shop-primary-user-actions .nav-link {
    color: #f8fafc !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
}

.shop-primary-nav .shop-primary-links .nav-link:hover,
.shop-primary-nav .shop-primary-user-actions .nav-link:hover {
    color: #ff8a1f !important;
}

.shop-primary-nav .shop-primary-links .nav-item.active .nav-link,
.shop-primary-nav .shop-primary-links .nav-link.active {
    color: #ff8a1f !important;
}

.container.page > .page_inner {
    padding-top: 10px;
}

@media (max-width: 991px) {
    .shop-primary-nav .unified-site-brand-logo {
        height: 25px;
        max-width: 150px;
    }

    .shop-primary-nav .shop-primary-user-actions {
        margin-top: 0.35rem;
    }
}


/* FINAL HEADER COLOR FIX - LIGHT NAV WITH BRAND CONTRAST */

.shop-primary-nav {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.shop-primary-links a {
    color: #0b3a6b !important;
    font-weight: 500;
}

.shop-primary-links a:hover {
    color: #ff8a1f !important;
}

.shop-primary-links a.active {
    color: #ff8a1f !important;
    border-bottom: 2px solid #ff8a1f;
}

.shop-primary-nav .account-links a {
    color: #0b3a6b !important;
}

.shop-primary-nav .account-links a:hover {
    color: #ff8a1f !important;
}

.shop-primary-nav input[type="search"] {
    border: 1px solid #e5e7eb;
}

.shop-primary-nav input[type="search"]:focus {
    border-color: #ff8a1f;
    outline: none;
}

.shop-primary-nav button {
    background: #0b3a6b;
    color: #ffffff;
}

.shop-primary-nav button:hover {
    background: #082c52;
}

/* FINAL FIX: NAV TEXT VISIBILITY ON WHITE HEADER */

.shop-primary-nav a,
.shop-primary-nav .nav-link,
.shop-primary-nav .shop-primary-links a,
.shop-primary-nav .account-links a {
    color: #0b3a6b !important;
    opacity: 1 !important;
}

.shop-primary-nav a:hover,
.shop-primary-nav .nav-link:hover {
    color: #ff8a1f !important;
}

.shop-primary-nav a:visited {
    color: #0b3a6b !important;
}

/* FINAL READABILITY HARD OVERRIDE FOR STORE HEADER LINKS */
.shop-primary-nav.navbar-light .navbar-nav .nav-link,
.shop-primary-nav.navbar-dark .navbar-nav .nav-link,
.shop-primary-nav .navbar-nav .nav-link,
.shop-primary-nav .shop-primary-links .nav-link,
.shop-primary-nav .shop-primary-user-actions .nav-link,
.shop-primary-nav .account-links .nav-link {
    color: #0b3a6b !important;
    opacity: 1 !important;
}

.shop-primary-nav.navbar-light .navbar-nav .nav-link:hover,
.shop-primary-nav.navbar-dark .navbar-nav .nav-link:hover,
.shop-primary-nav .navbar-nav .nav-link:hover {
    color: #ff8a1f !important;
}

/* FINAL STOREFRONT PAGE-WIDTH FIX: reduce extreme side margins on customer pages */
header.header.container,
.container.page {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.container.page > .page_inner {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (min-width: 1200px) {
    header.header.container,
    .container.page {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Catalogue parity bridge: reuse landing visual language via shared selectors */
.listing-count {
    font-size: 0.92rem;
    color: #334155;
    margin: 0;
}

.listing-sort {
    min-width: 190px;
}

.listing-empty {
    border: 1px dashed #c9d7e7;
    border-radius: 12px;
    background: #f8fbff;
    padding: 1rem;
    color: #475569;
}

.home-shortcuts .nav a,
.home-shortcuts dl a {
    color: #0f172a;
    text-decoration: none;
    font-size: 0.88rem;
}

.home-shortcuts .nav a:hover,
.home-shortcuts dl a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .listing-sort {
        min-width: 0;
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Catalogue-only alignment fix: keep product grid left-aligned in content area */
.catalogue-page .listing-grid.row,
.catalogue-page .catalogue-products-grid.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: flex-start;
}

.catalogue-page .listing-grid.row > li,
.catalogue-page .catalogue-products-grid.row > li {
    padding-left: 0.35rem !important;
    padding-right: 0.35rem !important;
}

/* =====================================================================
   Landing-parity bridge for catalogue/search listing pages (surgical)
   ===================================================================== */
body.storefront-listing-page .container.page.storefront-listing-surface > .page_inner {
    padding-top: 6px;
}

body.storefront-listing-page .storefront-two-col-shell {
    margin: 0;
    align-items: flex-start;
}

body.storefront-listing-page .storefront-listing-sidebar {
    padding-right: 0.55rem;
}

body.storefront-listing-page .storefront-listing-main {
    padding-left: 0.55rem;
}

body.storefront-listing-page .page-header {
    margin: 0 0 0.65rem;
}

body.storefront-listing-page .page-header h1 {
    margin: 0;
    font-family: var(--font-heading, "Poppins", "Google Sans", system-ui, sans-serif);
    font-weight: 600;
    font-size: 1.22rem;
    line-height: 1.2;
}

body.storefront-listing-page .home-shortcuts.storefront-listing-panel {
    border: 1px solid #dde6f0;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
}

body.storefront-listing-page .storefront-listing-panel .nav a,
body.storefront-listing-page .storefront-listing-panel dl a {
    color: #0f172a;
    text-decoration: none;
    font-size: 0.88rem;
}

body.storefront-listing-page .storefront-listing-panel .nav a:hover,
body.storefront-listing-page .storefront-listing-panel dl a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

body.storefront-listing-page .listing-toolbar.homepage-catalogue-header {
    border: 1px solid #dde6f0;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.9rem;
}

body.storefront-listing-page .listing-shell.homepage-catalogue-shell {
    margin-bottom: 0.95rem;
}

@media (max-width: 991px) {
    body.storefront-listing-page .storefront-listing-sidebar,
    body.storefront-listing-page .storefront-listing-main {
        padding-left: 0;
        padding-right: 0;
    }
}

/* =====================================================================
   Forensic parity fix: neutralize Oscar pod centering on listing pages
   Keep green price, enforce left-aligned card internals
   ===================================================================== */
body.storefront-listing-page .product_pod.product-pod-convert.store-card {
    text-align: left !important;
}

body.storefront-listing-page .product_pod.product-pod-convert.store-card .store-card__body,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .store-card__title,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .store-card__brand,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .store-card__meta,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .store-card__price,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .store-card__stock,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .store-card__actions,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .price-stack,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .price-stack-card,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .price-final-card,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .price-tax-note,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .price-mrp,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .price-saving,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .availability-inline {
    text-align: left !important;
}

body.storefront-listing-page .product_pod.product-pod-convert.store-card .price_color,
body.storefront-listing-page .product_pod.product-pod-convert.store-card .price-final-card {
    color: #28a745 !important;
}

/* =====================================================================
   Surgical catalogue-only shell/sidebar parity fix
   ===================================================================== */
body.catalogue-page-view .storefront-two-col-shell {
    grid-template-columns: 210px minmax(0, 1fr);
}

body.catalogue-page-view .storefront-two-col-shell > .storefront-listing-sidebar,
body.catalogue-page-view .storefront-two-col-shell > .storefront-listing-main {
    max-width: none;
    width: auto;
}

body.catalogue-page-view .storefront-two-col-shell > .storefront-listing-sidebar {
    flex: 0 0 auto;
}

body.catalogue-page-view .storefront-two-col-shell > .storefront-listing-main {
    flex: 1 1 auto;
    min-width: 0;
}

body.catalogue-page-view .storefront-listing-main .listing-shell {
    width: 100%;
    max-width: 100%;
}

body.catalogue-page-view .storefront-listing-panel {
    border: 0;
    background: transparent;
    padding: 0;
    margin-bottom: 0.75rem;
}

body.catalogue-page-view .home-shop-category-list {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

body.catalogue-page-view .home-shop-category-link {
    display: block;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #d7e4f3;
}

body.catalogue-page-view .home-shop-category-link:hover {
    color: #0b63ce;
    text-decoration: none;
}

/* =====================================================================
   Corrective pass: enforce real catalogue shell width + home-style sidebar
   ===================================================================== */
body.catalogue-page-view .catalogue-page-row {
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) !important;
    gap: 0.75rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.catalogue-page-view .catalogue-page-row > .catalogue-sidebar-col,
body.catalogue-page-view .catalogue-page-row > .catalogue-main-col {
    max-width: none !important;
    width: auto !important;
    flex: 0 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.catalogue-page-view .catalogue-page-row > .catalogue-main-col {
    min-width: 0;
    width: 100% !important;
}

body.catalogue-page-view .catalogue-main-col > .listing-shell {
    width: 100% !important;
    max-width: 100% !important;
}

body.catalogue-page-view .catalogue-sidebar-col {
    border: 1px solid #dce6f1;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.85rem !important;
    height: fit-content;
}

body.catalogue-page-view .catalogue-sidebar-col .home-shortcuts {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
}

body.catalogue-page-view .catalogue-sidebar-col .home-shortcuts-title {
    margin-bottom: 0.55rem;
}

body.catalogue-page-view .catalogue-sidebar-col .home-shop-category-list {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

body.catalogue-page-view .catalogue-sidebar-col .home-shop-category-link {
    display: block;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #d7e4f3;
}

body.catalogue-page-view .catalogue-sidebar-col .home-shop-category-link:hover {
    color: #0b63ce;
    text-decoration: none;
}

@media (max-width: 991px) {
    body.catalogue-page-view .catalogue-page-row {
        display: block !important;
    }

    body.catalogue-page-view .catalogue-page-row > .catalogue-sidebar-col,
    body.catalogue-page-view .catalogue-page-row > .catalogue-main-col {
        width: 100% !important;
    }
}

/* =====================================================================
   FINAL non-home listing shell (catalogue/search/category):
   neutralize bootstrap column caps + home-style sidebar shell
   ===================================================================== */
body.storefront-listing-page .storefront-listing-page-row {
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) !important;
    gap: 0.75rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.storefront-listing-page .storefront-listing-page-row > .storefront-listing-sidebar,
body.storefront-listing-page .storefront-listing-page-row > .storefront-listing-main {
    flex: 0 0 auto !important;
    max-width: none !important;
    width: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.storefront-listing-page .storefront-listing-page-row > .storefront-listing-main {
    min-width: 0;
    width: 100% !important;
}

body.storefront-listing-page .storefront-listing-main .listing-shell {
    width: 100% !important;
    max-width: 100% !important;
}

body.storefront-listing-page .storefront-listing-sidebar {
    border: 1px solid #dce6f1;
    border-radius: 12px;
    background: #f8fbff;
    padding: 0.85rem !important;
    height: fit-content;
}

body.storefront-listing-page .storefront-listing-sidebar .home-shortcuts-title {
    margin-bottom: 0.55rem;
}

body.storefront-listing-page .storefront-listing-sidebar .home-shortcuts {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0 0 0.75rem;
}

body.storefront-listing-page .storefront-listing-sidebar .home-shortcuts:last-child {
    margin-bottom: 0;
}

body.storefront-listing-page .storefront-listing-sidebar .home-shop-category-list,
body.storefront-listing-page .storefront-listing-sidebar .nav-list {
    list-style: none;
    margin: 0 0 0.75rem;
    padding-left: 0;
    display: grid;
    gap: 0.35rem;
}

body.storefront-listing-page .storefront-listing-sidebar .home-shop-category-list ul,
body.storefront-listing-page .storefront-listing-sidebar .nav-list ul {
    list-style: none;
    margin: 0.25rem 0 0;
    padding-left: 0.8rem;
}

body.storefront-listing-page .storefront-listing-sidebar .home-shop-category-link,
body.storefront-listing-page .storefront-listing-sidebar .nav-list a {
    display: block;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #d7e4f3;
}

body.storefront-listing-page .storefront-listing-sidebar .home-shop-category-link:hover,
body.storefront-listing-page .storefront-listing-sidebar .nav-list a:hover {
    color: #0b63ce;
    text-decoration: none;
}

@media (max-width: 991px) {
    body.storefront-listing-page .storefront-listing-page-row {
        display: block !important;
    }

    body.storefront-listing-page .storefront-listing-page-row > .storefront-listing-sidebar,
    body.storefront-listing-page .storefront-listing-page-row > .storefront-listing-main {
        width: 100% !important;
    }
}

/* Account dropdown: shared storefront header (auth/guest aware) */
.shop-primary-nav .account-dropdown {
    position: relative;
}

.shop-primary-nav .account-dropdown-menu {
    min-width: 220px;
    padding: 0.35rem 0;
    margin-top: 0.35rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.12);
}

.shop-primary-nav .account-dropdown-menu .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #0b3a6b;
    padding: 0.45rem 0.9rem;
}

.shop-primary-nav .account-dropdown-menu .dropdown-item:hover,
.shop-primary-nav .account-dropdown-menu .dropdown-item:focus {
    color: #ff8a1f;
    background: #fff7ed;
}

.shop-primary-nav .account-dropdown .dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: 0.15em;
}

@media (min-width: 992px) {
    .shop-primary-nav .account-dropdown:hover > .dropdown-menu,
    .shop-primary-nav .account-dropdown:focus-within > .dropdown-menu {
        display: block;
    }
}

/* Product-detail related cards parity bridge: align with Home/Products card internals */
.storefront-related-grid .product_pod.product-pod-convert.store-card {
    text-align: left !important;
}

.storefront-related-grid .product_pod.product-pod-convert.store-card .store-card__body,
.storefront-related-grid .product_pod.product-pod-convert.store-card .store-card__title,
.storefront-related-grid .product_pod.product-pod-convert.store-card .store-card__brand,
.storefront-related-grid .product_pod.product-pod-convert.store-card .store-card__meta,
.storefront-related-grid .product_pod.product-pod-convert.store-card .store-card__price,
.storefront-related-grid .product_pod.product-pod-convert.store-card .store-card__stock,
.storefront-related-grid .product_pod.product-pod-convert.store-card .store-card__actions,
.storefront-related-grid .product_pod.product-pod-convert.store-card .price-stack,
.storefront-related-grid .product_pod.product-pod-convert.store-card .price-stack-card,
.storefront-related-grid .product_pod.product-pod-convert.store-card .price-final-card,
.storefront-related-grid .product_pod.product-pod-convert.store-card .price-tax-note,
.storefront-related-grid .product_pod.product-pod-convert.store-card .price-mrp,
.storefront-related-grid .product_pod.product-pod-convert.store-card .price-saving,
.storefront-related-grid .product_pod.product-pod-convert.store-card .availability-inline {
    text-align: left !important;
}

.storefront-related-grid .product_pod.product-pod-convert.store-card .price_color,
.storefront-related-grid .product_pod.product-pod-convert.store-card .price-final-card {
    color: #28a745 !important;
}

/* Detail related-cards parity harden: explicit child-line left alignment */
.storefront-related-grid .product_pod.store-card .store-card__price > *,
.storefront-related-grid .product_pod.store-card .store-card__stock > * {
    text-align: left !important;
}

/* Surgical detail-related price-stack alignment fix: price/tax/mrp/save left only */
.storefront-related-grid .product_pod.store-card .store-card__price,
.storefront-related-grid .product_pod.store-card .store-card__price > *,
.storefront-related-grid .product_pod.store-card .store-card__price .price-stack,
.storefront-related-grid .product_pod.store-card .store-card__price .price-stack-card,
.storefront-related-grid .product_pod.store-card .store-card__price .price_color,
.storefront-related-grid .product_pod.store-card .store-card__price .price-final-card,
.storefront-related-grid .product_pod.store-card .store-card__price .price-tax-note,
.storefront-related-grid .product_pod.store-card .store-card__price .price-mrp,
.storefront-related-grid .product_pod.store-card .store-card__price .price-saving,
.storefront-related-grid .product_pod.store-card .store-card__price .availability-inline {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.storefront-related-grid .product_pod.store-card .store-card__price .price_color,
.storefront-related-grid .product_pod.store-card .store-card__price .price-final-card {
    color: #28a745 !important;
}

/* Global shared product-card price-stack lock (all contexts using render_product/product_pod.store-card) */
.product_pod.product-pod-convert.store-card .store-card__price,
.product_pod.product-pod-convert.store-card .store-card__price > *,
.product_pod.product-pod-convert.store-card .price-stack,
.product_pod.product-pod-convert.store-card .price-stack-card,
.product_pod.product-pod-convert.store-card .price-final-card,
.product_pod.product-pod-convert.store-card .price-tax-note,
.product_pod.product-pod-convert.store-card .price-mrp,
.product_pod.product-pod-convert.store-card .price-saving,
.product_pod.product-pod-convert.store-card .availability-inline {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.product_pod.product-pod-convert.store-card .price_color,
.product_pod.product-pod-convert.store-card .price-final-card {
    color: #28a745 !important;
}
/* =====================================================================
   FINAL TYPOGRAPHY RELIABILITY LOCK (storefront/customer UX)
   Amazon-like readability: strong titles, clear subtitles, dense body
   ===================================================================== */
:root {
    --font-menu: "Poppins", "Google Sans", "Google Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Poppins", "Google Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-subheading: "Poppins", "Google Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body: "Google Sans", "Google Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body,
#top_page,
.page,
.page_inner,
.content,
#content_inner {
    font-family: var(--font-body) !important;
}

/* Menu / utility */
.shop-primary-nav,
.shop-primary-nav a,
.shop-primary-nav .nav-link,
.shop-primary-links .nav-link,
.shop-primary-user-actions .nav-link,
.account-links a,
.navbar,
.navbar-nav .nav-link,
.breadcrumb,
.breadcrumb-item,
.home-shop-category-link {
    font-family: var(--font-menu) !important;
    font-weight: 600;
}

/* Titles + subtitles */
h1,
h2,
h3,
.page-header h1,
.home-section-header h2,
.home-shortcuts-title,
.homepage-catalogue-header h2,
.homepage-catalogue-header .h5,
.listing-toolbar h2,
.listing-toolbar .h5,
.listing-count,
.sub-header h2,
.sub-header h3,
.section-title,
.category-title,
.checkout-headline h1 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    line-height: 1.25;
}

h4,
h5,
h6,
.page-header h2,
.page-header h3,
.listing-toolbar label,
.form-group > label,
label {
    font-family: var(--font-subheading) !important;
    font-weight: 600;
}

/* Product title emphasis */
.product_pod .product-title-link,
.product_pod .store-card__title,
.store-card__title,
.store-card__title .product-title-link {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
}

/* Body/product detail text */
p,
li,
small,
.store-card__brand,
.store-card__meta,
.store-card__stock,
.store-card__price,
.price-stack,
.price-tax-note,
.price-saving,
.availability-inline,
.metric-row,
.table,
.form-control,
button,
.btn,
input,
select,
textarea,
footer,
.footer {
    font-family: var(--font-body) !important;
}

/* MRP + value hierarchy */
.price-mrp,
.price-mrp-card,
.store-card__price .price-mrp,
.metric-row .price-mrp,
.metric-row .mrp,
.basket-line-pricing .metric-row span,
.basket-line-pricing .metric-row strong {
    font-family: var(--font-subheading) !important;
    font-weight: 700 !important;
}

/* =====================================================================
   LOCAL FONT FALLBACK (Google Sans + Poppins)
   Used when Google Fonts CDN is unavailable
   ===================================================================== */
/* cyrillic-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* hebrew */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* math */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* vietnamese */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}



/* FINAL STOREFRONT CARD WIDTH RECOVERY (home + catalogue + shared listings) */
.storefront-product-grid > li,
.storefront-product-grid > *,
.listing-grid > li,
.homepage-catalogue-grid > li,
.homepage-rail-grid > li {
    display: block !important;
    height: 100% !important;
}

.storefront-product-grid > li > .product_pod.product-pod-convert.store-card,
.storefront-product-grid > * > .product_pod.product-pod-convert.store-card,
.listing-grid > li > .product_pod.product-pod-convert.store-card,
.homepage-catalogue-grid > li > .product_pod.product-pod-convert.store-card,
.homepage-rail-grid > li > .product_pod.product-pod-convert.store-card {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* FINAL GLOBAL PRODUCT-CARD WIDTH LOCK (prevents narrow collapsed cards) */
.product_pod.product-pod-convert.store-card {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

.listing-grid > li,
.homepage-catalogue-grid > li,
.homepage-rail-grid > li,
.storefront-product-grid > li,
.storefront-product-grid > * {
    display: block !important;
}

.listing-grid > li .product_pod.product-pod-convert.store-card,
.homepage-catalogue-grid > li .product_pod.product-pod-convert.store-card,
.homepage-rail-grid > li .product_pod.product-pod-convert.store-card,
.storefront-product-grid > li .product_pod.product-pod-convert.store-card,
.storefront-product-grid > * .product_pod.product-pod-convert.store-card {
    width: 100% !important;
    max-width: 100% !important;
}

/* FINAL LIST-ROW MODE FIX:
   listing rows carry storefront-product-grid in templates, and old grid blocks
   were collapsing cards. Force mixed listing rows back to flex row behavior. */
.row.listing-grid.storefront-product-grid,
.row.home-shop-grid.storefront-product-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    grid-template-columns: none !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
}

.row.listing-grid.storefront-product-grid > li.storefront-product-item,
.row.home-shop-grid.storefront-product-grid > li.storefront-product-item,
.row.listing-grid.storefront-product-grid > li,
.row.home-shop-grid.storefront-product-grid > li {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
    display: block !important;
}

@media (max-width: 991.98px) {
    .row.listing-grid.storefront-product-grid > li.storefront-product-item,
    .row.home-shop-grid.storefront-product-grid > li.storefront-product-item,
    .row.listing-grid.storefront-product-grid > li,
    .row.home-shop-grid.storefront-product-grid > li {
        flex-basis: 33.3333% !important;
        max-width: 33.3333% !important;
        width: 33.3333% !important;
    }
}

@media (max-width: 767.98px) {
    .row.listing-grid.storefront-product-grid > li.storefront-product-item,
    .row.home-shop-grid.storefront-product-grid > li.storefront-product-item,
    .row.listing-grid.storefront-product-grid > li,
    .row.home-shop-grid.storefront-product-grid > li {
        flex-basis: 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}




/* ================================
   4. STOREFRONT SUBNAV + DROPDOWN SYSTEM
   ================================ */
/* Two-tier navigation architecture */
.shop-global-nav {
    border: 1px solid #d7deeb;
    border-radius: 10px;
    background: #fff;
    padding: 0.45rem 0.7rem;
    margin-top: 0.35rem;
}

.shop-global-nav .navbar-collapse {
    justify-content: space-between;
}

.shop-global-nav .shop-global-actions {
    gap: 0.12rem;
}

.shop-global-nav .shop-global-actions .nav-link {
    font-weight: 600;
    color: #12335f;
    padding: 0.45rem 0.65rem;
}

.shop-global-nav .shop-global-actions .nav-link:hover,
.shop-global-nav .shop-global-actions .nav-link:focus {
    color: #0a58ca;
}

.shop-global-nav .nav-greeting {
    color: #0d2d56;
    opacity: 0.92;
}

.shop-global-nav .shop-global-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
}

.shop-global-nav .shop-global-search .form-control {
    width: 240px;
    max-width: 100%;
    border-radius: 8px;
}

/* ================================
   HOMEPAGE NAV STABILIZATION
   ================================ */
@media (min-width: 992px) {
    body.home-landing-page .shop-global-nav .navbar-collapse {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    body.home-landing-page .shop-global-nav .shop-global-actions {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        margin-left: auto;
        margin-bottom: 0;
    }

    body.home-landing-page .shop-global-nav .shop-global-search {
        flex: 0 0 auto;
        margin-left: 0.45rem;
        margin-top: 0;
        white-space: nowrap;
    }

    body.home-landing-page .shop-global-nav .shop-global-search .form-control {
        width: 180px;
    }
}

body.home-landing-page .shop-global-nav form.shop-global-search {
    margin: 0 !important;
}

body.home-landing-page .shop-global-nav .navbar-nav {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
}

body.home-landing-page .shop-global-nav .shop-global-search .btn {
    height: 32px !important;
    min-height: 32px !important;
    line-height: 1.2 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-subnav {
    background: #f2f6fb;
    border: 1px solid #d7e2f0;
    border-radius: 10px;
    margin-top: 0.45rem;
}

.store-subnav .container {
    padding: 0 0.75rem;
}

.store-subnav-list {
    list-style: none;
    margin: 0;
    padding: 0.48rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
}

.store-subnav-list li a,
.store-subnav-list li span {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e3b62;
    text-decoration: none;
    padding: 0.22rem 0.42rem;
    border-radius: 6px;
}

.store-subnav-list li a:hover,
.store-subnav-list li a:focus {
    background: #e0ebfb;
    color: #0a4fa8;
    text-decoration: none;
}

.store-subnav-checkout .store-subnav-list li span {
    opacity: 0.8;
}

@media (max-width: 991.98px) {
    .shop-global-nav {
        padding: 0.35rem 0.55rem;
    }

    .shop-global-nav .shop-global-search {
        margin-left: 0;
        margin-top: 0.45rem;
        width: 100%;
    }

    .shop-global-nav .shop-global-search .form-control {
        width: 100%;
    }

    .store-subnav {
        border-radius: 8px;
    }

    .store-subnav-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0.45rem 0;
    }

    .store-subnav-list li {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* ==============================
   Tier-1 Nav Compact (70% size)
   Scoped to global top nav only
   ============================== */

.nav-global-top,
.shop-global-nav {
    min-height: 42px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

/* Logo size */
.nav-global-top .navbar-brand img,
.shop-global-nav .navbar-brand img,
.shop-global-nav .unified-site-brand-logo {
    height: 28px;
    max-height: 28px;
    width: auto;
}

/* Nav links */
.nav-global-top .nav-link,
.shop-global-nav .nav-link {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    font-size: 13px;
    line-height: 1.2;
}

/* Account / Cart text */
.nav-global-top .nav-account,
.nav-global-top .nav-cart,
.shop-global-nav .nav-account,
.shop-global-nav .nav-cart {
    font-size: 12px;
}

/* Search input */
.nav-global-top .form-control,
.nav-global-top input[type="search"],
.shop-global-nav .form-control,
.shop-global-nav input[type="search"] {
    height: 32px;
    font-size: 13px;
    padding: 4px 10px;
}

/* Search button */
.nav-global-top .btn,
.shop-global-nav .btn {
    padding: 4px 10px;
    font-size: 13px;
}

/* Align items properly */
.nav-global-top .navbar-nav,
.shop-global-nav .navbar-nav {
    align-items: center;
}

@media (max-width: 768px) {
    .nav-global-top,
    .shop-global-nav {
        min-height: 46px !important;
    }
}

/* ==============================
   Bright Shop Nav Branding + Contrast
   ============================== */

/* ===== Tier 1: Global Nav ===== */
.shop-global-nav,
.nav-global-top {
    background-color: #0f172a !important; /* dark blue */
    color: #ffffff;
}

/* Nav links */
.shop-global-nav .nav-link,
.nav-global-top .nav-link {
    color: #ffffff !important;
}

/* Hover */
.shop-global-nav .nav-link:hover,
.nav-global-top .nav-link:hover {
    color: #e2e8f0 !important;
}

/* Icons */
.shop-global-nav i,
.nav-global-top i,
.shop-global-nav svg,
.nav-global-top svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* ===== Search bar ===== */
.shop-global-nav .form-control,
.nav-global-top .form-control {
    background-color: #ffffff;
    color: #111827;
    border: none;
}

/* Placeholder */
.shop-global-nav .form-control::placeholder {
    color: #6b7280;
}

/* Search button */
.shop-global-nav .btn,
.nav-global-top .btn {
    background-color: #f97316;
    color: #ffffff;
    border: none;
}

/* ===== Logo Area ===== */
.shop-global-nav .navbar-brand,
.nav-global-top .navbar-brand {
    background-color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
}

/* ===== Tier 2: Subnav ===== */
.page-subnav,
.subnav-home,
.subnav-catalogue,
.subnav-account,
.subnav-checkout {
    background-color: #f97316 !important; /* orange */
}

/* Subnav links */
.page-subnav .nav-link,
.page-subnav a,
.subnav-home .nav-link,
.subnav-home a,
.subnav-catalogue .nav-link,
.subnav-catalogue a,
.subnav-account .nav-link,
.subnav-account a,
.subnav-checkout .nav-link,
.subnav-checkout a {
    color: #ffffff !important;
}

/* Hover */
.page-subnav .nav-link:hover,
.page-subnav a:hover,
.subnav-home .nav-link:hover,
.subnav-home a:hover,
.subnav-catalogue .nav-link:hover,
.subnav-catalogue a:hover,
.subnav-account .nav-link:hover,
.subnav-account a:hover,
.subnav-checkout .nav-link:hover,
.subnav-checkout a:hover {
    background-color: rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

/* Active state */
.page-subnav .nav-link.active,
.subnav-home .nav-link.active,
.subnav-catalogue .nav-link.active,
.subnav-account .nav-link.active,
.subnav-checkout .nav-link.active {
    background-color: rgba(0, 0, 0, 0.25);
    color: #ffffff !important;
}

/* Remove borders */
.shop-global-nav,
.page-subnav,
.subnav-home,
.subnav-catalogue,
.subnav-account,
.subnav-checkout {
    border-bottom: none;
}

/* ==============================
   Final Nav Consistency Polish (Checkout + Dropdown)
   ============================== */

/* Ensure checkout progression nav inherits branded tier-2 look */
.checkout-shell-header .nav-checkout.checkout-step-nav.page-subnav.subnav-checkout {
    background-color: #f97316 !important;
    border: 0;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.12);
}

.checkout-shell-header .checkout-step-list .nav-link,
.checkout-shell-header .checkout-step-list .navbar-text {
    color: #ffffff !important;
    border-radius: 8px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.checkout-shell-header .checkout-step-list .step-dot {
    background: rgba(255,255,255,0.22);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.checkout-shell-header .checkout-step-list .nav-item:hover .nav-link,
.checkout-shell-header .checkout-step-list .nav-item:hover .navbar-text {
    background-color: rgba(0, 0, 0, 0.16);
    color: #ffffff !important;
}

.checkout-shell-header .checkout-step-list .nav-item.active .nav-link,
.checkout-shell-header .checkout-step-list .nav-item.active .navbar-text,
.checkout-shell-header .checkout-step-list .nav-item.previous .nav-link,
.checkout-shell-header .checkout-step-list .nav-item.previous .navbar-text {
    background-color: rgba(0, 0, 0, 0.26);
    color: #ffffff !important;
    font-weight: 700;
}

.checkout-shell-header .checkout-step-list .nav-item.visited .step-dot,
.checkout-shell-header .checkout-step-list .nav-item.previous .step-dot {
    background: #14532d;
    border-color: #14532d;
}

.checkout-shell-header .checkout-step-list .nav-item.disabled .navbar-text {
    color: rgba(255,255,255,0.76) !important;
}

/* Tier-1 link + search polish on all pages including checkout */
.shop-global-nav .shop-global-actions .nav-link {
    border-radius: 7px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.shop-global-nav .shop-global-actions .nav-link:hover,
.shop-global-nav .shop-global-actions .nav-link:focus {
    background: rgba(255,255,255,0.12);
    color: #ffffff !important;
}

.shop-global-nav .shop-global-search .form-control:focus {
    box-shadow: 0 0 0 0.15rem rgba(249, 115, 22, 0.35);
    border-color: #fb923c;
}

.shop-global-nav .shop-global-search .btn:hover,
.shop-global-nav .shop-global-search .btn:focus {
    background-color: #ea580c;
    color: #ffffff !important;
}

/* Dropdown + mega menu panel polish sitewide */
.shop-global-nav .dropdown-menu,
.shop-global-nav .account-dropdown-menu,
.shop-global-nav .account-mega-menu,
.home-shop-nav .account-mega-menu,
.home-shop-nav .account-dropdown-menu {
    background: #ffffff;
    border: 1px solid #dbe3f1;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
    padding: 10px 12px;
}

.shop-global-nav .dropdown-item,
.shop-global-nav .account-dropdown-menu .dropdown-item,
.home-shop-nav .account-mega-menu .dropdown-item,
.home-shop-nav .account-dropdown-menu .dropdown-item {
    color: #1f2d45 !important;
    border-radius: 8px;
    padding: 8px 10px;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.shop-global-nav .dropdown-item:hover,
.shop-global-nav .dropdown-item:focus,
.shop-global-nav .account-dropdown-menu .dropdown-item:hover,
.shop-global-nav .account-dropdown-menu .dropdown-item:focus,
.home-shop-nav .account-mega-menu .dropdown-item:hover,
.home-shop-nav .account-mega-menu .dropdown-item:focus,
.home-shop-nav .account-dropdown-menu .dropdown-item:hover,
.home-shop-nav .account-dropdown-menu .dropdown-item:focus {
    background: #eef4ff;
    color: #0d3f9f !important;
}

.shop-global-nav .account-mega-title,
.home-shop-nav .account-mega-title {
    color: #14253f;
    font-weight: 700;
}

.home-shop-nav .account-mega-col + .account-mega-col,
.shop-global-nav .account-mega-col + .account-mega-col {
    border-left: 1px solid #e4eaf4;
}

@media (max-width: 767px) {
    .checkout-shell-header .checkout-step-list .nav-item {
        min-width: 150px;
    }

    .shop-global-nav .dropdown-menu,
    .shop-global-nav .account-mega-menu,
    .home-shop-nav .account-mega-menu {
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
    }
}

/* ==============================
   Final Greeting + Subnav Color Lock
   ============================== */

/* Greeting next to logo: Hi (normal) + username (bold) */
.shop-global-greeting-left {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0 0.55rem 0 0.35rem;
    color: #ffffff !important;
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
}

.shop-global-greeting-left .greet-prefix {
    font-weight: 400;
}

.shop-global-greeting-left .greet-name {
    font-weight: 700;
}

/* Enforce orange lower nav and white text across all page families */
.store-subnav,
.store-subnav-checkout,
.page-subnav,
.subnav-home,
.subnav-catalogue,
.subnav-account,
.subnav-checkout {
    background-color: #f97316 !important;
    border-bottom: none;
}

.store-subnav .store-subnav-list li a,
.store-subnav .store-subnav-list li span,
.store-subnav-checkout .store-subnav-list li a,
.store-subnav-checkout .store-subnav-list li span,
.page-subnav .nav-link,
.page-subnav a,
.subnav-home .nav-link,
.subnav-home a,
.subnav-catalogue .nav-link,
.subnav-catalogue a,
.subnav-account .nav-link,
.subnav-account a,
.subnav-checkout .nav-link,
.subnav-checkout a {
    color: #ffffff !important;
}

.store-subnav .store-subnav-list li a:hover,
.store-subnav .store-subnav-list li a:focus,
.store-subnav-checkout .store-subnav-list li a:hover,
.store-subnav-checkout .store-subnav-list li a:focus,
.page-subnav .nav-link:hover,
.page-subnav a:hover,
.subnav-home .nav-link:hover,
.subnav-home a:hover,
.subnav-catalogue .nav-link:hover,
.subnav-catalogue a:hover,
.subnav-account .nav-link:hover,
.subnav-account a:hover,
.subnav-checkout .nav-link:hover,
.subnav-checkout a:hover {
    color: #ffffff !important;
    background-color: rgba(0, 0, 0, 0.16);
}

@media (max-width: 991px) {
    .shop-global-greeting-left {
        order: 3;
        margin-left: auto;
        margin-right: 0.25rem;
        font-size: 0.9rem;
    }
}

/* ==============================
   Final Tier Alignment + Greeting Visibility
   ============================== */

/* Greeting clarity */
.shop-global-greeting-left,
.shop-global-greeting-left .greet-prefix,
.shop-global-greeting-left .greet-name {
    color: #ffffff !important;
}

.shop-global-greeting-left {
    opacity: 1 !important;
    margin: 0 0.5rem 0 0.35rem !important;
}

.shop-global-greeting-left .greet-prefix {
    font-weight: 400 !important;
    text-transform: none !important;
}

.shop-global-greeting-left .greet-name {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2px;
}

/* Remove gap between tier-1 and tier-2 everywhere */
.header,
.checkout-shell-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.shop-global-nav,
.nav-global-top,
.store-subnav,
.store-subnav-checkout,
.page-subnav,
.subnav-home,
.subnav-catalogue,
.subnav-account,
.subnav-checkout,
.nav-checkout.checkout-step-nav {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
}

/* Keep bar heights visually consistent */
.shop-global-nav,
.nav-global-top,
.store-subnav,
.store-subnav-checkout,
.page-subnav,
.subnav-home,
.subnav-catalogue,
.subnav-account,
.subnav-checkout,
.nav-checkout.checkout-step-nav.page-subnav.subnav-checkout {
    min-height: 46px !important;
}

/* Uniform inner row height across lower bars */
.store-subnav .container,
.page-subnav .container,
.store-subnav-checkout .container {
    min-height: 46px;
    display: flex;
    align-items: center;
}

.store-subnav-list {
    width: 100%;
    margin: 0;
    align-items: center;
}

.store-subnav-list li a,
.store-subnav-list li span,
.checkout-step-list .nav-link,
.checkout-step-list .navbar-text {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
}

/* ==============================
   Final Nav Uniformity Lock (All Pages)
   ============================== */

/* Top-tier and bottom-tier must align in width/height with zero gap */
.shop-global-nav,
.nav-global-top,
.store-subnav,
.store-subnav-checkout,
.page-subnav,
.subnav-home,
.subnav-catalogue,
.subnav-account,
.subnav-checkout,
.nav-checkout.checkout-step-nav.page-subnav.subnav-checkout {
    width: 100% !important;
    min-height: 46px !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* Remove any inter-tier spacing */
.shop-global-nav + .store-subnav,
.shop-global-nav + .store-subnav-checkout,
.shop-global-nav + .page-subnav,
.nav-global-top + .store-subnav,
.nav-global-top + .store-subnav-checkout,
.nav-global-top + .page-subnav,
.checkout-shell-header .shop-global-nav + .page-subnav,
.checkout-shell-header .shop-global-nav + .store-subnav-checkout {
    margin-top: 0 !important;
    border-top: 0 !important;
}

.header,
.checkout-shell-header,
.storefront-page-header,
.page-header,
.shop-global-nav-wrap {
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Keep both tiers visually same height via inner alignment */
.shop-global-nav .navbar-nav,
.page-subnav .container,
.store-subnav .container,
.store-subnav-checkout .container {
    min-height: 46px !important;
    display: flex;
    align-items: center;
}

/* Greeting must remain visible and readable */
.shop-global-greeting-left,
.shop-global-greeting-left .greet-prefix,
.shop-global-greeting-left .greet-name {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.shop-global-greeting-left {
    display: inline-flex !important;
    align-items: center;
    white-space: nowrap;
    margin: 0 0.5rem 0 0.35rem !important;
    padding: 0 !important;
    line-height: 1.15;
    text-decoration: none !important;
    flex-shrink: 0;
}

.shop-global-greeting-left .greet-prefix {
    font-weight: 400 !important;
    text-transform: none !important;
}

.shop-global-greeting-left .greet-name {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px;
}

@media (max-width: 991px) {
    .shop-global-nav,
    .nav-global-top,
    .store-subnav,
    .store-subnav-checkout,
    .page-subnav,
    .subnav-home,
    .subnav-catalogue,
    .subnav-account,
    .subnav-checkout {
        min-height: 44px !important;
    }

    .shop-global-greeting-left {
        margin-left: 0.2rem !important;
        margin-right: 0.35rem !important;
        font-size: 0.88rem !important;
    }
}

/* ==============================
   Home Master Two-Tier Parity Lock (All Storefront Pages)
   ============================== */

/* Tier-1 master style (match home) */
.shop-global-nav,
.nav-global-top {
    background-color: #0f172a !important;
    color: #ffffff !important;
    width: 100% !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 4px 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.shop-global-nav .nav-link,
.nav-global-top .nav-link,
.shop-global-nav .navbar-text,
.nav-global-top .navbar-text {
    color: #ffffff !important;
}

/* Greeting visibility parity */
.shop-global-greeting-left,
.shop-global-greeting-left .greet-prefix,
.shop-global-greeting-left .greet-name {
    color: #ffffff !important;
}

.shop-global-greeting-left .greet-prefix {
    font-weight: 400 !important;
    text-transform: none !important;
}

.shop-global-greeting-left .greet-name {
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* Tier-2 master style (match home orange bar) */
.store-subnav,
.store-subnav-checkout,
.page-subnav,
.subnav-home,
.subnav-catalogue,
.subnav-account,
.subnav-checkout,
.nav-checkout.checkout-step-nav.page-subnav.subnav-checkout {
    background-color: #f97316 !important;
    width: 100% !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.store-subnav .store-subnav-list,
.store-subnav-checkout .store-subnav-list,
.page-subnav .store-subnav-list,
.checkout-step-list {
    margin: 0 !important;
    min-height: 46px !important;
    display: flex;
    align-items: center;
}

.store-subnav .store-subnav-list li a,
.store-subnav .store-subnav-list li span,
.store-subnav-checkout .store-subnav-list li a,
.store-subnav-checkout .store-subnav-list li span,
.page-subnav .nav-link,
.page-subnav a,
.checkout-step-list .nav-link,
.checkout-step-list .navbar-text {
    color: #ffffff !important;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
}

/* Zero gap between tiers everywhere */
.header,
.checkout-shell-header,
.shop-global-nav-wrap,
.storefront-page-header {
    margin: 0 !important;
    padding: 0 !important;
}

.shop-global-nav + .store-subnav,
.shop-global-nav + .store-subnav-checkout,
.shop-global-nav + .page-subnav,
.nav-global-top + .store-subnav,
.nav-global-top + .store-subnav-checkout,
.nav-global-top + .page-subnav {
    margin-top: 0 !important;
}

@media (max-width: 991px) {
    .shop-global-nav,
    .nav-global-top,
    .store-subnav,
    .store-subnav-checkout,
    .page-subnav,
    .subnav-home,
    .subnav-catalogue,
    .subnav-account,
    .subnav-checkout {
        min-height: 44px !important;
    }
}

/* ==============================
   Bright Shop Footer (Amazon-style inspiration)
   ============================== */
.bs-footer-amz {
    margin-top: 1.4rem;
    width: 100%;
}

.bs-footer-backtotop {
    display: block;
    text-align: center;
    background: #37475a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.93rem;
    padding: 0.85rem 1rem;
}

.bs-footer-backtotop:hover,
.bs-footer-backtotop:focus {
    color: #ffffff;
    background: #465a72;
    text-decoration: none;
}

.bs-footer-main {
    background: #232f3e;
    color: #d1d5db;
}

.bs-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.bs-footer-col h3 {
    color: #ffffff;
    margin: 0 0 0.65rem;
    font-size: 0.98rem;
    font-weight: 700;
}

.bs-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bs-footer-col li {
    margin: 0 0 0.45rem;
}

.bs-footer-col a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.89rem;
}

.bs-footer-col a:hover,
.bs-footer-col a:focus {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .bs-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
        padding: 1.6rem 0;
    }
}

@media (max-width: 575.98px) {
    .bs-footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.35rem 0;
    }

    .bs-footer-backtotop {
        font-size: 0.88rem;
        padding: 0.72rem 0.8rem;
    }
}

/* Footer layout refinement: fuller desktop width usage */
.bs-footer-grid.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  padding: 2rem 0;
}

.bs-footer-grid.row .bs-footer-col {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .bs-footer-grid.row .bs-footer-col {
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .bs-footer-grid.row {
    padding: 1.6rem 0;
  }
}

@media (max-width: 575.98px) {
  .bs-footer-grid.row {
    padding: 1.35rem 0;
  }
}

/* Homepage content-footer separator */
.home-landing-page #homepage-discovery-layout {
  border-bottom: 1px solid #d7e1ee;
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}

.home-landing-page .bs-footer-amz {
  margin-top: 0;
}


/* Bright Shop footer v2: logo-aligned cleanup */
.bs-footer-amz {
  --bsf-navy-deep: #0b1e34;
  --bsf-navy: #143356;
  --bsf-blue: #245f9e;
  --bsf-orange: #f58220;
  --bsf-text: #dbe6f3;
  width: 100%;
}

.bs-footer-backtotop {
  background: linear-gradient(90deg, var(--bsf-blue) 0%, var(--bsf-navy) 100%);
  color: #ffffff;
  border-top: 2px solid var(--bsf-orange);
  letter-spacing: 0.01em;
}

.bs-footer-backtotop:hover,
.bs-footer-backtotop:focus {
  background: linear-gradient(90deg, #2f6db0 0%, #19426e 100%);
}

.bs-footer-main {
  background: radial-gradient(circle at top right, #1f3d60 0%, var(--bsf-navy-deep) 52%, #081425 100%);
  color: var(--bsf-text);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bs-footer-brandrow {
  padding: 1rem 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.8rem;
}

.bs-footer-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  color: #ffffff;
}

.bs-footer-brand-title {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.1;
  border-left: 3px solid var(--bsf-orange);
  padding-left: 0.55rem;
}

.bs-footer-brand-subtitle {
  color: #b9cadc;
  font-size: 0.82rem;
}

.bs-footer-grid.row {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1.1rem;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
  padding: 0.45rem 0 1.8rem;
}

.bs-footer-grid.row .bs-footer-col {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.bs-footer-col h3 {
  color: #ffffff;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  position: relative;
}

.bs-footer-col h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 0.38rem;
  background: var(--bsf-orange);
}

.bs-footer-col a {
  color: var(--bsf-text);
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
}

.bs-footer-col a:hover,
.bs-footer-col a:focus {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .bs-footer-brandrow {
    padding-top: 0.85rem;
  }

  .bs-footer-grid.row {
    padding: 0.3rem 0 1.45rem;
  }
}

@media (max-width: 575.98px) {
  .bs-footer-brand-title {
    font-size: 1.02rem;
  }

  .bs-footer-brand-subtitle {
    font-size: 0.78rem;
  }

  .bs-footer-grid.row {
    padding: 0.25rem 0 1.2rem;
  }
}

/* Footer exact-match style (Otieon-inspired) */
.bs-footer-otieon {
  width: 100%;
  background: #eaf0ea;
  color: #0f172a;
  margin-top: 0;
}

.bs-footer-otieon-main {
  padding: 1.6rem 0 1.1rem;
}

.bs-footer-otieon-grid {
  row-gap: 1rem;
}

.bs-footer-otieon-col h3 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  color: #0a0a0a;
}

.bs-footer-otieon-logo-link {
  display: inline-block;
  margin-bottom: 0.55rem;
}

.bs-footer-otieon-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.bs-footer-otieon-line {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  color: #111827;
}

.bs-footer-otieon-direction {
  margin: 0.6rem 0 0.55rem;
  font-size: 1.18rem;
  font-weight: 600;
}

.bs-footer-otieon-direction a,
.bs-footer-otieon-col a {
  color: #0b0b0b;
  text-decoration: none;
}

.bs-footer-otieon-direction a:hover,
.bs-footer-otieon-col a:hover,
.bs-footer-otieon-col a:focus {
  color: #2f855a;
  text-decoration: none;
}

.bs-footer-otieon-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bs-footer-otieon-col li {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
}

.bs-footer-otieon-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.bs-footer-otieon-social a {
  width: 34px;
  height: 34px;
  border: 2px solid #1f2937;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 1.08rem;
}

.bs-footer-otieon-social a:hover,
.bs-footer-otieon-social a:focus {
  border-color: #2f855a;
  color: #2f855a;
}

.bs-footer-otieon-divider {
  border-top: 1px solid #b8c2b8;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.bs-footer-otieon-copy {
  text-align: center;
  font-size: 1.02rem;
  color: #0f172a;
}

@media (max-width: 991.98px) {
  .bs-footer-otieon-col h3 {
    font-size: 1.65rem;
  }

  .bs-footer-otieon-line,
  .bs-footer-otieon-col li,
  .bs-footer-otieon-direction {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .bs-footer-otieon-main {
    padding: 1.2rem 0 0.95rem;
  }

  .bs-footer-otieon-logo {
    height: 44px;
  }

  .bs-footer-otieon-col h3 {
    font-size: 1.35rem;
  }

  .bs-footer-otieon-copy {
    font-size: 0.92rem;
  }
}

/* Footer logo fix: tiny bottom-left lock */
.bs-footer-otieon-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
}

.bs-footer-otieon-logo-tiny-link {
  display: inline-flex;
  align-items: center;
}

.bs-footer-otieon-logo-tiny {
  height: 18px !important;
  width: auto !important;
  max-width: 84px !important;
  object-fit: contain;
}

.bs-footer-otieon-copy {
  text-align: left !important;
  margin: 0;
}

@media (max-width: 575.98px) {
  .bs-footer-otieon-bottom {
    gap: 0.45rem;
  }

  .bs-footer-otieon-logo-tiny {
    height: 16px !important;
    max-width: 72px !important;
  }
}

/* Footer refinement v4: moderate logo + visible separator */
.home-landing-page #homepage-discovery-layout {
  border-bottom: 2px solid #b9c4b9 !important;
  padding-bottom: 1rem;
  margin-bottom: 0.35rem;
}

.bs-footer-otieon {
  border-top: 2px solid #b9c4b9;
}

.bs-footer-otieon-main {
  padding-top: 1.25rem;
}

.bs-footer-otieon-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  min-height: 40px;
}

.bs-footer-otieon-logo-footer-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.bs-footer-otieon-logo-footer {
  height: 25px;
  width: auto;
  max-width: 94px;
  object-fit: contain;
  display: block;
}

.bs-footer-otieon-copy {
  text-align: left !important;
  margin: 0;
}

@media (max-width: 575.98px) {
  .bs-footer-otieon-logo-footer {
    height: 20px;
    max-width: 75px;
  }
}





/* About Us title emphasis */
.cms-about-title {
    font-size: 150% !important;
    font-weight: 700 !important;
}


/* Footer typography enforcement */
.bs-footer-otieon,
.bs-footer-otieon-main,
.bs-footer-otieon-line,
.bs-footer-otieon-copy,
.bs-footer-otieon-direction,
.bs-footer-otieon-col a,
.bs-footer-otieon-col li {
    font-family: var(--bs-font-body) !important;
}

.bs-footer-otieon-col h3 {
    font-family: var(--bs-font-title) !important;
    font-size: 1.35rem !important;
    font-weight: 650 !important;
    line-height: 1.22 !important;
    letter-spacing: 0.01em;
    margin-bottom: 0.58rem !important;
}

.bs-footer-otieon-line,
.bs-footer-otieon-col li,
.bs-footer-otieon-direction,
.bs-footer-otieon-copy,
.bs-footer-otieon-col a {
    font-size: 0.95rem !important;
    line-height: 1.34 !important;
}

.bs-footer-otieon-line { margin-bottom: 0.2rem !important; }
.bs-footer-otieon-col li { margin-bottom: 0.2rem !important; }
.bs-footer-otieon-direction { margin: 0.34rem 0 0.34rem !important; }

@media (max-width: 575.98px) {
    .bs-footer-otieon-col h3 {
        font-size: 1.12rem !important;
        margin-bottom: 0.42rem !important;
    }

    .bs-footer-otieon-line,
    .bs-footer-otieon-col li,
    .bs-footer-otieon-direction,
    .bs-footer-otieon-copy,
    .bs-footer-otieon-col a {
        font-size: 0.88rem !important;
        line-height: 1.28 !important;
    }
}

/* Product image discount overlay (top-right rounded badge) */
.product-image-wrapper {
  overflow: hidden;
}

.product-image-wrapper .product-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.product-image-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  height: 167px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  line-height: 0;
}

.product-image-frame img,
.product-image-frame .store-card__image,
.product-image-frame .product-image-thumb {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 167px;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.product-image-frame .bs-discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  background-color: #df2f34;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  pointer-events: none;
  box-sizing: border-box;
}





/* Enrollment submenu tinted background */
#enrollmentPrimaryMenu + .dropdown-menu,
#enrollmentMenu + .dropdown-menu {
  background-color: #f97316;
  border: 1px solid #d86410;
  box-shadow: 0 8px 18px rgba(9, 30, 66, 0.12);
}

#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item,
#enrollmentMenu + .dropdown-menu .dropdown-item {
  color: #ffffff;
}

#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item:hover,
#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item:focus,
#enrollmentMenu + .dropdown-menu .dropdown-item:hover,
#enrollmentMenu + .dropdown-menu .dropdown-item:focus {
  background-color: #0d6efd;
  color: #ffffff;
}

/* Enrollment submenu text color enforcement */
#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item,
#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item:link,
#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item:visited,
#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item:active,
#enrollmentMenu + .dropdown-menu .dropdown-item,
#enrollmentMenu + .dropdown-menu .dropdown-item:link,
#enrollmentMenu + .dropdown-menu .dropdown-item:visited,
#enrollmentMenu + .dropdown-menu .dropdown-item:active {
  color: #ffffff !important;
}

#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item:hover,
#enrollmentPrimaryMenu + .dropdown-menu .dropdown-item:focus,
#enrollmentMenu + .dropdown-menu .dropdown-item:hover,
#enrollmentMenu + .dropdown-menu .dropdown-item:focus {
  background-color: #0d6efd !important;
  color: #ffffff !important;
}

.contact-flatpage {
  position: relative;
  min-height: calc(100vh - 160px);
  margin: 0 -15px;
  padding: 40px 20px 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 208, 156, 0.32), transparent 24%),
    linear-gradient(135deg, #fff3de 0%, #ffd7c1 38%, #ffb98d 70%, #ff8c52 100%);
}

.contact-flatpage::before,
.contact-flatpage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
  pointer-events: none;
}

.contact-flatpage::before {
  width: 240px;
  height: 240px;
  top: 16px;
  left: -80px;
  background: rgba(255, 255, 255, 0.6);
}

.contact-flatpage::after {
  width: 320px;
  height: 320px;
  right: -100px;
  bottom: 10px;
  background: rgba(255, 116, 67, 0.2);
}

.contact-flatpage-shell {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(152, 72, 27, 0.18);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.contact-flatpage-panel {
  padding: 38px 36px 32px;
  background: rgba(255, 255, 255, 0.94);
}

.contact-flatpage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-flatpage-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff5e9;
  border: 1px solid #ffd7b0;
  color: #9a4f1d;
  font-size: 12px;
  font-weight: 700;
}

.contact-flatpage-copy h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1f2430;
}

.contact-flatpage-copy p {
  margin: 0 0 22px;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
}

.contact-flatpage-content {
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8f0 0%, #fffef8 100%);
  border: 1px solid #ffe2c6;
  padding: 24px 22px;
  color: #394150;
}

.contact-flatpage-content h1,
.contact-flatpage-content h2,
.contact-flatpage-content h3 {
  color: #1f2430;
}

.contact-flatpage-content a {
  color: #eb5a2b;
  font-weight: 700;
}

.contact-flatpage-content a:hover {
  color: #c7441b;
}

.contact-flatpage-content input,
.contact-flatpage-content textarea,
.contact-flatpage-content select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 36, 48, 0.12);
  background: #fff;
  color: #1f2430;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-flatpage-content textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-flatpage-content input:focus,
.contact-flatpage-content textarea:focus,
.contact-flatpage-content select:focus {
  outline: none;
  border-color: rgba(235, 90, 43, 0.42);
  box-shadow: 0 0 0 4px rgba(235, 90, 43, 0.12);
  transform: translateY(-1px);
}

.contact-flatpage-content button,
.contact-flatpage-content .btn,
.contact-flatpage-content input[type="submit"] {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ef5b2a 0%, #ff8f3b 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(239, 91, 42, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-flatpage-content button:hover,
.contact-flatpage-content .btn:hover,
.contact-flatpage-content input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(239, 91, 42, 0.28);
  color: #fff;
}

@media (max-width: 575px) {
  .contact-flatpage {
    min-height: auto;
    padding: 20px 10px 34px;
  }

  .contact-flatpage-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-flatpage-panel {
    padding: 30px 24px;
  }
}

.cms-contact-wrap {
  max-width: 980px;
  padding-top: 2.5rem !important;
  padding-bottom: 3.5rem !important;
}

.cms-contact-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 80px rgba(152, 72, 27, 0.16) !important;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(135deg, rgba(255, 243, 222, 0.95) 0%, rgba(255, 215, 193, 0.95) 42%, rgba(255, 185, 141, 0.94) 100%);
}

.cms-contact-card-body {
  padding: 2.5rem !important;
}

.cms-contact-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.cms-contact-title {
  margin-bottom: 0.5rem !important;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1f2430;
}

.cms-contact-summary {
  max-width: 44rem;
  margin-bottom: 0 !important;
  color: #667085 !important;
  font-size: 0.98rem;
  line-height: 1.75;
}

.cms-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 245, 233, 0.95);
  border: 1px solid #ffd7b0;
  color: #9a4f1d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cms-contact-card .cms-page-body {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 226, 198, 0.95);
  box-shadow: 0 16px 32px rgba(152, 72, 27, 0.08);
  padding: 1.5rem 1.5rem 1.2rem;
  color: #394150;
}

.cms-contact-card .cms-page-body p:last-child {
  margin-bottom: 0;
}

.cms-contact-form-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 226, 198, 0.95);
  box-shadow: 0 18px 38px rgba(152, 72, 27, 0.1);
  padding: 1.5rem;
}

.cms-contact-form-card h2 {
  color: #1f2430;
  font-size: 1.15rem;
  font-weight: 800;
}

.cms-contact-form .form-group {
  margin-bottom: 1.15rem;
}

.cms-contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #394150;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cms-contact-form .form-control {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(31, 36, 48, 0.12);
  background: #fff;
  padding: 0.9rem 1rem;
  color: #1f2430;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cms-contact-form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.cms-contact-form .form-control::placeholder {
  color: #98a2b3;
}

.cms-contact-form .form-control:focus {
  border-color: rgba(235, 90, 43, 0.42);
  box-shadow: 0 0 0 4px rgba(235, 90, 43, 0.12);
  transform: translateY(-1px);
}

.cms-contact-submit {
  min-width: 190px;
  min-height: 56px;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #ef5b2a 0%, #ff8f3b 100%) !important;
  color: #fff !important;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(239, 91, 42, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cms-contact-submit:hover,
.cms-contact-submit:focus {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 20px 38px rgba(239, 91, 42, 0.28);
}

@media (max-width: 767.98px) {
  .cms-contact-wrap {
    max-width: 100%;
    padding-top: 1rem !important;
    padding-right: 10px !important;
    padding-bottom: 2rem !important;
    padding-left: 10px !important;
  }

  .cms-contact-card-body {
    padding: 0.75rem !important;
  }

  .cms-contact-badge,
  .cms-contact-summary,
  .cms-contact-card .cms-page-body {
    display: none !important;
  }

  .cms-contact-hero {
    margin-bottom: 1rem;
  }

  .cms-contact-title {
    margin-bottom: 8px !important;
  }

  .cms-contact-form-card {
    padding: 0.75rem !important;
    border-radius: 14px;
  }

  .cms-contact-form .form-row {
    display: block;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  .cms-contact-form .form-row .form-group {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    width: 100%;
    margin-bottom: 0.4rem !important;
    row-gap: 6px;
    padding-right: 0;
    padding-left: 0;
  }

  .cms-contact-form .form-row .form-group label {
    margin-bottom: 0 !important;
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.1;
  }

  .cms-contact-form .form-control {
    height: 36px;
    min-height: 36px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    background: #f9fafb;
  }

  .cms-contact-form .form-row .form-group .form-control,
  .cms-contact-form .form-row .form-group input,
  .cms-contact-form .form-row .form-group select {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .cms-contact-form .form-row .form-group > small.text-danger {
    grid-column: 2;
  }

  .cms-contact-form .cms-contact-message-group,
  .cms-contact-form > .form-group {
    display: block;
  }

  .cms-contact-form .cms-contact-message-group label,
  .cms-contact-form > .form-group label {
    display: block;
    margin-bottom: 6px;
  }

  .cms-contact-form .cms-contact-message-group textarea.form-control,
  .cms-contact-form > .form-group textarea.form-control {
    min-height: 90px;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .cms-contact-message-group {
    margin-top: 6px;
  }

  .cms-contact-form .form-control:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.15);
    background: #ffffff;
  }

  .cms-contact-submit {
    width: 100%;
    height: auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    padding: 6px 12px;
  }
}

/* =====================================================================
   Mobile storefront audit fixes (responsive-only, scoped, production-safe)
   ===================================================================== */
@media (max-width: 768px) {
    .header .shop-global-nav,
    .header .shop-primary-nav {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .header .shop-global-nav {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .header .shop-global-nav .navbar-brand,
    .header .shop-primary-nav .navbar-brand {
        order: 1;
        flex: 0 0 auto;
        min-width: 0;
        display: inline-flex;
        align-items: center;
        max-width: calc(100% - 140px);
    }

    .header .shop-global-nav .navbar-brand {
        max-width: 40%;
        min-width: 0;
    }

    .header .shop-global-nav .unified-site-brand-logo,
    .header .shop-global-nav .site-brand-logo,
    .header .shop-primary-nav .unified-site-brand-logo,
    .header .shop-primary-nav .site-brand-logo {
        width: auto !important;
        height: auto !important;
        max-width: 96px;
        max-height: 18px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .header .shop-global-nav .shop-global-greeting-left {
        order: 2;
        display: inline-flex !important;
        align-items: center;
        margin-left: 6px !important;
        margin-right: 8px !important;
        min-width: 0;
        max-width: 50%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 0 1 auto;
    }

    .header .shop-global-nav .shop-global-greeting-left .greet-prefix,
    .header .shop-global-nav .shop-global-greeting-left .greet-name {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header .shop-global-nav .shop-global-greeting-left .greet-name {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header .shop-global-nav .navbar-toggler,
    .header .shop-primary-nav .navbar-toggler {
        order: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin: 0;
        margin-left: auto !important;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        flex: 0 0 auto;
    }

    .header .shop-global-nav .navbar-toggler:focus,
    .header .shop-primary-nav .navbar-toggler:focus {
        outline: 2px solid rgba(255, 204, 0, 0.35);
        outline-offset: 2px;
    }

    .header .shop-global-nav .navbar-toggler-icon,
    .header .shop-primary-nav .navbar-toggler-icon {
        background-image: none !important;
    }

    .header .navbar-toggler span,
    .header .mobile-nav-toggle span,
    .header .hamburger span {
        display: block;
        width: 22px;
        height: 3px;
        margin: 3px 0;
        background: #ffcc00;
    }

    .header .shop-global-nav .mobile-nav-toggle,
    .header .shop-primary-nav .mobile-nav-toggle {
        flex-direction: column;
        justify-content: center;
    }

    .header .shop-global-nav .mobile-nav-toggle span,
    .header .shop-primary-nav .mobile-nav-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        margin: 4px 0;
        background-color: #ffcc00 !important;
        border-radius: 2px;
    }

    .header .shop-global-nav .navbar-collapse,
    .header .shop-primary-nav .navbar-collapse {
        order: 4;
        width: 100%;
        flex-basis: 100%;
        text-align: right;
        margin-top: 4px;
    }

    .header .shop-global-nav .navbar-collapse.show,
    .header .shop-primary-nav .navbar-collapse.show {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .header .shop-global-nav .navbar-nav,
    .header .shop-primary-nav .navbar-nav {
        width: 100%;
        align-items: flex-end;
        text-align: right;
    }

    .header .shop-primary-nav {
        width: 100%;
    }

    .header .shop-primary-nav .navbar-nav {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        width: 100%;
    }

    .header .shop-global-nav .navbar-nav .nav-item,
    .header .shop-primary-nav .navbar-nav .nav-item {
        width: 100%;
    }

    .header .shop-global-nav .navbar-nav .nav-link,
    .header .shop-primary-nav .navbar-nav .nav-link {
        display: block;
        width: 100%;
        text-align: right;
    }

    .header .shop-global-nav .dropdown-menu,
    .header .shop-primary-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        min-width: 0;
        margin-top: 0.35rem;
        text-align: right;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .header .shop-global-nav .dropdown-menu .dropdown-item,
    .header .shop-primary-nav .dropdown-menu .dropdown-item {
        text-align: right;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .header .shop-global-nav .dropdown-menu .dropdown-item {
        color: #ffffff;
    }

    .header .shop-global-nav .shop-global-search,
    .header .shop-primary-nav .primary-nav-search {
        width: 100%;
        margin-top: 8px;
    }

    .header .shop-global-nav .shop-global-search,
    .header .shop-primary-nav .primary-nav-search,
    .header .shop-global-nav .form-inline {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
    }

    .header .shop-global-nav .shop-global-search .form-control,
    .header .shop-primary-nav .primary-nav-search .form-control {
        flex: 1 1 70%;
        width: auto !important;
        min-width: 0;
    }

    .header .shop-global-nav .shop-global-search .btn,
    .header .shop-primary-nav .primary-nav-search .btn {
        flex: 0 0 calc(30% - 8px);
        min-width: 88px;
        max-width: 30%;
        white-space: nowrap;
    }

    .header .shop-global-nav .shop-global-search {
        display: none !important;
    }

    .header .primary-nav-mobile-search {
        width: 100%;
        padding: 8px 12px;
        background: #ff6f16;
    }

    .header .primary-nav-mobile-search .form-inline {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        margin: 0;
    }

    .header .primary-nav-mobile-search .form-control {
        flex: 1 1 auto;
        min-width: 0;
        height: 38px;
    }

    .header .primary-nav-mobile-search .btn {
        flex: 0 0 auto;
        min-width: 82px;
        height: 38px;
        white-space: nowrap;
    }

    .header .shop-global-mobile-search {
        width: 100%;
        padding: 8px 12px;
        background: #0b1220;
    }

    .header .shop-global-mobile-search .form-inline {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        margin: 0;
    }

    .header .shop-global-mobile-search .form-control {
        flex: 1 1 auto;
        min-width: 0;
        height: 38px;
    }

    .header .shop-global-mobile-search .btn {
        flex: 0 0 auto;
        min-width: 82px;
        height: 38px;
        white-space: nowrap;
    }

    .homepage-catalogue-header,
    .listing-toolbar,
    .checkout-reassurance-strip,
    .checkout-stage-card,
    .checkout-preview-card,
    .checkout-summary-card,
    .basket-items,
    .content-block {
        border-radius: 12px;
        margin-left: 0;
        margin-right: 0;
    }

    .home-hero-shell,
    .home-shortcuts,
    .homepage-catalogue-shell,
    .listing-shell {
        overflow-x: clip;
    }

    .home-shortcuts .nav,
    .listing-toolbar .form-inline {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .row.listing-grid.storefront-product-grid,
    .row.home-shop-grid.storefront-product-grid,
    .storefront-related-grid {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }

    .storefront-related-grid > li,
    .row.listing-grid.storefront-product-grid > li,
    .row.home-shop-grid.storefront-product-grid > li {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .premium-product-page img,
    .premium-product-page video,
    .premium-product-page iframe,
    .product_pod .image_container img,
    .bsb-order-thumb img,
    .bsb-order-item-thumb img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .basket-page-shell .basket-line-actions,
    .basket-page-shell .basket-actions-row,
    .basket-page-shell .basket-trust-strip,
    .checkout-shell-page .wallet-deduction-inline,
    .checkout-shell-page .d-flex.gap-2,
    .account-profile .btn-group,
    .account-profile .page_inner > p,
    .login_form .card,
    .register_form .card {
        flex-wrap: wrap;
    }

    .basket-page-shell .basket-line-actions {
        gap: 6px;
    }

    .basket-page-shell .basket-trust-strip {
        line-height: 1.6;
    }

    .checkout-shell-page .wallet-deduction-inline {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .checkout-shell-page .wallet-deduction-inline .wallet-deduction-field,
    .checkout-shell-page .wallet-deduction-inline .btn-apply-wallet,
    .checkout-shell-page .checkout-cta-primary,
    .checkout-shell-page .checkout-placeorder-btn,
    .login_form .btn,
    .register_form .btn,
    .account-profile .btn-group > .btn,
    .account-profile > .btn,
    .content-block .btn {
        width: 100%;
    }

    .checkout-shell-page .checkout-preview-summary,
    .checkout-shell-page .col-sm-4.offset-sm-8 {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .account-profile .nav.nav-pills.flex-column {
        gap: 8px;
        margin-bottom: 12px;
    }

    .account-profile .nav.nav-pills.flex-column .nav-link {
        white-space: normal;
    }

    .account-profile .mobile-table-scroll,
    .checkout-shell-page .mobile-table-scroll,
    .basket-page-shell .mobile-table-scroll,
    .mobile-table-scroll {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .account-profile table,
    .checkout-shell-page table,
    .basket-page-shell table {
        min-width: 100%;
    }

    .account-profile td,
    .account-profile th,
    .checkout-shell-page td,
    .checkout-shell-page th {
        overflow-wrap: break-word;
    }

    .account-profile address,
    .account-profile .table td,
    .account-profile .table th,
    .basket-item-title a,
    .bsb-order-item-title,
    .bsb-order-meta-value {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .account-profile .btn-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .account-profile .btn-group .dropdown-menu {
        width: 100%;
    }

    .bs-footer-otieon .bs-footer-otieon-col--legal,
    .bs-footer-otieon .bs-footer-otieon-col--legal + .bs-footer-otieon-col {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .bs-footer-otieon .bs-footer-otieon-col--legal .bs-footer-otieon-title,
    .bs-footer-otieon .bs-footer-otieon-col--legal + .bs-footer-otieon-col .bs-footer-otieon-title,
    .bs-footer-otieon .bs-footer-otieon-col--legal > h3,
    .bs-footer-otieon .bs-footer-otieon-col--legal + .bs-footer-otieon-col > h3 {
        width: 100%;
        text-align: right;
        margin-bottom: 6px;
    }

    .bs-footer-otieon .bs-footer-otieon-col--legal ul,
    .bs-footer-otieon .bs-footer-otieon-col--legal + .bs-footer-otieon-col ul {
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .bs-footer-otieon .bs-footer-otieon-col--legal li,
    .bs-footer-otieon .bs-footer-otieon-col--legal + .bs-footer-otieon-col li {
        width: 100%;
        text-align: right;
        margin-bottom: 4px;
    }

    .bs-footer-otieon .bs-footer-otieon-col--legal a,
    .bs-footer-otieon .bs-footer-otieon-col--legal + .bs-footer-otieon-col a {
        display: inline-block;
        text-align: right;
    }

    .login-page .login-form-top,
    .forgot-page .forgot-topbar,
    .forgot-page .forgot-trust {
        display: none !important;
    }

    .login-page .login-form-panel,
    .forgot-page .forgot-panel {
        padding-top: 20px !important;
    }

    .login-page .login-copy,
    .forgot-page .forgot-copy {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
  .navbar-toggler-icon {
    display: none !important;
  }

  .navbar-toggler::before,
  .navbar-toggler::after {
    display: none !important;
    content: none !important;
  }

  .navbar-toggler > .mobile-nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  .navbar-toggler > .mobile-nav-toggle > span {
    display: block !important;
    width: 22px !important;
    height: 3px !important;
    margin: 4px 0 !important;
    background: #ffcc00 !important;
  }

  .home-landing-page .shop-global-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    width: 100% !important;
  }

  .home-landing-page .shop-global-nav .navbar-brand {
    order: 1 !important;
    flex: 0 0 auto !important;
    margin-right: 8px !important;
  }

  .home-landing-page .shop-global-nav .shop-global-greeting-left {
    order: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 150px) !important;
    margin: 0 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .home-landing-page .shop-global-nav .navbar-toggler {
    order: 3 !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .home-landing-page .shop-global-nav .navbar-collapse {
    order: 4 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-top: 8px !important;
    text-align: right !important;
  }

  .home-landing-page .shop-global-nav .navbar-collapse.show {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
  }

  .home-landing-page .shop-global-nav .navbar-collapse .navbar-nav {
    width: 100% !important;
    align-items: flex-end !important;
    text-align: right !important;
  }

  .home-landing-page .shop-global-nav .navbar-collapse .nav-item,
  .home-landing-page .shop-global-nav .navbar-collapse .nav-link {
    width: 100% !important;
    text-align: right !important;
  }

  .home-landing-page .shop-global-nav .shop-global-search {
    order: 5 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .home-landing-page .shop-global-nav .shop-global-search .form-control {
    flex: 1 1 70% !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .home-landing-page .shop-global-nav .shop-global-search .btn {
    flex: 0 0 calc(30% - 8px) !important;
    min-width: 88px !important;
    width: auto !important;
    white-space: nowrap !important;
  }

  .home-landing-page .store-subnav-list {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .home-landing-page .store-subnav-list li {
    flex: 0 0 auto !important;
  }

  .home-landing-page .store-subnav-list a {
    text-align: right !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 768px) {
  .home-landing-page .store-subnav-list {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .home-landing-page .store-subnav-list li,
  .home-landing-page .store-subnav-list a {
    text-align: left !important;
  }
}

@media (max-width: 768px) {
  .page_inner:has(.vendor-experience) > .page-header,
  .page_inner:has(.franchise-experience) > .page-header {
    display: none !important;
  }
}

/* ================================
   7. CUSTOMER ACCOUNT PAGES
   ================================ */
@media (max-width: 768px) {
  .account-page .shop-global-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    width: 100% !important;
  }

  .account-page .shop-global-nav .navbar-brand {
      order: 1 !important;
      flex: 0 0 auto !important;
      margin-right: 8px !important;
  }

  .account-page .shop-global-nav .unified-site-brand-logo,
  .account-page .shop-global-nav .site-brand-logo {
      max-width: 144px !important;
      max-height: 27px !important;
  }

  .account-page .shop-global-nav .shop-global-greeting-left {
    order: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 150px) !important;
    margin: 0 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .account-page .shop-global-nav .navbar-toggler {
    order: 3 !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .account-page .shop-global-nav .navbar-collapse {
    order: 4 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-top: 8px !important;
    text-align: right !important;
  }

  .account-page .shop-global-nav .navbar-collapse.show {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
  }

  .account-page .shop-global-nav .navbar-collapse .navbar-nav {
    width: 100% !important;
    align-items: flex-end !important;
    text-align: right !important;
  }

  .account-page .shop-global-nav .navbar-collapse .nav-item,
  .account-page .shop-global-nav .navbar-collapse .nav-link {
    width: 100% !important;
    text-align: right !important;
  }

  .account-page .shop-global-nav .shop-global-search {
    order: 5 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .account-page .shop-global-nav .shop-global-search .form-control {
    flex: 1 1 70% !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .account-page .shop-global-nav .shop-global-search .btn {
    flex: 0 0 calc(30% - 8px) !important;
    min-width: 88px !important;
    width: auto !important;
    white-space: nowrap !important;
  }

  .account-page .navbar-toggler-icon {
    display: none !important;
  }

  .account-page .navbar-toggler::before,
  .account-page .navbar-toggler::after {
    display: none !important;
    content: none !important;
  }

  .account-page .navbar-toggler > .mobile-nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  .account-page .navbar-toggler > .mobile-nav-toggle > span {
    display: block !important;
    width: 22px !important;
    height: 3px !important;
    margin: 4px 0 !important;
    background: #ffcc00 !important;
  }

  .account-page .store-subnav {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .account-page .store-subnav .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .account-page .store-subnav-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    width: max-content !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .account-page .store-subnav-list li {
    flex: 0 0 auto !important;
  }

  .account-page .store-subnav-list a {
    white-space: nowrap !important;
  }

  .account-page .account-hub-shell {
    padding-top: 1.25rem !important;
    padding-bottom: 2rem !important;
  }

  .account-page .account-hub-grid {
    display: grid !important;
    gap: 10px !important;
  }

  .account-page .account-hub-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 44px !important;
    padding: 12px 14px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    background: #f9fafb !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06) !important;
    text-decoration: none !important;
    gap: 12px !important;
  }

  .account-page .account-hub-card:nth-child(2n) {
    background: #f5f9ff !important;
  }

  .account-page .account-hub-card:active {
    background: #eef2ff !important;
  }

  .account-page .account-hub-card::after {
    content: ">" !important;
    flex: 0 0 auto !important;
    color: #6b7280 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  .account-page .account-hub-card h2,
  .account-page .account-card-title {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111827 !important;
  }

  .account-page .account-hub-card p,
  .account-page .account-hub-card-description,
  .account-page .account-hub-card-subtitle {
    display: none !important;
  }
}

.account-page .shop-global-search {
  display: flex !important;
  align-items: stretch !important;
  gap: 8px !important;
}

.account-page .shop-global-search .form-control {
  display: block !important;
  height: calc(1.5em + 0.75rem + 2px) !important;
  min-height: 0 !important;
  padding: 0.375rem 0.75rem !important;
  line-height: 1.5 !important;
  font-size: 1rem !important;
  border-radius: 0.25rem !important;
}

.account-page .shop-global-search .btn {
  display: inline-block !important;
  height: calc(1.5em + 0.75rem + 2px) !important;
  min-height: 0 !important;
  padding: 0.375rem 0.75rem !important;
  line-height: 1.5 !important;
  font-size: 1rem !important;
  border-radius: 0.25rem !important;
  font-weight: 400 !important;
}

/* ================================
   CUSTOMER ACCOUNT HUB
   ================================ */
.account-page .account-hub-shell {
  padding-top: 1.25rem !important;
  padding-bottom: 2rem !important;
}

.account-page .account-hub-grid {
  display: grid !important;
  gap: 10px !important;
}

.account-page .account-hub-card {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 44px !important;
  padding: 12px 14px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06) !important;
  text-decoration: none !important;
}

.account-page .account-card-title {
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #111827 !important;
}

.account-page .account-hub-card:nth-child(1) {
  background: #f5f9ff !important;
}

.account-page .account-hub-card:nth-child(2) {
  background: #fff7ed !important;
}

.account-page .account-hub-card:nth-child(3) {
  background: #f0fdf4 !important;
}

.account-page .account-hub-card:nth-child(4) {
  background: #fdf2f8 !important;
}

.account-page .account-hub-card:nth-child(5) {
  background: #f8fafc !important;
}

.account-page .account-hub-card:nth-child(6) {
  background: #eef2ff !important;
}

@media (max-width: 991.98px) {
    .header .shop-global-nav .shop-global-search.d-none,
    .home-landing-page .shop-global-nav .shop-global-search.d-none,
    .account-page .shop-global-nav .shop-global-search.d-none {
        display: none !important;
    }

    .shop-global-mobile-search {
        width: 100%;
        padding: 8px 12px;
        background: #0b1220;
    }

    .shop-global-mobile-search .form-inline {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 8px;
        width: 100%;
        margin: 0;
    }

    .shop-global-mobile-search .form-control {
        flex: 1 1 auto;
        min-width: 0;
        width: auto !important;
        height: 38px;
    }

    .shop-global-mobile-search .btn {
        flex: 0 0 auto;
        min-width: 82px;
        height: 38px;
        white-space: nowrap;
    }

    .store-mobile-search {
        width: 100%;
        padding: 6px 12px;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
    }

    .store-mobile-search .form-inline {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 8px;
        width: 100%;
        margin: 0;
    }

    .store-mobile-search .form-control {
        flex: 1 1 auto;
        min-width: 0;
        width: auto !important;
        height: 29px;
        min-height: 29px;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }

    .store-mobile-search .btn {
        flex: 0 0 auto;
        min-width: 82px;
        height: 29px;
        min-height: 29px;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
        white-space: nowrap;
    }

    body.storefront-listing-page .container.page.storefront-listing-surface {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    body.storefront-listing-page .container.page.storefront-listing-surface > .page_inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

body.storefront-listing-page .container.page.storefront-listing-surface {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #ffffff !important;
}

body.storefront-listing-page .container.page.storefront-listing-surface > .page_inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: #ffffff !important;
}

body.storefront-listing-page .listing-shell.homepage-catalogue-shell {
    background: #ffffff !important;
}

@media (min-width: 992px) {
    body.storefront-listing-page .container.page.storefront-listing-surface {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Catalogue product-card discount badge placement lock */
.product_pod.store-card .product-image-wrapper,
.product_pod.store-card .product-image-frame {
  position: relative !important;
  overflow: hidden !important;
}

.product_pod.store-card .product-image-frame .bs-discount-badge {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  z-index: 4 !important;
  margin: 0 !important;
  transform: none !important;
}

@media (max-width: 575.98px) {
  .product_pod.store-card .product-image-wrapper,
  .product_pod.store-card .product-image-frame {
    position: relative !important;
    overflow: hidden !important;
  }

  .product_pod.store-card .product-image-frame .bs-discount-badge {
    top: 9px !important;
    right: 8px !important;
  }
}

@media (max-width: 767.98px) {
  .home-landing-page .product_pod.store-card .product-image-frame .bs-discount-badge,
  .storefront-listing-page .product_pod.store-card .product-image-frame .bs-discount-badge,
  .product_pod.store-card .product-image-frame .bs-discount-badge {
    top: 9px !important;
    right: 8px !important;
  }
}

.store-subnav .store-subnav-list .dropdown,
.store-subnav .dropdown,
.subnav-home .dropdown,
.subnav-catalogue .dropdown {
  position: relative !important;
}

.store-subnav .store-subnav-list .dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: middle;
}

.store-subnav .store-subnav-list .dropdown-menu {
  margin-top: 0;
  min-width: 14rem;
}

.store-subnav .dropdown-menu,
.subnav-home .dropdown-menu,
.subnav-catalogue .dropdown-menu {
  top: 100% !important;
  margin-top: 6px !important;
  border-radius: 6px;
  max-width: calc(100vw - 16px);
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  transform: none !important;
  will-change: auto !important;
}

.store-subnav .store-subnav-list .dropdown-menu .dropdown-item {
  color: #1f2937 !important;
  min-height: auto;
  display: block;
}

.store-subnav .dropdown-menu .dropdown-item,
.subnav-home .dropdown-menu .dropdown-item,
.subnav-catalogue .dropdown-menu .dropdown-item {
  font-size: 13px !important;
  padding: 6px 12px !important;
}

@media (min-width: 992px) {
  .store-subnav .store-subnav-list .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.home-landing-page #homepage-category-shortcuts,
.home-landing-page .home-shop-sidebar {
  display: none !important;
}

.home-landing-page .home-shop-shell {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.catalogue-page-view .storefront-listing-page-row {
  display: block !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.catalogue-page-view .storefront-listing-page-row > .storefront-listing-sidebar {
  display: none !important;
}

body.catalogue-page-view .storefront-listing-page-row > .storefront-listing-main {
  display: block !important;
  flex: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-landing-page .store-subnav .container {
  display: flex !important;
  justify-content: flex-start !important;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.home-landing-page .store-subnav-list {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.home-landing-page .store-subnav-list li,
.home-landing-page .store-subnav-list a {
  text-align: left !important;
}

.store-subnav .container,
.subnav-home .container,
.subnav-catalogue .container {
  display: flex !important;
  justify-content: flex-start !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.store-subnav .store-subnav-list,
.subnav-home .store-subnav-list,
.subnav-catalogue .store-subnav-list {
  justify-content: flex-start !important;
  margin-right: auto !important;
}

/* ================================
   8. RESPONSIVE STOREFRONT OVERRIDES
   ================================ */
@media (max-width: 768px) {
  .store-subnav,
  .store-subnav .container,
  .store-subnav-list,
  .store-subnav-list .dropdown,
  .subnav-home,
  .subnav-home .container,
  .subnav-catalogue,
  .subnav-catalogue .container {
    overflow: visible !important;
  }

  .home-landing-page .store-subnav-list {
    flex-wrap: wrap !important;
    row-gap: 0.35rem !important;
    column-gap: 0.5rem !important;
    padding: 0.45rem 0 !important;
  }

  .store-subnav .store-subnav-list .dropdown-menu,
  .subnav-home .dropdown-menu,
  .subnav-catalogue .dropdown-menu {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    min-width: 13.75rem !important;
    max-width: calc(100vw - 16px) !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    white-space: normal !important;
    z-index: 1080 !important;
    will-change: auto !important;
  }

  .store-subnav .dropdown-menu.show,
  .subnav-home .dropdown-menu.show,
  .subnav-catalogue .dropdown-menu.show {
    transform: none !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: auto !important;
    z-index: 3000 !important;
    will-change: auto !important;
  }

  .store-subnav .store-subnav-list .dropdown-menu .dropdown-item,
  .subnav-home .dropdown-menu .dropdown-item,
  .subnav-catalogue .dropdown-menu .dropdown-item {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    min-height: 0 !important;
    display: block !important;
  }
}

/* ================================
   5. HOMEPAGE HERO + RAILS
   ================================ */
.bright-home-hero {
    width: 100%;
    padding: 28px 16px;
    background: linear-gradient(135deg, #fff7e6 0%, #ffffff 55%, #f4fbff 100%);
}

.bright-home-hero-v2 {
    position: relative;
}

.bright-hero-slider {
    position: relative;
    overflow: hidden;
}

.bright-hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.bright-hero-slide.active {
    display: block;
    opacity: 1;
}

.bright-home-hero-content {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: center;
    border-radius: 24px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.bright-home-hero-text h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 14px;
}

.bright-home-hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #555;
    max-width: 620px;
    margin: 0 0 22px;
}

.bright-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bright-hero-btn-primary,
.bright-hero-btn-secondary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
}

.bright-hero-btn-primary {
    background: #f97316;
    border: 1px solid #f97316;
    color: #ffffff;
}

.bright-hero-btn-primary:hover,
.bright-hero-btn-primary:focus {
    background: #ea580c;
    border-color: #ea580c;
    color: #ffffff;
}

.bright-hero-btn-secondary {
    background: transparent;
    border: 1px solid #1d4ed8;
    color: #1d4ed8;
}

.bright-hero-btn-secondary:hover,
.bright-hero-btn-secondary:focus {
    background: #eff6ff;
    color: #1e40af;
}

.bright-home-hero-image-wrap {
    border-radius: 22px;
    overflow: hidden;
    background: #f2f2f2;
    min-height: 260px;
}

.bright-home-hero-image {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767.98px) {
    .bright-home-hero {
        padding: 18px 10px;
    }

    .bright-home-hero-content {
        grid-template-columns: 1fr;
        padding: 22px;
        border-radius: 18px;
    }

    .bright-home-hero-image-wrap,
    .bright-home-hero-image {
        min-height: 180px;
    }
}


.account-page .account-hub-card p,
.account-page .account-hub-card-description,
.account-page .account-hub-card-subtitle {
  display: none !important;
}

@media (max-width: 768px) {
  .account-page .shop-global-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    width: 100% !important;
  }

  .account-page .shop-global-nav .navbar-brand {
    order: 1 !important;
    flex: 0 0 auto !important;
    margin-right: 8px !important;
  }

  .account-page .shop-global-nav .shop-global-greeting-left {
    order: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 150px) !important;
    margin: 0 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .account-page .shop-global-nav .navbar-toggler {
    order: 3 !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .account-page .shop-global-nav .navbar-collapse {
    order: 4 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-top: 8px !important;
    text-align: right !important;
  }

  .account-page .shop-global-nav .shop-global-search {
    order: 5 !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .account-page .shop-global-nav .shop-global-search .form-control {
    flex: 1 1 70% !important;
    min-width: 0 !important;
    width: auto !important;
  }

  .account-page .shop-global-nav .shop-global-search .btn {
    flex: 0 0 calc(30% - 8px) !important;
    min-width: 88px !important;
    width: auto !important;
    white-space: nowrap !important;
  }

  .account-page .shop-global-nav .navbar-brand {
    max-width: 160px !important;
    width: auto !important;
    margin-right: 12px !important;
  }

  .account-page .shop-global-nav .navbar-brand img,
  .account-page .shop-global-nav .unified-site-brand-logo,
  .account-page .shop-global-nav .site-brand-logo {
    width: 144px !important;
    max-width: 144px !important;
    height: auto !important;
    max-height: none !important;
  }

  .account-page .shop-global-nav .shop-global-greeting-left {
    max-width: calc(100% - 196px) !important;
  }

  .account-page .store-subnav {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .account-page .store-subnav-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    width: max-content !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .account-page .store-subnav-list li {
    flex: 0 0 auto !important;
  }

  .account-page .store-subnav-list a {
    white-space: nowrap !important;
  }

  .account-page .account-hub-grid {
    display: grid !important;
    gap: 10px !important;
  }

  .account-page .account-hub-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 44px !important;
    padding: 12px 14px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    background: #f9fafb !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06) !important;
    text-decoration: none !important;
  }

  .account-page .account-hub-card p,
  .account-page .account-hub-card-description,
  .account-page .account-hub-card-subtitle {
    display: none !important;
  }
}

.account-page .account-hub-card:nth-child(1) {
  background: #f5f9ff !important;
}

.account-page .account-hub-card:nth-child(2) {
  background: #fff7ed !important;
}

.account-page .account-hub-card:nth-child(3) {
  background: #f0fdf4 !important;
}

.account-page .account-hub-card:nth-child(4) {
  background: #fdf2f8 !important;
}

.account-page .account-hub-card:nth-child(5) {
  background: #f8fafc !important;
}

.account-page .account-hub-card:nth-child(6) {
  background: #eef2ff !important;
}
