:root {
    --nike-black: #111111;
    --nike-gray: #f5f5f5;
    --nike-dark-gray: #757575;
    --nike-orange: #ff6900;
}
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--nike-black);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}
/* Header & Navigation */
.header {
    border-bottom: 1px solid #e5e5e5;
    background-color: #fff;
}
.header-bottom {
    padding: 15px 0;
}
.logo img {
    max-height: 50px;
}
.menu ul {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu ul li a {
    font-weight: 600;
    font-size: 16px;
    color: var(--nike-black);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.menu ul li a:hover {
    color: var(--nike-dark-gray);
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--nike-gray);
    overflow: hidden;
}
.hero-section img.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.btn-nike {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff;
    color: var(--nike-black);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-nike:hover {
    background-color: #e5e5e5;
}
.btn-nike-dark {
    background-color: var(--nike-black);
    color: #fff;
}
.btn-nike-dark:hover {
    background-color: #333;
    color: #fff;
}
/* Product Grid */
.product-card {
    transition: transform 0.3s ease;
    border: none;
    margin-bottom: 30px;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image {
    background-color: var(--nike-gray);
    position: relative;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-info {
    padding: 15px 0;
}
.product-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--nike-black);
}
.product-category {
    color: var(--nike-dark-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.product-price {
    font-weight: 600;
    font-size: 1.1rem;
}
/* Product Details Page */
.product-details-content {
    margin-top: 60px;
}
.product-details-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-details-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.qtyAddCartBtn {
    border-radius: 30px !important;
    background-color: var(--nike-black) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 15px !important;
    border: none !important;
}
.qtyAddCartBtn:hover {
    background-color: #333 !important;
}
.buyNowBtn {
    border-radius: 30px !important;
    background-color: #fff !important;
    color: var(--nike-black) !important;
    border: 1px solid #ccc !important;
    font-weight: 600;
    padding: 15px !important;
}
.buyNowBtn:hover {
    border-color: var(--nike-black) !important;
}
/* Buttons global override */
.btn--base {
    background-color: var(--nike-black) !important;
    border-color: var(--nike-black) !important;
    color: #fff !important;
    border-radius: 30px;
}
.btn--base:hover {
    background-color: #333 !important;
    border-color: #333 !important;
}
/* Footer */
.footer {
    background-color: var(--nike-black);
    color: #fff;
    padding: 60px 0 30px;
}
.footer-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #fff;
}


/* Mobile search */

.jb-mobile-search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
}

.jb-mobile-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jb-mobile-search-panel form {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
}

.jb-mobile-search-panel button {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 19px;
}

.jb-mobile-search-panel input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 14px;
}

/* Mobile drawer */

.jb-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    pointer-events: none;
}

.jb-mobile-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.jb-mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.jb-mobile-drawer.is-open .jb-mobile-drawer-overlay {
    opacity: 1;
}

.jb-mobile-drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(340px, 88vw);
    height: 100%;
    padding: 18px;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: 18px 0 50px rgba(15, 23, 42, 0.18);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
}

.jb-mobile-drawer.is-open .jb-mobile-drawer-panel {
    transform: translateX(0);
}

.jb-mobile-drawer-head {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.jb-mobile-logo img {
    display: block;
    width: auto;
    height: 36px;
    max-width: 74px;
    object-fit: contain;
}

.jb-mobile-menu-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f4f6f8;
    font-size: 20px;
}

.jb-mobile-nav {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.jb-mobile-nav > a,
.jb-mobile-category-toggle {
    min-height: 48px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #edf0f4;
    background: transparent;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

.jb-mobile-category-list {
    display: none;
    padding: 12px 0 6px 14px;
    border-bottom: 1px solid #edf0f4;
}

.jb-mobile-category-group {
    margin-bottom: 14px;
}

.jb-mobile-category-group strong {
    display: block;
    margin-bottom: 7px;
    color: #111827;
    font-size: 13px;
}

.jb-mobile-category-group a {
    display: block;
    padding: 5px 0;
    color: #6b7280;
    font-size: 13px;
}

body.jb-menu-open {
    overflow: hidden;
}

/* Tablet */

@media (max-width: 1199px) {
    .jb-header-container {
        grid-template-columns: auto minmax(180px, 230px) 1fr auto;
        gap: 18px;
        padding: 0 18px;
    }

    .jb-desktop-nav {
        gap: 20px;
    }

    .jb-desktop-nav > a,
    .jb-nav-dropdown-btn {
        font-size: 14px;
    }
}

/* Mobile */

@media (max-width: 991px) {
    .jb-header-container {
        min-height: 62px;
        grid-template-columns: auto 1fr;
        gap: 14px;
        padding: 0 14px;
    }

    .jb-logo img {
        height: 34px !important;
        max-width: 70px !important;
    }

    .jb-header-actions {
        justify-content: flex-end;
    }

    .jb-action-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .jb-header-container {
        min-height: 58px;
        padding: 0 12px;
    }

    .jb-logo img {
        height: 31px !important;
        max-width: 64px !important;
    }

    .jb-header-actions {
        gap: 6px;
    }

    .jb-action-btn {
        width: 36px;
        height: 36px;
        font-size: 19px;
    }
}
/* =========================================================
   STAG SOURCE-THEME HEADER ALIGNMENT
   Paste this at the VERY BOTTOM of custom.css
========================================================= */

/* Remove top information strip */
.main-header .header-top {
    display: none !important;
}

/* Main header row */
.jb-clean-source-header .header-lower {
    background: #ffffff;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.04);
}

.jb-clean-source-header .large-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.jb-clean-source-header .outer-box {
    min-height: 84px !important;
    display: grid !important;
    grid-template-columns: minmax(330px, 1fr) auto minmax(180px, 1fr) !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 0 !important;
}

/* Left area */
.jb-clean-source-header .menu-left-content {
    min-width: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
}

.jb-clean-source-header .jb-desktop-logo {
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    margin: 0 !important;
    padding: 0 !important;
}

.jb-clean-source-header .jb-desktop-logo img {
    display: block;
    width: auto !important;
    height: 48px !important;
    max-width: 95px !important;
    object-fit: contain;
}

/* Category grid button */
.jb-clean-source-header .category-toggle {
    --size: 40px;
    flex: 0 0 var(--size);
    margin: 0 !important;
}

/* Desktop search */
.jb-clean-source-header .search-form {
    width: 100% !important;
    max-width: 260px !important;
    min-width: 160px;
    height: 42px;
    margin: 0 !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid #d9dde3;
}

.jb-clean-source-header .search-form__btn {
    flex: 0 0 auto;
    margin-right: 10px;
}

.jb-clean-source-header .search-form__input {
    width: 100%;
    height: 40px;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 15px;
}

/* Center navigation */
.jb-clean-source-header .menu-area {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.jb-clean-source-header .main-menu,
.jb-clean-source-header .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jb-clean-source-header .navigation {
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.jb-clean-source-header .navigation > li {
    margin: 0 !important;
    padding: 0 !important;
}

.jb-clean-source-header .navigation > li > a {
    min-height: 84px;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

/* Megamenu */
.jb-clean-source-header .navigation > li.dropdown > .megamenu {
    top: 100% !important;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

/* Right icons */
.jb-clean-source-header .menu-right-content {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.jb-clean-source-header .option-list {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin: 0 !important;
}

.jb-clean-source-header .option-list__btn,
.jb-clean-source-header .mobile-nav-toggler {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50%;
    background: #f4f6f8;
}

/* Hamburger only on mobile */
@media only screen and (min-width: 992px) {
    .jb-clean-source-header .mobile-nav-toggler {
        display: none !important;
    }
}

/* Sticky header */
.jb-clean-source-header.fixed-header .outer-box {
    min-height: 70px !important;
}

.jb-clean-source-header.fixed-header .navigation > li > a {
    min-height: 70px;
}

.jb-clean-source-header.fixed-header .jb-desktop-logo img {
    height: 40px !important;
}

/* Tablet */
@media screen and (max-width: 1199px) and (min-width: 992px) {
    .jb-clean-source-header .outer-box {
        grid-template-columns: minmax(275px, 1fr) auto minmax(145px, 1fr) !important;
        gap: 16px !important;
    }

    .jb-clean-source-header .search-form {
        max-width: 190px !important;
    }

    .jb-clean-source-header .navigation {
        gap: 18px !important;
    }

    .jb-clean-source-header .navigation > li > a {
        font-size: 14px;
    }

    .jb-clean-source-header .jb-desktop-logo img {
        height: 42px !important;
        max-width: 84px !important;
    }
}

/* Mobile */
@media screen and (max-width: 991px) {
    .jb-clean-source-header .large-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .jb-clean-source-header .outer-box {
        min-height: 64px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .jb-clean-source-header .menu-left-content {
        flex: 1;
    }

    .jb-clean-source-header .menu-left-content > .logo-box.d-lg-none {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 !important;
    }

    .jb-clean-source-header .menu-left-content > .logo-box.d-lg-none img {
        width: auto !important;
        height: 38px !important;
        max-width: 76px !important;
        object-fit: contain;
    }

    .jb-clean-source-header .category-toggle {
        display: none !important;
    }

    .jb-clean-source-header .search-form {
        display: none !important;
    }

    .jb-clean-source-header .menu-right-content {
        margin-left: auto;
    }

    .jb-clean-source-header .option-list {
        gap: 7px !important;
    }

    .jb-clean-source-header .option-list__btn,
    .jb-clean-source-header .mobile-nav-toggler {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px;
    }
}

@media screen and (max-width: 575px) {
    .jb-clean-source-header .outer-box {
        min-height: 58px !important;
    }

    .jb-clean-source-header .menu-left-content > .logo-box.d-lg-none img {
        height: 34px !important;
        max-width: 68px !important;
    }

    .jb-clean-source-header .option-list__btn,
    .jb-clean-source-header .mobile-nav-toggler {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
    }
}

/* Mobile drawer polish - keeps existing theme JS */
.mobile-menu .nav-logo img {
    width: auto !important;
    height: 42px !important;
    max-width: 88px !important;
    object-fit: contain;
}

.mobile-menu .navigation > li > a {
    font-size: 15px;
    font-weight: 600;
}

.category-menu .category-box {
    background: #ffffff;
}
/* =========================================
   SMALLER HEADER + LOGO
========================================= */

.jb-clean-source-header .outer-box {
    min-height: 66px !important;
}

.jb-clean-source-header .navigation > li > a {
    min-height: 66px !important;
    font-size: 14px !important;
}

.jb-clean-source-header .jb-desktop-logo img {
    height: 34px !important;
    max-width: 68px !important;
}

.jb-clean-source-header .category-toggle,
.jb-clean-source-header .option-list__btn,
.jb-clean-source-header .mobile-nav-toggler {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
}

.jb-clean-source-header .search-form {
    height: 38px !important;
    max-width: 230px !important;
}

.jb-clean-source-header .search-form__input {
    height: 36px !important;
    font-size: 14px !important;
}

.jb-clean-source-header .navigation {
    gap: 22px !important;
}

.jb-clean-source-header.fixed-header .outer-box {
    min-height: 60px !important;
}

.jb-clean-source-header.fixed-header .navigation > li > a {
    min-height: 60px !important;
}

.jb-clean-source-header.fixed-header .jb-desktop-logo img {
    height: 30px !important;
}

/* Mobile */
@media screen and (max-width: 991px) {
    .jb-clean-source-header .outer-box {
        min-height: 56px !important;
    }

    .jb-clean-source-header .menu-left-content > .logo-box.d-lg-none img {
        height: 28px !important;
        max-width: 58px !important;
    }

    .jb-clean-source-header .option-list__btn,
    .jb-clean-source-header .mobile-nav-toggler {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
    }
}
/* =========================================================
   MINIMAL FASHION STORE DESIGN
========================================================= */

body {
    background: #ffffff;
    color: #111111;
}

/* Main container */

.large-container,
.custom--container,
.auto-container {
    width: 100%;
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}

/* Product grid */

.atlas-products-grid {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 44px;
}

/* Product card */

.atlas-product-card {
    width: 100%;
    background: transparent;
}

.atlas-product-card__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 0.82;
}

.atlas-product-card__image-link {
    width: 100%;
    height: 100%;
    display: block;
}

.atlas-product-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.atlas-product-card:hover .atlas-product-card__image {
    transform: scale(1.025);
}

/* Wishlist */

.atlas-product-card__wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
}

.atlas-product-card__wishlist button,
.atlas-product-card__wishlist a {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    padding: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #111 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Badge */

.atlas-product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    min-width: 58px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

/* Quick Add */

.atlas-product-card__quick-add {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 4;
    opacity: 0;
    transform: translateY(14px);
    transition: 0.25s ease;
}

.atlas-product-card:hover .atlas-product-card__quick-add {
    opacity: 1;
    transform: translateY(0);
}

.atlas-product-card__quick-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 54px;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(10, 10, 10, 0.96) !important;
    color: #ffffff !important;
    gap: 9px;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.atlas-product-card__quick-btn::before {
    content: "+";
    font-size: 21px;
    font-weight: 300;
}

/* Product content */

.atlas-product-card__content {
    padding-top: 18px;
}

.atlas-product-card__top {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    width: 100% !important;
}

.atlas-product-card__title {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    /* Limit to 2 lines */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: 2.7em !important;
}

.atlas-product-card__title a {
    color: #111 !important;
    text-decoration: none !important;
}

.atlas-product-card__price {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    width: 100% !important;
    text-align: left !important;
    margin-top: 4px !important;
    white-space: nowrap !important;
}

.atlas-product-card__price del {
    display: none;
}

.atlas-product-card__category {
    margin-top: 5px;
    color: #767676;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.13em;
}

.atlas-product-card__colors {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 11px;
}

.atlas-color {
    width: 15px;
    height: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    display: inline-block;
}

.atlas-color--dark {
    background: #151515;
}

.atlas-color--light {
    background: #e9e4d8;
}

/* Minimal homepage sections */

section {
    background: #ffffff;
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading__title {
    color: #111111;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    letter-spacing: -0.035em;
}

/* Remove decorative theme shapes */

.pattern-layer,
.pattern-layer-2,
.popular-product > .shape {
    display: none !important;
}

/* Featured-product carousel to clean grid appearance */

.popular-product {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    background: #ffffff !important;
}

.popular-product .inner-container {
    margin: 0 !important;
}

/* Mobile */

@media (max-width: 767px) {
    .large-container,
    .custom--container,
    .auto-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .atlas-products-grid {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 30px;
    }

    .atlas-product-card__media {
        aspect-ratio: 0.76;
    }

    .atlas-product-card__content {
        padding-top: 12px;
    }

    .atlas-product-card__title {
        font-size: 13px;
        height: 2.7em;
    }

    .atlas-product-card__price {
        font-size: 13px;
    }

    .atlas-product-card__category {
        font-size: 10px;
    }

    .atlas-product-card__wishlist {
        top: 10px;
        right: 10px;
    }

    .atlas-product-card__wishlist button,
    .atlas-product-card__wishlist a {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
    }

    .atlas-product-card__quick-add {
        left: 8px;
        right: 8px;
        bottom: 8px;
        opacity: 1;
        transform: none;
    }

    .atlas-product-card__quick-btn {
        min-height: 40px;
        font-size: 10px !important;
    }
}

/* =========================================================
   STAG HERO BANNER  — "Little Moments, Timeless Style"
   Matches the reference design with large wordmark +
   antlers on the left and full-bleed child photo on right.
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Inter:wght@400;600;700&display=swap');

/* Banner outer */
.stag-hero-banner {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.stag-hero-inner {
    display: flex;
    align-items: stretch;
    min-height: 420px;
    max-height: 560px;
}

/* ---- Left panel ---- */
.stag-hero-left {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px 60px 72px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

/* Brand logo block */
.stag-brand-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 20px;
}

/* Antler SVG */
.stag-antler-icon {
    width: 90px;
    height: auto;
    margin-bottom: -4px;
    display: block;
}

/* Giant wordmark */
.stag-brand-wordmark {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(64px, 7vw, 110px);
    font-weight: 700;
    color: #1a2a5e;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-top: -4px;
}

/* Tagline block */
.stag-hero-tagline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

.stag-tagline-plain {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 500;
    color: #1a2a5e;
    letter-spacing: 0;
    line-height: 1.4;
}

.stag-tagline-script {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(26px, 2.6vw, 40px);
    font-weight: 700;
    color: #C9973A;
    line-height: 1.2;
}

/* CTA button */
.stag-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 999px;
    background: #1a2a5e;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.25s ease, transform 0.2s ease;
}

.stag-hero-cta:hover {
    background: #C9973A;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---- Right panel ---- */
.stag-hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f8f6f2;
}

.stag-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.stag-hero-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: linear-gradient(135deg, #f0eee8 0%, #e8dfc8 100%);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .stag-hero-inner {
        flex-direction: column;
        max-height: none;
    }

    .stag-hero-left {
        flex: 0 0 auto;
        padding: 48px 28px 36px;
        align-items: center;
        text-align: center;
    }

    .stag-brand-logo-wrap {
        align-items: center;
    }

    .stag-hero-tagline {
        align-items: center;
    }

    .stag-hero-cta {
        align-self: center;
    }

    .stag-hero-right {
        min-height: 320px;
        max-height: 420px;
    }
}

@media (max-width: 575px) {
    .stag-hero-left {
        padding: 36px 20px 28px;
    }

    .stag-brand-wordmark {
        font-size: 72px;
    }

    .stag-antler-icon {
        width: 66px;
    }

    .stag-hero-right {
        min-height: 260px;
        max-height: 340px;
    }
}

/* =========================================================
   STAG PRODUCT DETAILS PAGE (PDP)
========================================================= */

/* --- PDP Banner (mini version at top of product page) --- */
.stag-pdp-banner {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.stag-pdp-banner__inner {
    display: flex;
    align-items: stretch;
    min-height: 200px;
    max-height: 280px;
    max-width: 1540px;
    margin: 0 auto;
}

.stag-pdp-banner__left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 36px 30px 48px;
    background: #ffffff;
}

.stag-pdp-banner__left .stag-brand-logo-wrap {
    margin-bottom: 10px;
}

.stag-pdp-banner__left .stag-antler-icon {
    width: 50px;
}

.stag-pdp-banner__left .stag-brand-wordmark {
    font-size: clamp(36px, 4vw, 60px);
}

.stag-pdp-banner__left .stag-hero-tagline {
    margin-bottom: 16px;
}

.stag-pdp-banner__left .stag-tagline-plain {
    font-size: clamp(13px, 1.3vw, 17px);
}

.stag-pdp-banner__left .stag-tagline-script {
    font-size: clamp(18px, 1.8vw, 26px);
}

.stag-pdp-banner__left .stag-hero-cta {
    padding: 10px 26px;
    font-size: 12px;
}

.stag-pdp-banner__right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f8f6f2;
}

.stag-pdp-banner__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.stag-pdp-banner__placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, #f0eee8 0%, #e8dfc8 100%);
}

@media (max-width: 767px) {
    .stag-pdp-banner__inner {
        flex-direction: column;
        max-height: none;
        min-height: auto;
    }
    .stag-pdp-banner__left {
        padding: 24px 20px 20px;
        align-items: center;
        text-align: center;
    }
    .stag-pdp-banner__left .stag-brand-logo-wrap {
        align-items: center;
    }
    .stag-pdp-banner__left .stag-hero-tagline {
        align-items: center;
    }
    .stag-pdp-banner__left .stag-hero-cta {
        align-self: center;
    }
    .stag-pdp-banner__right {
        min-height: 160px;
        max-height: 220px;
    }
}

/* --- PDP Main Section --- */
.stag-pdp {
    background: #ffffff;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.stag-pdp__wrapper {
    max-width: 100%;
}

/* --- PDP Product Info Panel --- */
.stag-pdp__info {
    padding: 0 0 0 24px;
}

.stag-pdp__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    line-height: 1.3;
    margin: 0 0 14px 0;
    word-break: break-word;
}

/* --- Price Block --- */
.stag-pdp__price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.stag-pdp__price {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
}

.stag-pdp__price span {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
}

.stag-pdp__price del {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    text-decoration: line-through;
    margin-left: 8px;
}

.stag-pdp__discount-tag {
    display: inline-block;
    padding: 3px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.stag-pdp__tax-note {
    font-size: 13px;
    color: #888888;
    margin: 0 0 20px 0;
}

/* --- Offers Section --- */
.stag-pdp__offers {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 24px;
}

.stag-pdp__offers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.stag-pdp__offers-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.stag-pdp__offers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stag-pdp__offer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444444;
}

.stag-pdp__offer-item i {
    color: #5b2d8e;
    font-size: 14px;
    min-width: 18px;
    text-align: center;
}

/* --- Size / Attributes --- */
.stag-pdp__attributes {
    margin-bottom: 24px;
}

.stag-pdp__size-block {
    margin-bottom: 16px;
}

.stag-pdp__size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.stag-pdp__size-label {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin: 0;
}

.stag-pdp__attributes .form--radio.size-buttons {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
}

.stag-pdp__attributes .form--radio.size-buttons label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.stag-pdp__attributes .form--radio.size-buttons label:hover {
    border-color: #111;
}

.stag-pdp__attributes .form--radio.size-buttons input:checked + label,
.stag-pdp__attributes .form--radio.size-buttons input[type="radio"]:checked ~ * {
    border-color: #5b2d8e;
    background: #f3e8ff;
    color: #5b2d8e;
}

.stag-pdp__attributes .form--control.form-select {
    max-width: 280px;
    height: 44px;
    border-radius: 6px;
    font-size: 14px;
}

.stag-pdp__attributes .product-details__color-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    margin-right: 8px;
    border: 2px solid transparent;
    background: var(--color);
    transition: all 0.2s ease;
}

.stag-pdp__attributes .product-details__color-box.selected {
    border-color: #5b2d8e;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #5b2d8e;
}

/* --- Stock Info --- */
.stag-pdp__stock-info {
    margin-bottom: 8px;
}

.stag-pdp__stock-info .label {
    font-weight: 600;
    font-size: 14px;
    color: #111;
    margin-right: 8px;
}

.stag-pdp__stock-info .value {
    font-size: 14px;
    color: #2e7d32;
}

/* --- Actions (Qty + Buttons) --- */
.stag-pdp__actions {
    margin-bottom: 24px;
}

.stag-pdp__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #fff;
}

.stag-pdp__qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.stag-pdp__qty-btn:hover {
    background: #e0e0e0;
}

.stag-pdp__qty-input {
    width: 50px !important;
    height: 40px !important;
    border: none !important;
    border-left: 1px solid #d0d0d0 !important;
    border-right: 1px solid #d0d0d0 !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    background: #fff !important;
    padding: 0 !important;
    -moz-appearance: textfield;
    border-radius: 0 !important;
}

.stag-pdp__qty-input::-webkit-inner-spin-button,
.stag-pdp__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.stag-pdp__btn-group {
    display: flex;
    gap: 12px;
}

.stag-pdp__btn {
    flex: 1;
    min-height: 50px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.stag-pdp__btn--cart {
    background: #ffffff;
    color: #111111;
    border: 2px solid #111111;
}

.stag-pdp__btn--cart:hover {
    background: #111111;
    color: #ffffff;
}

.stag-pdp__btn--buy {
    background: #5b2d8e;
    color: #ffffff;
    border: 2px solid #5b2d8e;
}

.stag-pdp__btn--buy:hover {
    background: #4a2475;
    border-color: #4a2475;
}

/* --- Delivery Section --- */
.stag-pdp__delivery {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 20px;
    background: #fafafa;
}

.stag-pdp__delivery-header {
    margin-bottom: 14px;
}

.stag-pdp__delivery-header h6 {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stag-pdp__delivery-header h6 i {
    color: #5b2d8e;
}

.stag-pdp__delivery-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stag-pdp__delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #444;
}

.stag-pdp__delivery-item i {
    color: #2e7d32;
    font-size: 14px;
    margin-top: 2px;
    min-width: 16px;
}

.stag-pdp__delivery-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #5b2d8e;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

/* --- Extras (Wishlist, Share) --- */
.stag-pdp__extras {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.stag-pdp__extras .wishlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stag-pdp__extras .wishlist-btn:hover,
.stag-pdp__extras .wishlist-btn.active {
    border-color: #e91e63;
    color: #e91e63;
}

.stag-pdp__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stag-pdp__share-btn:hover {
    border-color: #111;
    color: #111;
}

/* --- PDP Tabs Override --- */
.stag-pdp__tabs .tabs-box {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
}

.stag-pdp__tabs .tab-btns {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 0;
    margin-bottom: 24px;
    list-style: none;
    padding-left: 0;
}

.stag-pdp__tabs .tab-btn {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
}

.stag-pdp__tabs .tab-btn.active-btn,
.stag-pdp__tabs .tab-btn:hover {
    color: #111;
    border-bottom-color: #5b2d8e;
}

/* --- PDP Responsive --- */
@media (max-width: 991px) {
    .stag-pdp__info {
        padding: 24px 0 0 0;
    }
    .stag-pdp__title {
        font-size: 20px;
    }
    .stag-pdp__btn-group {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .stag-pdp__title {
        font-size: 18px;
    }
    .stag-pdp__price span {
        font-size: 20px;
    }
    .stag-pdp__btn-group {
        flex-direction: column;
    }
    .stag-pdp__btn {
        min-height: 46px;
        font-size: 13px;
    }
    .stag-pdp__offers {
        padding: 14px;
    }
    .stag-pdp__delivery {
        padding: 14px;
    }
}

/* --- Radio button size selector fix for PDP --- */
.stag-pdp__attributes .radio .form--radio.size-buttons,
.radio .form--radio.size-buttons {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
}

.stag-pdp__attributes .radio .form--radio.size-buttons label,
.radio .form--radio.size-buttons label {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 40px;
    padding: 0 14px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff !important;
}

.stag-pdp__attributes .radio .form--radio.size-buttons label:hover,
.radio .form--radio.size-buttons label:hover {
    border-color: #5b2d8e !important;
}

.stag-pdp__attributes .radio .form-check-input:checked + .form-check-label,
.stag-pdp__attributes .form-check-input:checked + .form-check-label {
    border-color: #5b2d8e !important;
    background: #f3e8ff !important;
    color: #5b2d8e !important;
}

/* Fix for dropdown attribute selector in PDP */
.stag-pdp__attributes .dropdown select.attribute-selector {
    max-width: 100%;
    width: 100%;
    height: 44px;
    border-radius: 6px !important;
    font-size: 14px !important;
    padding: 8px 14px !important;
    border: 1px solid #d0d0d0 !important;
    background: #fff !important;
}

/* Product details image slider fix */
.stag-pdp .product-details__thumb {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stag-pdp .product-details-preview-slider {
    width: 80px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.stag-pdp .product-details-slider {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.stag-pdp .product-details-slider__slide img {
    width: 100%;
    height: auto;
    display: block;
}

.stag-pdp .product-details-preview-slider .product-details-slider__slide {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.stag-pdp .product-details-preview-slider .product-details-slider__slide:hover,
.stag-pdp .product-details-preview-slider .product-details-slider__slide.slick-current {
    border-color: #5b2d8e;
}

.stag-pdp .product-details-preview-slider .product-details-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Accordion style tweaks for PDP */
.stag-pdp__accordions .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: #5b2d8e !important;
    box-shadow: none !important;
}

.stag-pdp__accordions .accordion-button:after {
    background-size: 14px;
}

.stag-pdp__accordions .accordion-item {
    background: transparent !important;
}

/* Product Card Borders */
/* ==============================
   PRODUCT CARD: Border + Hover Shadow
============================== */
.atlas-product-card {
    border: 2px solid #e8e8e8 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: all 0.25s ease !important;
}
.atlas-product-card:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.13) !important;
    transform: translateY(-3px) !important;
    border-color: #ccc !important;
}

/* ==============================
   STAG PDP: Side-by-Side Layout
============================== */
.stag-pdp-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 24px;
}
.stag-pdp-images-col {
    padding-right: 40px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.stag-pdp-info-col {
    padding-left: 24px;
    overflow: visible;
}

@media (max-width: 991px) {
    .stag-pdp-row {
        flex-wrap: wrap;
    }
    .stag-pdp-images-col {
        padding-right: 0;
        position: static;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .stag-pdp-info-col {
        padding-left: 0;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 24px;
    }
}

/* PDP Typography */
.nike-pdp-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.25;
    color: #111;
}
.nike-pdp-subtitle {
    font-size: 14px;
    color: #757575;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.nike-pdp-price {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
}
.nike-pdp-tax-notice {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    display: block;
}

/* ==============================
   SIZE GRID
============================== */
.nike-size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 16px;
}
.nike-size-header span {
    font-size: 15px;
    font-weight: 600;
}
.nike-size-guide {
    color: #757575;
    text-decoration: underline;
    font-size: 13px;
}
.nike-size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}
.nike-size-grid label {
    margin: 0;
    cursor: pointer;
}
.nike-size-grid input[type="radio"] {
    display: none;
}
.nike-size-box {
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    padding: 10px 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.18s ease;
    background: #fff;
    color: #333;
}
.nike-size-grid input[type="radio"]:checked + .nike-size-box {
    border-color: #111;
    background: #111;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nike-size-grid label:hover .nike-size-box {
    border-color: #555;
}
.size-error-msg {
    color: #e53935;
    font-size: 13px;
    margin-bottom: 12px;
    display: none;
    font-weight: 500;
}

/* ==============================
   ACTION BUTTONS
============================== */
.stag-pdp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.nike-btn-black {
    background: #111 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 16px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    width: 100% !important;
    border: none !important;
    transition: background 0.2s ease, opacity 0.2s ease !important;
    cursor: pointer;
}
.nike-btn-black:hover {
    background: #333 !important;
    opacity: 1 !important;
}
.nike-btn-buy-now {
    background: #fff !important;
    color: #111 !important;
    border-radius: 50px !important;
    padding: 16px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    width: 100% !important;
    border: 1.5px solid #111 !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
}
.nike-btn-buy-now:hover {
    background: #111 !important;
    color: #fff !important;
}
.nike-btn-wish {
    background: #f5f5f5 !important;
    color: #111 !important;
    border-radius: 50px !important;
    padding: 14px 24px !important;
    font-size: 18px !important;
    width: 100% !important;
    border: 1px solid #e0e0e0 !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
}
.nike-btn-wish:hover {
    background: #ffe0e0 !important;
    border-color: #e53935 !important;
    color: #e53935 !important;
}

/* ==============================
   DESCRIPTION
============================== */
.nike-description {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}
.nike-description p {
    margin-bottom: 8px;
}

/* ==============================
   PINCODE WIDGET
============================== */
.stag-pincode-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #eee;
}
.stag-pincode-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
}
.stag-pincode-sub {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}
.stag-pincode-input-row {
    display: flex;
    gap: 8px;
}
.stag-pincode-input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}
.stag-pincode-input:focus {
    border-color: #111;
}
.stag-pincode-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.stag-pincode-btn:hover {
    background: #333;
}

/* ==============================
   ACCORDION STYLES
============================== */
.stag-accordion-item {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: transparent !important;
}
.stag-accordion-btn {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 16px 0 !important;
    background: none !important;
    box-shadow: none !important;
    color: #111 !important;
}
.stag-accordion-btn:not(.collapsed) {
    color: #111 !important;
}
.stag-accordion-body {
    padding: 0 0 16px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.sidebar__logo {
    padding: 20px 15px !important;
    text-align: center;
    background: #080808 !important;
}

.sidebar__main-logo {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    height: 100px !important;
    background: transparent !important;
}

.sidebar__main-logo img {
    width: auto !important;
    height: 90px !important;
    max-width: 180px !important;
    max-height: 90px !important;
    object-fit: contain !important;
    background: transparent !important;
}
