/* =========================================================
   Header
   White navigation row + company bar underneath
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
    background: #ffffff;
}

.site-header__inner {
    display: grid;
    width: min(100% - 40px, 1320px);
    min-height: 96px;
    margin-inline: auto;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.site-header__logo {
    display: block;
    width: 180px;
}

.site-header__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.primary-navigation {
    min-width: 0;
    justify-self: center;
}

.primary-navigation__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-navigation a,
.site-header__actions a {
    color: #2b1847;
    font-weight: 600;
    text-decoration: none;
}

.primary-navigation a:hover,
.site-header__actions a:hover {
    color: #0649a5;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    white-space: nowrap;
}

.site-header__topbar,
.site-header__company-bar {
    color: #ffffff;
    background: #0649a5;
}

.site-header__topbar-inner,
.site-header__company-bar-inner {
    display: flex;
    width: min(100% - 40px, 1320px);
    min-height: 34px;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 12px;
    font-weight: 700;
}

.site-header__legal-name {
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-header__company-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header__whatsapp {
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__whatsapp::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #69c655;
}

.site-header__whatsapp:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* TranslatePress floating switcher */
.trp-language-switcher {
    position: fixed !important;
    top: 142px !important;
    right: 18px !important;
    z-index: 9999 !important;
    width: auto !important;
    margin: 0 !important;
}

.trp-language-switcher > div {
    width: auto !important;
    min-width: 120px;
}

@media (max-width: 1000px) {
    .site-header__inner {
        grid-template-columns: 160px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .site-header__logo {
        width: 160px;
    }

    .primary-navigation__menu {
        gap: 20px;
    }

    .site-header__actions {
        gap: 12px;
    }
}

@media (max-width: 800px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
        width: min(100% - 24px, 1320px);
        min-height: auto;
        padding-block: 14px;
        gap: 14px 18px;
    }

    .site-header__logo {
        grid-column: 1;
        grid-row: 1;
        width: 150px;
    }

    .site-header__actions {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
    }

    .primary-navigation {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        justify-self: stretch;
    }

    .primary-navigation__menu {
        justify-content: center;
        gap: 24px;
        overflow: visible;
    }

    .site-header__topbar-inner,
    .site-header__company-bar-inner {
        width: min(100% - 24px, 1320px);
        min-height: auto;
        padding-block: 8px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px 16px;
        text-align: center;
    }

    .site-header__company-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trp-language-switcher {
        position: static !important;
        width: auto !important;
        margin: 8px auto !important;
    }
}

@media (max-width: 520px) {
    .site-header__inner {
        grid-template-columns: 1fr;
    }

    .site-header__logo,
    .site-header__actions,
    .primary-navigation {
        grid-column: 1;
    }

    .site-header__logo {
        grid-row: 1;
        justify-self: center;
    }

    .site-header__actions {
        grid-row: 2;
        justify-content: center;
    }

    .primary-navigation {
        grid-row: 3;
    }

    .primary-navigation__menu {
        justify-content: center;
    }
}

.site-main {
    min-height: 60vh;
}

/* =========================================================
   Hero carousel
   ========================================================= */

.hero-carousel {
    position: relative;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    background: #f7f7f7;
}

.hero-carousel__slides {
    position: relative;
    min-height: inherit;
}

.hero-carousel__slide {
    position: absolute;
    inset: 0;
    display: flex;
    min-height: inherit;
    align-items: center;
    padding: 80px max(20px, calc((100% - 1200px) / 2));

    background-image:
            linear-gradient(
                    90deg,
                    rgb(255 255 255 / 94%) 0%,
                    rgb(255 255 255 / 80%) 34%,
                    rgb(255 255 255 / 30%) 62%,
                    rgb(255 255 255 / 6%) 100%
            ),
            var(--hero-image);

    background-position:
            center,
            center;

    background-size:
            cover,
            cover;

    background-repeat:
            no-repeat,
            no-repeat;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.025);

    transition:
            opacity 700ms ease,
            visibility 700ms ease,
            transform 6s ease;
}

.hero-carousel__slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.hero-carousel__content {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
}

.hero__eyebrow {
    margin: 0 0 12px;
    color: #00aebd;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-carousel h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: #2b1847;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.02;
}

.hero-carousel__content > p:not(.hero__eyebrow) {
    max-width: 600px;
    margin: 0;
    color: #2b1847;
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 2px solid #2b1847;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;

    transition:
            transform 160ms ease,
            background-color 160ms ease,
            border-color 160ms ease,
            color 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #ffffff;
    background: #2b1847;
}

.button--primary:hover {
    color: #ffffff;
    background: #45266f;
}

.button--secondary {
    color: #2b1847;
    background: rgb(255 255 255 / 58%);
    backdrop-filter: blur(5px);
}

.button--secondary:hover {
    color: #ffffff;
    background: #2b1847;
}

.hero-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgb(43 24 71 / 72%);
    box-shadow: 0 6px 20px rgb(0 0 0 / 16%);
    font-family: inherit;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);

    transition:
            transform 160ms ease,
            background-color 160ms ease;
}

.hero-carousel__arrow:hover {
    background: #2b1847;
    transform: translateY(-50%) scale(1.06);
}

.hero-carousel__arrow--previous {
    left: 20px;
}

.hero-carousel__arrow--next {
    right: 20px;
}

.hero-carousel__dots {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-carousel__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: rgb(43 24 71 / 28%);
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    cursor: pointer;

    transition:
            transform 160ms ease,
            background-color 160ms ease;
}

.hero-carousel__dot:hover {
    transform: scale(1.14);
}

.hero-carousel__dot.is-active {
    background: #ffffff;
}

/* =========================================================
   Company introduction
   ========================================================= */

.company-introduction {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    padding-block: 80px 24px;
}

.company-introduction__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 7vw, 96px);
    align-items: start;
}

.company-introduction__heading h2,
.wholesale-inquiry h2 {
    margin: 0;
    color: #2b1847;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
}

.company-introduction__copy {
    color: #51465f;
    font-size: 1.05rem;
    line-height: 1.8;
}

.company-introduction__copy p {
    margin: 0 0 18px;
}

.wholesale-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.wholesale-benefit {
    padding: 28px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgb(43 24 71 / 6%);
}

.wholesale-benefit__number {
    display: block;
    margin-bottom: 20px;
    color: #00aebd;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.wholesale-benefit h3 {
    margin: 0 0 10px;
    color: #2b1847;
    font-size: 1.2rem;
}

.wholesale-benefit p {
    margin: 0;
    color: #665c70;
    line-height: 1.65;
}

/* =========================================================
   Featured products
   ========================================================= */

.featured-products {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    padding-block: 72px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-heading__eyebrow {
    margin: 0 0 6px;
    color: #00b4c4;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.section-heading h2 {
    margin: 0;
    color: #2b1847;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.section-heading__link {
    color: #2b1847;
    font-weight: 700;
    text-decoration: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #ffffff;

    transition:
            transform 160ms ease,
            box-shadow 160ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgb(43 24 71 / 10%);
}

.product-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f8fa;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.03);
}

.product-card__content {
    padding: 20px;
}

.product-card__title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.3;
}

.product-card__title a {
    color: #2b1847;
    text-decoration: none;
}

.product-card__price {
    margin-bottom: 18px;
    color: #2b1847;
    font-size: 1.1rem;
    font-weight: 700;
}

.product-card__button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 6px;
    color: #ffffff;
    background: #2b1847;
    font-weight: 700;
    text-decoration: none;
}



.wholesale-inquiry {
    display: flex;
    width: min(100% - 40px, 1200px);
    margin: 0 auto 40px;
    padding: clamp(32px, 6vw, 64px);
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    border-radius: 16px;
    background: #f1f9fa;
}

.wholesale-inquiry > div {
    max-width: 760px;
}

.wholesale-inquiry p:not(.section-heading__eyebrow) {
    margin: 18px 0 0;
    color: #51465f;
    font-size: 1.05rem;
    line-height: 1.7;
}

.wholesale-inquiry .button {
    flex: 0 0 auto;
}

.retailer-disclaimer {
    width: min(100% - 40px, 1200px);
    margin: 0 auto 56px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
    color: #746b7d;
    font-size: 0.78rem;
    line-height: 1.6;
}

.retailer-disclaimer p {
    margin: 0;
}

/* =========================================================
   Wholesale lots page
   ========================================================= */

.lots-page {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    padding-block: clamp(56px, 8vw, 96px);
}

.lots-page__header {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.lots-page__header h1 {
    margin: 0;
    color: #2b1847;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
}

.lots-page__header > p:last-child {
    margin: 22px auto 0;
    color: #5c5266;
    font-size: 1.08rem;
    line-height: 1.75;
}

.lots-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.lot-card {
    overflow: hidden;
    border: 1px solid #e6e2ea;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgb(43 24 71 / 8%);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.lot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgb(43 24 71 / 13%);
}

.lot-card__image {
    display: grid;
    aspect-ratio: 4 / 3;
    place-items: center;
    overflow: hidden;
    background: #f5f8f9;
}

.lot-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.lot-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #2b1847;
}

.lot-card__placeholder span {
    font-size: 2.2rem;
    font-weight: 800;
}

.lot-card__placeholder small {
    color: #746b7d;
    font-size: 0.9rem;
}

.lot-card__content {
    padding: 26px;
}

.lot-card__label {
    margin: 0 0 8px;
    color: #00aebd;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.lot-card h2 {
    margin: 0 0 22px;
    color: #2b1847;
    font-size: 1.5rem;
}

.lot-card__details {
    margin: 0 0 24px;
}

.lot-card__details > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 11px;
    border-top: 1px solid #ece9ef;
}

.lot-card__details dt {
    color: #665c70;
}

.lot-card__details dd {
    margin: 0;
    color: #2b1847;
    font-weight: 800;
}

.lot-card__button {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 6px;
    color: #ffffff;
    background: #2b1847;
    font-weight: 700;
    text-decoration: none;
}

.lot-card__button:hover {
    color: #ffffff;
    background: #45266f;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 950px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .hero-carousel {
        min-height: 620px;
    }

    .hero-carousel__slide {
        align-items: flex-start;
        padding: 64px 20px;

        background-image:
                linear-gradient(
                        90deg,
                        rgb(255 255 255 / 95%) 0%,
                        rgb(255 255 255 / 84%) 62%,
                        rgb(255 255 255 / 30%) 100%
                ),
                var(--hero-image);

        background-position:
                center,
                62% center;
    }

    .hero-carousel h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-carousel__arrow {
        display: none;
    }

    .company-introduction__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wholesale-benefits {
        grid-template-columns: 1fr;
    }

    .wholesale-inquiry {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .hero-carousel {
        min-height: 560px;
    }

    .hero-carousel__slide {
        padding: 48px 14px;

        background-image:
                linear-gradient(
                        90deg,
                        rgb(255 255 255 / 96%) 0%,
                        rgb(255 255 255 / 88%) 72%,
                        rgb(255 255 255 / 42%) 100%
                ),
                var(--hero-image);

        background-position:
                center,
                66% center;
    }

    .hero-carousel__content {
        width: 100%;
    }

    .hero-carousel h1 {
        font-size: clamp(2.35rem, 13vw, 3.4rem);
    }

    .hero-carousel__content > p:not(.hero__eyebrow) {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero-carousel__dots {
        bottom: 16px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .lots-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-carousel__slide,
    .hero-carousel__arrow,
    .hero-carousel__dot,
    .button,
    .product-card,
    .product-card__image img {
        transition: none;
    }
}

/* Add this block to the end of assets/css/app.css */

:root {
    --wholesale-blue: #0649a5;
    --wholesale-blue-dark: #04316f;
    --wholesale-gold: #f0b94b;
    --wholesale-text: #172033;
    /* --wholesale-muted: #677085; */
    --wholesale-muted: #1d1f22;
    --wholesale-soft: #f4f7fb;
    --wholesale-border: #dfe5ee;
    --wholesale-white: #fff;
    --wholesale-shadow: 0 18px 45px rgba(20, 39, 75, .12);
}

.site-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.home-hero,
.inner-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    background-position: center;
    background-size: cover;
    color: var(--wholesale-white);
}

.inner-hero {
    min-height: 440px;
}

.page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 22, 53, .78), rgba(3, 22, 53, .18));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-content h1 {
    max-width: 800px;
    margin: 14px 0 20px;
    font-size: clamp(46px, 6vw, 82px);
    line-height: .98;
}

.inner-hero .hero-content h1 {
    font-size: clamp(42px, 5vw, 66px);
}

.hero-content p {
    max-width: 640px;
    margin: 0 0 30px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

.section-eyebrow {
    display: inline-block;
    color: var(--wholesale-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.page-section {
    padding: 88px 0;
}

.page-section--soft {
    background: var(--wholesale-soft);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading h2,
.split-feature h2,
.gallery-row h2,
.cta-panel h2 {
    margin: 10px 0 16px;
    color: var(--wholesale-text);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
}

.section-heading p,
.split-feature p,
.gallery-row p,
.cta-panel p {
    color: var(--wholesale-muted);
    font-size: 18px;
    line-height: 1.7;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.site-button:hover {
    transform: translateY(-2px);
}

.site-button--primary {
    background: var(--wholesale-blue);
    color: var(--wholesale-white);
    box-shadow: 0 10px 24px rgba(6, 73, 165, .25);
}

.site-button--secondary {
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.12);
    color: var(--wholesale-white);
    backdrop-filter: blur(5px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.feature-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    padding: 30px;
    border: 1px solid var(--wholesale-border);
    border-radius: 16px;
    background: var(--wholesale-white);
    box-shadow: var(--wholesale-shadow);
}

.feature-number {
    color: var(--wholesale-blue);
    font-size: 14px;
    font-weight: 900;
}

.feature-card h3 {
    margin: 18px 0 10px;
    color: var(--wholesale-text);
    font-size: 22px;
}

.feature-card p {
    margin: 0;
    color: var(--wholesale-muted);
    line-height: 1.65;
}

.split-feature,
.gallery-row {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 60px;
}

.split-feature__image img,
.gallery-row__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--wholesale-shadow);
}

.text-link {
    color: var(--wholesale-blue);
    font-weight: 800;
    text-decoration: none;
}

.gallery-stack {
    display: grid;
    gap: 86px;
}

.gallery-row--reverse .gallery-row__image {
    order: 2;
}

.gallery-row--reverse .gallery-row__content {
    order: 1;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 44px;
    border-radius: 18px;
    background: var(--wholesale-soft);
}

.cta-panel h2,
.cta-panel p {
    margin-bottom: 0;
}

.lots-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.lot-card {
    overflow: hidden;
    border: 1px solid var(--wholesale-border);
    border-radius: 18px;
    background: var(--wholesale-white);
    box-shadow: var(--wholesale-shadow);
}

.lot-card__image {
    position: relative;
}

.lot-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.lot-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--wholesale-blue);
    color: var(--wholesale-white);
    font-weight: 900;
}

.lot-card__body {
    padding: 26px;
}

.lot-card__body h2 {
    margin: 0 0 18px;
    color: var(--wholesale-text);
    font-size: 28px;
}

.lot-card__body p {
    color: var(--wholesale-muted);
    line-height: 1.65;
}

.lot-card__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 0 18px;
    border-block: 1px solid var(--wholesale-border);
}

.lot-card__details div {
    padding: 16px 5px 0 0 ;
}

.lot-card__details div + div {
    padding-left: 18px;
    border-left: 1px solid var(--wholesale-border);
}

.lot-card__details dt {
    color: var(--wholesale-muted);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
}

.lot-card__details dd {
    margin: 4px 0 0;
    color: var(--wholesale-text);
    font-size: 24px;
    font-weight: 900;
}

@media (max-width: 980px) {
    .feature-grid,
    .feature-grid--three,
    .lots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-feature,
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-row--reverse .gallery-row__image,
    .gallery-row--reverse .gallery-row__content {
        order: initial;
    }
}

@media (max-width: 680px) {
    .site-container {
        width: min(100% - 24px, 1180px);
    }

    .home-hero {
        min-height: 580px;
    }

    .inner-hero {
        min-height: 380px;
    }

    .page-section {
        padding: 62px 0;
    }

    .feature-grid,
    .feature-grid--three,
    .lots-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }
}
.home-hero.costco-showcase {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    overflow: hidden;
    background: #111;
    color: #fff;
}

.costco-showcase__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.costco-showcase__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
            opacity 0.8s ease,
            visibility 0.8s ease;
}

.costco-showcase__slide.active {
    opacity: 1;
    visibility: visible;
}

.costco-showcase__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.costco-showcase .page-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            90deg,
            rgba(3, 22, 53, 0.48) 0%,
            rgba(3, 22, 53, 0.30) 48%,
            rgba(3, 22, 53, 0.72) 100%
    );
}

.costco-showcase .hero-content {
    position: relative;
    z-index: 2;
    width: min(430px, 100%);
    max-width: 430px;
    margin-right: 0;
    margin-left: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.costco-showcase .section-eyebrow {
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.15em;
}

.costco-showcase .hero-content h1 {
    max-width: 430px;
    margin: 12px 0 18px;
    font-size: clamp(40px, 3.2vw, 52px);
    line-height: 0.98;
}

.costco-showcase .hero-content > p {
    max-width: 420px;
    margin-bottom: 24px;
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.45;
}

.costco-showcase .button-row {
    gap: 12px;
}

.costco-showcase .site-button {
    min-height: 46px;
    padding: 11px 18px;
    font-size: 15px;
    text-shadow: none;
}

.costco-showcase__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.48);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.costco-showcase__arrow:hover {
    background: rgba(0, 0, 0, 0.72);
}

.costco-showcase__arrow--previous {
    left: 24px;
}

.costco-showcase__arrow--next {
    right: 24px;
}

.costco-showcase__dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 3;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.costco-showcase__dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.costco-showcase__dots button.active {
    background: #fff;
}

@media (max-width: 900px) {
    .costco-showcase .page-overlay {
        background: rgba(3, 22, 53, 0.62);
    }

    .costco-showcase .hero-content {
        width: min(620px, 100%);
        max-width: 620px;
        margin-inline: auto;
        text-align: center;
    }

    .costco-showcase .hero-content h1,
    .costco-showcase .hero-content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .costco-showcase .hero-content h1 {
        font-size: clamp(38px, 7vw, 52px);
    }

    .costco-showcase .button-row {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .home-hero.costco-showcase {
        min-height: 580px;
    }

    .costco-showcase__slide img {
        object-position: center;
    }

    .costco-showcase__arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .costco-showcase__arrow--previous {
        left: 12px;
    }

    .costco-showcase__arrow--next {
        right: 12px;
    }

    .costco-showcase .hero-content {
        width: calc(100% - 56px);
    }

    .costco-showcase .hero-content h1 {
        font-size: clamp(36px, 11vw, 46px);
    }

    .costco-showcase .hero-content > p {
        font-size: 17px;
    }

    .costco-showcase .button-row {
        align-items: stretch;
        flex-direction: column;
    }
}
.category-page {
    padding: 80px 0;
}

.category-page__header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.category-page__header h1 {
    margin: 12px 0 18px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
}

.category-page__header p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.category-card {
    overflow: hidden;
    border: 1px solid #e1e6eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(20, 30, 50, 0.08);
}

.category-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f6f8;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card__image img {
    transform: scale(1.04);
}

.category-card__body {
    padding: 26px;
}

.category-card__body h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.category-card__body h2 a {
    color: inherit;
    text-decoration: none;
}

.category-card__body p {
    min-height: 54px;
    margin: 0 0 24px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .category-page {
        padding: 50px 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}
.category-page__hero {
    min-height: 380px;
}

.category-page__content {
    padding-block: 80px;
}

.category-page__heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.category-card {
    overflow: hidden;
    border: 1px solid #e3e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(21, 37, 55, 0.08);
    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(21, 37, 55, 0.13);
}

.category-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f4f6f8;
}

.category-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card:hover .category-card__image img {
    transform: scale(1.04);
}

.category-card__count {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #152537;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 5px 18px rgba(21, 37, 55, 0.14);
}

.category-card__body {
    display: flex;
    min-height: 265px;
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
}

.category-card__body h2 {
    margin: 10px 0 14px;
    font-size: 26px;
    line-height: 1.22;
}

.category-card__body h2 a {
    color: inherit;
    text-decoration: none;
}

.category-card__body p {
    margin: 0 0 24px;
    color: #5b6570;
    line-height: 1.65;
}

.category-card__body .site-button {
    margin-top: auto;
}

.category-page__empty {
    max-width: 700px;
    margin-inline: auto;
    padding: 48px;
    border: 1px solid #e3e7eb;
    border-radius: 18px;
    background: #f7f9fb;
    text-align: center;
}

@media (max-width: 960px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .category-page__content {
        padding-block: 54px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card__body {
        min-height: 0;
    }
}

/* Product Categories — background behind cards only */
body.page-template-page-product-categories-php .category-page__content {
    position: relative;
    background:
            linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.24) 0%,
                    rgba(255, 255, 255, 0.34) 55%,
                    rgba(245, 249, 252, 0.42) 100%
            ),
            url("../images/bg/pastel-ocean-sunset-1920x1080.webp") center top / cover no-repeat;
}


/**  SHop/Products**/
.post-type-archive-product ul.products,
.tax-product_cat ul.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}

.post-type-archive-product ul.products li.product,
.tax-product_cat ul.products li.product {
    width: 280px !important;
    margin: 0 !important;
}
ul.products li.product img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 18px;
}
ul.products li.product {
    margin-bottom: 28px !important;
}
/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    padding: 0;
    color: #ffffff;
    background: #24143d;
    text-align: left;
}

.site-footer__inner {
    display: grid;
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    padding-block: 64px 48px;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.site-footer__brand img {
    display: block;
    width: 175px;
    max-width: 100%;
    margin-bottom: 22px;
}

.site-footer__brand p {
    max-width: 320px;
    margin: 0 0 20px;
    color: rgb(255 255 255 / 72%);
    line-height: 1.7;
}

.site-footer__company {
    color: #f0b94b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer__column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 16px;
}

.site-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li + li {
    margin-top: 12px;
}

.site-footer a {
    color: rgb(255 255 255 / 76%);
    text-decoration: none;
    transition:
            color 160ms ease,
            transform 160ms ease;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer__whatsapp {
    display: inline-block;
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1.5;
}

.site-footer__whatsapp::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border-radius: 50%;
    background: #69c655;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.site-footer__socials a {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.site-footer__socials a:hover {
    border-color: #f0b94b;
    color: #24143d;
    background: #f0b94b;
    transform: translateY(-2px);
}

.site-footer__bottom {
    display: flex;
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
    padding-block: 20px;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgb(255 255 255 / 14%);
    color: rgb(255 255 255 / 58%);
    font-size: 13px;
}

@media (max-width: 900px) {
    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .site-footer__inner {
        padding-block: 48px 36px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
body > .trp-language-switcher {
    display: none !important;
}

.site-header__language {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.site-header__language .trp-language-switcher,
.site-header__language .trp-language-switcher > div {
    width: auto !important;
    min-width: 120px;
    max-width: 150px;
    margin: 0 !important;
}
/* =========================================================
   WooCommerce Cart and Checkout
   ========================================================= */

.woocommerce-cart main,
.woocommerce-checkout main,
.wp-site-blocks main {
    width: 100%;
}

/* Main cart/checkout container */
.wc-block-cart,
.wc-block-checkout {
    width: min(1180px, calc(100% - 40px));
    margin: 55px auto 80px;
    color: #251842;
}

/* Page headings */
.woocommerce-cart h1,
.woocommerce-checkout h1,
.wc-block-cart h1,
.wc-block-checkout h1 {
    margin: 0 0 32px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    color: #251842;
}

/* Cart layout spacing */
.wc-block-cart__main {
    padding-right: 45px;
}

.wc-block-cart__sidebar {
    padding-left: 0;
}

/* Product table */
.wc-block-cart-items {
    border-collapse: separate;
    border-spacing: 0;
}

.wc-block-cart-items th {
    padding: 0 0 16px;
    border-bottom: 1px solid #ded9e8;
    color: #675e76;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-block-cart-items__row {
    border-bottom: 1px solid #e8e3ee;
}

.wc-block-cart-items__row td {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
}

.wc-block-cart-item__image img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    padding: 6px;
    background: #fff;
    border: 1px solid #e5e0eb;
    border-radius: 10px;
}

.wc-block-components-product-name {
    color: #251842 !important;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none !important;
}

.wc-block-components-product-name:hover {
    color: #1457b8 !important;
}

.wc-block-components-product-metadata,
.wc-block-components-product-details {
    margin-top: 8px;
    color: #6d6578;
    font-size: 14px;
    line-height: 1.55;
}

/* Quantity selector */
.wc-block-components-quantity-selector {
    min-width: 112px;
    border: 1px solid #d9d3e1 !important;
    border-radius: 7px !important;
    overflow: hidden;
}

.wc-block-components-quantity-selector input {
    font-weight: 600;
}

/* Remove item link */
.wc-block-cart-item__remove-link {
    color: #786f83 !important;
    font-size: 13px !important;
    text-decoration: underline;
}

.wc-block-cart-item__remove-link:hover {
    color: #b42318 !important;
}

/* Cart totals card */
.wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
.wc-block-components-sidebar {
    padding: 28px !important;
    background: #f8f7fb;
    border: 1px solid #e4dfeb;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(38, 23, 65, 0.07);
}

.wc-block-components-totals-wrapper {
    padding: 18px 0 !important;
    border-color: #ded9e8 !important;
}

.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value {
    color: #251842;
}

.wc-block-components-totals-footer-item {
    font-size: 22px !important;
    font-weight: 700;
}

/* Coupon section */
.wc-block-components-totals-coupon-link {
    color: #1457b8;
    font-weight: 600;
}

/* Main checkout buttons */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
    min-height: 54px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #1658bd !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    transition:
            background-color 0.2s ease,
            transform 0.2s ease,
            box-shadow 0.2s ease;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
    background: #104897 !important;
    box-shadow: 0 8px 20px rgba(20, 87, 184, 0.22);
    transform: translateY(-1px);
}

/* Express payment area */
.wc-block-components-express-payment {
    margin-bottom: 24px;
}

.wc-block-components-express-payment__event-buttons {
    gap: 10px;
}

.wc-block-components-express-payment__event-buttons > li {
    margin: 0 !important;
}

/* Checkout form sections */
.wc-block-checkout__main {
    padding-right: 45px;
}

.wc-block-checkout__sidebar {
    padding-left: 0;
}

.wc-block-components-checkout-step {
    margin-bottom: 22px;
    padding: 26px !important;
    background: #fff;
    border: 1px solid #e4dfeb;
    border-radius: 12px;
}

.wc-block-components-checkout-step__heading {
    margin-bottom: 20px !important;
}

.wc-block-components-checkout-step__title {
    color: #251842;
    font-size: 21px !important;
    font-weight: 700 !important;
}

/* Checkout form fields */
.wc-block-components-text-input input,
.wc-block-components-combobox-control input,
.wc-block-components-address-form input,
.wc-block-components-address-form select {
    min-height: 50px !important;
    border: 1px solid #cec7d8 !important;
    border-radius: 7px !important;
    background: #fff !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox-control input:focus,
.wc-block-components-address-form input:focus,
.wc-block-components-address-form select:focus {
    border-color: #1658bd !important;
    box-shadow: 0 0 0 3px rgba(22, 88, 189, 0.12) !important;
    outline: none !important;
}

/* Payment method panels */
.wc-block-components-radio-control-accordion-option {
    margin-bottom: 10px;
    border: 1px solid #ddd7e5 !important;
    border-radius: 9px !important;
    overflow: hidden;
}

.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    border-color: #1658bd !important;
    box-shadow: 0 0 0 1px #1658bd;
}

/* Notices */
.wc-block-components-notice-banner {
    margin-bottom: 24px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .wc-block-cart,
    .wc-block-checkout {
        width: min(100% - 28px, 720px);
        margin-top: 35px;
    }

    .wc-block-cart__main,
    .wc-block-checkout__main {
        padding-right: 0;
    }

    .wc-block-cart__sidebar,
    .wc-block-checkout__sidebar {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .wc-block-cart,
    .wc-block-checkout {
        width: calc(100% - 20px);
        margin-top: 25px;
    }

    .wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
    .wc-block-components-sidebar,
    .wc-block-components-checkout-step {
        padding: 20px !important;
    }

    .wc-block-cart-item__image img {
        width: 70px;
        height: 70px;
    }

    .wc-block-components-product-name {
        font-size: 15px;
    }
}
.wc-block-cart,
.wc-block-checkout {
    margin-top: 55px;
}
.woocommerce-order {
    max-width: 1180px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.woocommerce-order > p:first-child {
    margin-bottom: 35px;
    font-size: 22px;
    font-weight: 600;
}

.woocommerce-order-overview {
    margin-bottom: 45px;
    padding: 30px;
    background: #f8f8fb;
    border-radius: 12px;
}

.woocommerce-order-details,
.woocommerce-customer-details {
    margin-top: 40px;
}

/* =========================================================
   Order Received / Thank You Page
   ========================================================= */
body.woocommerce-order-received main.site-main {
    width: 100%;
}

.retailer-thankyou {
    width: min(1180px, calc(100% - 40px));
    margin: 55px auto 85px;
    color: #281b47;
}

.retailer-thankyou *,
.retailer-thankyou *::before,
.retailer-thankyou *::after {
    box-sizing: border-box;
}

/* Hero */

.retailer-thankyou__hero,
.retailer-thankyou__status {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 38px;
    background:
            linear-gradient(
                    135deg,
                    rgba(22, 88, 189, 0.08),
                    rgba(91, 51, 172, 0.08)
            );
    border: 1px solid #dcd5e8;
    border-radius: 16px;
    box-shadow: 0 14px 38px rgba(39, 24, 69, 0.07);
}

.retailer-thankyou__status--failed {
    background: #fff6f5;
    border-color: #f0bbb5;
}

.retailer-thankyou__check,
.retailer-thankyou__icon {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: #1765c1;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.retailer-thankyou__icon {
    background: #b42318;
}

.retailer-thankyou__hero-content {
    max-width: 790px;
}

.retailer-thankyou__eyebrow {
    margin: 0 0 8px;
    color: #1457b8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.retailer-thankyou h1 {
    margin: 0 0 14px;
    color: #281b47;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.retailer-thankyou__intro {
    margin: 0;
    color: #5f576d;
    font-size: 17px;
    line-height: 1.7;
}

.retailer-thankyou__email-notice {
    margin: 20px 0 0;
    color: #3d3549;
}

/* Order overview */

.retailer-order-overview {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 28px 0 42px !important;
    padding: 0 !important;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfdae7;
    border-radius: 14px;
    list-style: none;
    box-shadow: 0 10px 28px rgba(39, 24, 69, 0.05);
}

.retailer-order-overview::before,
.retailer-order-overview::after {
    display: none !important;
}

.retailer-order-overview__item {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 22px 20px !important;
    border-right: 1px solid #e5e0eb;
    text-transform: none !important;
}

.retailer-order-overview__item:last-child {
    border-right: 0;
}

.retailer-order-overview__item span {
    display: block;
    margin-bottom: 7px;
    color: #716979;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.retailer-order-overview__item strong {
    display: block;
    color: #281b47;
    font-size: 16px;
    line-height: 1.4;
}

/* Next steps */

.retailer-thankyou__next {
    margin: 0 0 42px;
}

.retailer-thankyou__next > h2 {
    margin: 0 0 20px;
    color: #281b47;
    font-size: 28px;
}

.retailer-thankyou__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.retailer-thankyou__step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 24px;
    background: #f8f7fb;
    border: 1px solid #e3deea;
    border-radius: 12px;
}

.retailer-thankyou__step-number {
    display: grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #281b47;
    color: #fff;
    font-weight: 800;
}

.retailer-thankyou__step h3 {
    margin: 2px 0 7px;
    color: #281b47;
    font-size: 17px;
}

.retailer-thankyou__step p {
    margin: 0;
    color: #696171;
    font-size: 14px;
    line-height: 1.6;
}

/* Standard WooCommerce order sections */

.retailer-thankyou .woocommerce-order-details,
.retailer-thankyou .woocommerce-customer-details {
    margin: 42px 0 0;
    padding: 30px;
    background: #fff;
    border: 1px solid #dfdae7;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(39, 24, 69, 0.05);
}

.retailer-thankyou .woocommerce-order-details__title,
.retailer-thankyou .woocommerce-column__title {
    margin: 0 0 22px;
    color: #281b47;
    font-size: 26px;
}

.retailer-thankyou .woocommerce-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border: 0;
}

.retailer-thankyou .woocommerce-table th,
.retailer-thankyou .woocommerce-table td {
    padding: 16px 12px;
    border: 0;
    border-bottom: 1px solid #e5e0eb;
    text-align: left;
}

.retailer-thankyou .woocommerce-table thead th {
    color: #706879;
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.retailer-thankyou .woocommerce-table tfoot tr:last-child th,
.retailer-thankyou .woocommerce-table tfoot tr:last-child td {
    border-bottom: 0;
    color: #281b47;
    font-size: 18px;
    font-weight: 800;
}

.retailer-thankyou .woocommerce-customer-details address {
    padding: 0;
    border: 0;
    color: #5f5769;
    font-style: normal;
    line-height: 1.8;
}

/* Support card */

.retailer-thankyou__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding: 32px;
    background: #281b47;
    border-radius: 14px;
    color: #fff;
}

.retailer-thankyou__support h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 27px;
}

.retailer-thankyou__support p:not(.retailer-thankyou__eyebrow) {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.retailer-thankyou__support .retailer-thankyou__eyebrow {
    color: #7eb4ff;
}

.retailer-thankyou__support-actions,
.retailer-thankyou__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.retailer-thankyou__actions {
    margin-top: 22px;
}

/* Buttons */

.retailer-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none !important;
    transition:
            transform 0.2s ease,
            background-color 0.2s ease,
            border-color 0.2s ease;
}

.retailer-button:hover {
    transform: translateY(-1px);
}

.retailer-button--primary {
    background: #1765c1;
    color: #fff !important;
}

.retailer-button--primary:hover {
    background: #0f519f;
}

.retailer-button--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff !important;
}

.retailer-thankyou__actions .retailer-button--secondary {
    border-color: #cfc8da;
    color: #281b47 !important;
}

/* Hide the old generic success message if a gateway outputs it again */

.retailer-thankyou >
.woocommerce-thankyou-order-received {
    display: none;
}

/* Responsive */

@media (max-width: 1000px) {
    .retailer-order-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .retailer-order-overview__item {
        border-bottom: 1px solid #e5e0eb;
    }

    .retailer-thankyou__steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .retailer-thankyou {
        width: calc(100% - 24px);
        margin-top: 30px;
    }

    .retailer-thankyou__hero,
    .retailer-thankyou__status {
        padding: 25px 20px;
    }

    .retailer-thankyou__check,
    .retailer-thankyou__icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 23px;
    }

    .retailer-order-overview {
        grid-template-columns: 1fr;
    }

    .retailer-order-overview__item {
        border-right: 0;
    }

    .retailer-thankyou .woocommerce-order-details,
    .retailer-thankyou .woocommerce-customer-details {
        padding: 21px 17px;
    }

    .retailer-thankyou__support {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px 20px;
    }

    .retailer-thankyou__support-actions {
        width: 100%;
    }

    .retailer-thankyou__support-actions .retailer-button {
        width: 100%;
    }
}
/* =========================================================
   My Account Login / Registration
   ========================================================= */

body.woocommerce-account:not(.logged-in) main.site-main {
    width: 100%;
    min-height: calc(100vh - 180px);
    padding: 55px 0 90px;
    background:
            linear-gradient(
                    rgba(20,18,35,.25),
                    rgba(20,18,35,.35)
            ),
            url("../images/bg/account-sunset-1920x1080.webp") center center / cover no-repeat;
    background-attachment: fixed;
}

.retailer-account-auth {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 30px;
    color: #281b47;
}

.retailer-account-auth *,
.retailer-account-auth *::before,
.retailer-account-auth *::after {
    box-sizing: border-box;
}

.retailer-account-auth__header {
    max-width: 760px;
    margin: 0 auto 85px;
    text-align: center;
}

.retailer-account-auth__eyebrow {
    margin: 0 0 10px;
    color: rgba(255,255,255,.92);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.retailer-account-auth__header h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(44px, 6vw, 64px);
    line-height: 1.05;
    text-shadow: 0 4px 20px rgba(0,0,0,.45);
}

.retailer-account-auth__header > p:last-child {
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: 20px;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.retailer-account-auth__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 28px;
    margin-top: 40px;
}

.retailer-account-auth__grid--login-only {
    max-width: 570px;
    margin-inline: auto;
    grid-template-columns: 1fr;
}

/* Cards */

.retailer-auth-card {
    overflow: hidden;
    padding: 34px;
    background: #fff;
    border: 1px solid #ded8e7;
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(40, 27, 71, 0.08);
}

.retailer-auth-card--register {
    background:
            linear-gradient(
                    145deg,
                    rgba(23, 101, 193, 0.04),
                    rgba(40, 27, 71, 0.02)
            ),
            #fff;
    border-top: 4px solid #1765c1;
}

.retailer-auth-card--login {
    border-top: 4px solid #281b47;
}

.retailer-auth-card__heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 27px;
}

.retailer-auth-card__icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    background: #281b47;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.retailer-auth-card--register .retailer-auth-card__icon {
    background: #1765c1;
}

.retailer-auth-card__label {
    margin: 0 0 5px;
    color: #1765c1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.retailer-auth-card__heading h2 {
    margin: 0 0 6px;
    color: #281b47;
    font-size: 26px;
    line-height: 1.25;
}

.retailer-auth-card__heading p:last-child {
    margin: 0;
    color: #706879;
    font-size: 14px;
    line-height: 1.55;
}

/* Forms */

.retailer-auth-form {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.retailer-auth-form .form-row {
    float: none;
    width: 100%;
    margin: 0 0 19px;
    padding: 0;
}

.retailer-auth-form label {
    display: block;
    margin: 0 0 8px;
    color: #302640;
    font-size: 14px;
    font-weight: 700;
}

.retailer-auth-form .required {
    color: #b42318;
}

.retailer-auth-form input[type="text"],
.retailer-auth-form input[type="email"],
.retailer-auth-form input[type="password"] {
    width: 100%;
    min-height: 50px;
    padding: 11px 14px;
    background: #fff;
    border: 1px solid #cfc8da;
    border-radius: 8px;
    color: #281b47;
    font-size: 16px;
    outline: 0;
    transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.retailer-auth-form input:focus {
    border-color: #1765c1;
    box-shadow: 0 0 0 3px rgba(23, 101, 193, 0.13);
}

.retailer-auth-form .password-input {
    display: block;
    width: 100%;
}

/* Login options */

.retailer-auth-form__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 2px 0 23px;
}

.retailer-auth-form__options label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #5f5769;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.retailer-auth-form__options input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin: 0;
}

.retailer-auth-form__forgot {
    color: #1765c1;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.retailer-auth-form__forgot:hover {
    text-decoration: underline;
}

/* Buttons */

.retailer-auth-button,
.woocommerce .retailer-auth-button {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 13px 22px;
    background: #1765c1;
    border: 1px solid #1765c1;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            transform 0.2s ease;
}

.retailer-auth-card--login .retailer-auth-button {
    background: #281b47;
    border-color: #281b47;
}

.retailer-auth-button:hover,
.woocommerce .retailer-auth-button:hover {
    background: #0f519f;
    border-color: #0f519f;
    color: #fff;
    transform: translateY(-1px);
}

.retailer-auth-card--login .retailer-auth-button:hover {
    background: #3a285f;
    border-color: #3a285f;
}

/* Benefits */

.retailer-account-benefits {
    display: grid;
    gap: 11px;
    margin: 0 0 27px;
    padding: 20px;
    background: #f5f8fd;
    border: 1px solid #dbe5f3;
    border-radius: 10px;
    list-style: none;
}

.retailer-account-benefits li {
    position: relative;
    margin: 0;
    padding-left: 27px;
    color: #4f465a;
    font-size: 14px;
    line-height: 1.5;
}

.retailer-account-benefits li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    background: #1765c1;
    border-radius: 50%;
    color: #fff;
    content: "✓";
    font-size: 11px;
    font-weight: 800;
}

/* Password and privacy notices */

.retailer-password-notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0 0 20px;
    padding: 14px 15px;
    background: #f8f7fb;
    border: 1px solid #e2ddeb;
    border-radius: 8px;
    color: #5f5769;
}

.retailer-password-notice span {
    color: #1765c1;
    font-size: 17px;
}

.retailer-password-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.retailer-auth-form__privacy {
    margin: 0 0 20px;
    color: #777080;
    font-size: 12px;
    line-height: 1.55;
}

.retailer-auth-form__privacy a {
    color: #1765c1;
}

/* Security line */

.retailer-auth-card__security {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 19px;
    color: #777080;
    font-size: 12px;
    line-height: 1.5;
}

.retailer-auth-card__security span {
    color: #1765c1;
    font-weight: 800;
}

/* WooCommerce errors and notices */

.retailer-account-auth + .woocommerce-notices-wrapper,
.woocommerce-account .woocommerce-notices-wrapper {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info {
    border-radius: 9px;
}

/* Prevent default WooCommerce columns from interfering */

.retailer-account-auth .u-column1,
.retailer-account-auth .u-column2 {
    float: none;
    width: auto;
}

/* Responsive */

@media (max-width: 850px) {
    .retailer-account-auth__grid {
        grid-template-columns: 1fr;
    }

    .retailer-auth-card {
        padding: 29px;
    }
}

/* =========================================================
   Packing Guide
   ========================================================= */

.packing-hero {
    padding: clamp(72px, 9vw, 120px) 0;
    background:
            radial-gradient(circle at 86% 18%, rgb(240 185 75 / 24%), transparent 28%),
            linear-gradient(135deg, #eef4fb 0%, #f8fafc 58%, #ffffff 100%);
}

.packing-hero__inner {
    max-width: 820px;
    text-align: center;
}

.packing-hero h1 {
    margin: 12px 0 20px;
    color: var(--wholesale-text);
    font-size: clamp(46px, 7vw, 78px);
    line-height: 1;
}

.packing-hero p {
    max-width: 690px;
    margin: 0 auto;
    color: var(--wholesale-muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.packing-page__content {
    padding-bottom: 72px;
}

.packing-page__heading {
    display: block;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.packing-card {
    overflow: hidden;
    border: 1px solid var(--wholesale-border);
    border-radius: 18px;
    background: var(--wholesale-white);
    box-shadow: var(--wholesale-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.packing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgb(20 39 75 / 17%);
}

.packing-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #ffffff;
}

.packing-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packing-card__size {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--wholesale-blue);
    box-shadow: 0 7px 18px rgb(4 49 111 / 22%);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.packing-card--small .packing-card__size {
    background: #d84a3a;
}

.packing-card--large .packing-card__size {
    background: #15969d;
}

.packing-card__body {
    padding: 28px;
}

.packing-card__eyebrow {
    color: var(--wholesale-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.packing-card__body h2 {
    margin: 8px 0 10px;
    color: var(--wholesale-text);
    font-size: 25px;
    line-height: 1.2;
}

.packing-card__dimensions {
    margin: 0 0 22px;
    color: var(--wholesale-muted);
    font-size: 16px;
    font-weight: 700;
}

.packing-card__details {
    margin: 0;
}

.packing-card__details > div {
    padding: 16px 0;
    border-top: 1px solid var(--wholesale-border);
}

.packing-card__details > div:last-child {
    padding-bottom: 0;
}

.packing-card__details dt {
    margin-bottom: 5px;
    color: var(--wholesale-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.packing-card__details dd {
    margin: 0;
    color: var(--wholesale-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
}

.packing-note {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 42px;
    align-items: center;
    margin-top: 48px;
    padding: 34px 38px;
    border-left: 5px solid var(--wholesale-gold);
    border-radius: 14px;
    background: var(--wholesale-soft);
}

.packing-note h2 {
    margin: 7px 0 0;
    color: var(--wholesale-text);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.packing-note p {
    margin: 0;
    color: var(--wholesale-muted);
    font-size: 17px;
    line-height: 1.7;
}

.packing-page__cta {
    padding-top: 0;
}

/* Packing page background */
.packing-page {
    background:
            linear-gradient(
                    rgba(255, 255, 255, 0.42),
                    rgba(255, 255, 255, 0.52)
            ),
            url("../images/account-sunset.png") center / cover fixed no-repeat;
}

.packing-page .packing-hero,
.packing-page .packing-page__content,
.packing-page .packing-page__cta {
    background: transparent;
}

/* Keep content clearly readable */
.packing-page .packing-card,
.packing-page .packing-note,
.packing-page .cta-panel {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    box-shadow: 0 16px 38px rgba(24, 35, 56, 0.14);
}

@media (max-width: 980px) {
    .packing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .packing-card:last-child {
        grid-column: 1 / -1;
        width: min(100%, 570px);
        justify-self: center;
    }
}

@media (max-width: 680px) {
    .packing-hero {
        padding: 64px 0;
    }

    .packing-grid {
        grid-template-columns: 1fr;
    }

    .packing-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .packing-card__body {
        padding: 24px;
    }

    .packing-note {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 24px;
    }
}

@media (max-width: 560px) {
    .retailer-account-auth {
        width: calc(100% - 24px);
        margin-top: 35px;
    }

    .retailer-account-auth__header {
        margin-bottom: 26px;
    }

    .retailer-auth-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .retailer-auth-card__heading {
        gap: 12px;
    }

    .retailer-auth-card__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .retailer-auth-card__heading h2 {
        font-size: 22px;
    }

    .retailer-auth-form__options {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }
}
/* =========================================================
   Logged-in My Account Dashboard
   ========================================================= */

body.woocommerce-account.logged-in main.site-main {
    width: 100%;
    min-height: calc(100vh - 180px);
    padding: 45px 0 80px;
    background:
            linear-gradient(
                    rgba(24, 15, 43, 0.22),
                    rgba(24, 15, 43, 0.35)
            ),
            url("../images/account-sunset.png")
            center center / cover fixed no-repeat;
}

body.woocommerce-account.logged-in .woocommerce {
    display: grid;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

/* Left navigation */

body.woocommerce-account.logged-in
.woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    margin: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 15px;
    box-shadow: 0 18px 45px rgba(20, 12, 38, 0.24);
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-navigation li {
    margin: 0 0 7px;
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-navigation li:last-child {
    margin-bottom: 0;
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 13px 15px;
    border-radius: 8px;
    color: #3f3550;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
            background-color 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-navigation a:hover {
    background: #eef5ff;
    color: #1765c1;
    transform: translateX(2px);
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-navigation-link.is-active a {
    background: #1765c1;
    color: #fff;
}

/* Main dashboard content */

body.woocommerce-account.logged-in .woocommerce-MyAccount-content {
    float: none;
    width: auto;
    min-height: 430px;
    margin: 0;
    padding: 34px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 15px;
    box-shadow: 0 18px 45px rgba(20, 12, 38, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #4f465a;
    font-size: 16px;
    line-height: 1.7;
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-content > p:first-of-type {
    margin-top: 0;
    color: #281b47;
    font-size: 20px;
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-content a {
    color: #1765c1;
    font-weight: 700;
}

/* Notices */

body.woocommerce-account.logged-in .woocommerce-info,
body.woocommerce-account.logged-in .woocommerce-message,
body.woocommerce-account.logged-in .woocommerce-error {
    margin: 0 0 24px;
    padding: 18px 20px 18px 48px;
    background: #f3f7ff;
    border: 1px solid #d8e4f4;
    border-top: 0;
    border-left: 4px solid #1765c1;
    border-radius: 10px;
    color: #4f465a;
    box-shadow: none;
}

body.woocommerce-account.logged-in .woocommerce-info::before,
body.woocommerce-account.logged-in .woocommerce-message::before {
    top: 18px;
    left: 18px;
    color: #1765c1;
}

/* Tables */

body.woocommerce-account.logged-in
.woocommerce-orders-table,
body.woocommerce-account.logged-in
.woocommerce-table {
    width: 100%;
    overflow: hidden;
    border: 1px solid #e1dce8;
    border-radius: 10px;
    border-collapse: separate;
    border-spacing: 0;
}

body.woocommerce-account.logged-in
.woocommerce-orders-table th,
body.woocommerce-account.logged-in
.woocommerce-orders-table td,
body.woocommerce-account.logged-in
.woocommerce-table th,
body.woocommerce-account.logged-in
.woocommerce-table td {
    padding: 14px;
    border: 0;
    border-bottom: 1px solid #e8e3ed;
    text-align: left;
}

body.woocommerce-account.logged-in
.woocommerce-orders-table thead th {
    background: #f7f6fa;
    color: #5f5769;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Buttons */

body.woocommerce-account.logged-in
.woocommerce-MyAccount-content .button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    background: #1765c1;
    border-radius: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

body.woocommerce-account.logged-in
.woocommerce-MyAccount-content .button:hover {
    background: #0f519f;
    color: #fff;
}

/* Mobile */

@media (max-width: 850px) {
    body.woocommerce-account.logged-in main.site-main {
        padding: 28px 0 55px;
        background-attachment: scroll;
    }

    body.woocommerce-account.logged-in .woocommerce {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
    }

    body.woocommerce-account.logged-in
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
    }

    body.woocommerce-account.logged-in
    .woocommerce-MyAccount-navigation li {
        flex: 0 0 auto;
        margin: 0;
    }

    body.woocommerce-account.logged-in
    .woocommerce-MyAccount-content {
        padding: 24px 20px;
    }
}
/* Fix My Account grid placement */

body.woocommerce-account.logged-in .woocommerce {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

/* Notices must span the full width above both columns */
body.woocommerce-account.logged-in
.woocommerce > .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
}

/* Navigation belongs in the left column */
body.woocommerce-account.logged-in
.woocommerce > .woocommerce-MyAccount-navigation {
    grid-column: 1;
    grid-row: 2;
}

/* Main account content belongs in the right column */
body.woocommerce-account.logged-in
.woocommerce > .woocommerce-MyAccount-content {
    grid-column: 2;
    grid-row: 2;
}
@media (max-width: 850px) {
    body.woocommerce-account.logged-in .woocommerce {
        grid-template-columns: 1fr;
    }

    body.woocommerce-account.logged-in
    .woocommerce > .woocommerce-notices-wrapper,
    body.woocommerce-account.logged-in
    .woocommerce > .woocommerce-MyAccount-navigation,
    body.woocommerce-account.logged-in
    .woocommerce > .woocommerce-MyAccount-content {
        grid-column: 1;
        grid-row: auto;
    }
}
/* Hide only the Shop welcome information box. */
body.woocommerce-shop
.woocommerce-page-wrapper > .woocommerce-info,
body.tax-product_cat
.woocommerce-page-wrapper > .woocommerce-info {
    display: none !important;
}

/* Homepage hero: move white copy upward and actions lower. */
.costco-showcase .hero-content {
    display: flex;
    min-height: clamp(430px, 64vh, 620px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.costco-showcase .hero-content__copy {
    transform: translateY(-34px);
}

.costco-showcase .hero-content__copy > p {
    max-width: 420px;
    margin: 0;
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.45;
}

.costco-showcase .hero-content .button-row {
    margin-top: clamp(42px, 6vh, 68px); /* Space after the text */
    transform: translateY(30px); /* Moves buttons farther down */
}

@media (max-width: 900px) {
    .costco-showcase .hero-content {
        align-items: stretch;
    }

    .costco-showcase .hero-content__copy,
    .costco-showcase .hero-content__copy > p {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .costco-showcase .hero-content .button-row {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .costco-showcase .hero-content {
        min-height: 520px;
    }

    .costco-showcase .hero-content__copy {
        transform: translateY(-22px);
    }

    .costco-showcase .hero-content__copy > p {
        font-size: 17px;
    }

    .costco-showcase .hero-content .button-row {
        margin-top: 38px;
        transform: translateY(10px);
    }
}


/* =========================================================
   Floating “Need help?” menu
   ========================================================= */

.retailer-help {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    color: #21153f;
    font-family: inherit;
}

.retailer-help__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 9px 20px 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: #1763c6;
    box-shadow: 0 14px 35px rgba(10, 43, 91, 0.28);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    list-style: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease;
}

.retailer-help__toggle::-webkit-details-marker {
    display: none;
}

.retailer-help__toggle:hover,
.retailer-help__toggle:focus-visible {
    background: #0f54ae;
    transform: translateY(-2px);
}

.retailer-help__toggle:focus-visible {
    outline: 3px solid rgba(71, 194, 255, 0.55);
    outline-offset: 3px;
}

.retailer-help__bubble {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #1763c6;
    font-size: 19px;
    font-weight: 900;
}

.retailer-help__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: min(340px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(30, 57, 99, 0.12);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(11, 32, 67, 0.24);
    transform-origin: right bottom;
    animation: retailer-help-in 180ms ease-out;
}

.retailer-help__heading {
    display: grid;
    gap: 5px;
    padding: 20px 21px 17px;
    background: linear-gradient(135deg, #0f4fa8, #176dcc);
    color: #fff;
}

.retailer-help__heading strong {
    font-size: 18px;
}

.retailer-help__heading span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.retailer-help__links {
    display: grid;
    padding: 9px;
}

.retailer-help__links a {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 13px;
    color: #21153f;
    text-decoration: none;
    transition:
        background-color 160ms ease,
        transform 160ms ease;
}

.retailer-help__links a:hover,
.retailer-help__links a:focus-visible {
    background: #f0f6ff;
    transform: translateX(-2px);
    outline: none;
}

.retailer-help__links a > span:first-child {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: #e8f3ff;
    color: #1763c6;
    font-size: 17px;
    font-weight: 900;
}

.retailer-help__links a > span:last-child {
    display: grid;
    gap: 3px;
}

.retailer-help__links strong {
    font-size: 14px;
    line-height: 1.25;
}

.retailer-help__links small {
    color: #697086;
    font-size: 12px;
    line-height: 1.35;
}

@keyframes retailer-help-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 600px) {
    .retailer-help {
        right: 15px;
        bottom: 15px;
    }

    .retailer-help__toggle {
        min-height: 50px;
        padding: 7px 16px 7px 7px;
    }

    .retailer-help__bubble {
        width: 36px;
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .retailer-help__panel,
    .retailer-help__toggle,
    .retailer-help__links a {
        animation: none;
        transition: none;
    }
}
/* Why choose us — informational cards, not links */

.wholesale-advantages__note {
    display: inline-flex;
    margin-top: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #eef5fc;
    color: #527093;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Informational wholesale advantage cards */

.wholesale-advantages .feature-card {
    position: relative;
    padding: 30px;
    border: 1px solid #dfe7f1;
    border-top: 4px solid var(--wholesale-blue);
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7faff 100%
    );
    box-shadow: 0 12px 30px rgba(20, 47, 86, 0.08);
    cursor: default;
}

.wholesale-advantages .feature-number {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--wholesale-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.wholesale-advantages .feature-card h3 {
    margin: 20px 0 12px;
}

.wholesale-advantages .feature-card p {
    margin: 0;
}

/* Keep cards completely static—they are not links */

.wholesale-advantages .feature-card:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(20, 47, 86, 0.08);
}
.wholesale-advantages .feature-card {
    position: relative;
    overflow: hidden;
}

.wholesale-advantages .feature-card::after {
    position: absolute;
    top: 14px;
    right: 20px;
    color: rgba(23, 99, 198, 0.08);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.wholesale-advantages .feature-card:nth-child(1)::after {
    content: "01";
}

.wholesale-advantages .feature-card:nth-child(2)::after {
    content: "02";
}

.wholesale-advantages .feature-card:nth-child(3)::after {
    content: "03";
}

.wholesale-advantages .feature-card:nth-child(4)::after {
    content: "04";
}
.wholesale-advantages .feature-card h3,
.wholesale-advantages .feature-card p {
    position: relative;
    z-index: 1;
}

.wholesale-advantages .feature-number {
    position: relative;
    z-index: 1;
}


/***** Backgrounds *****/
/* Contact page background */
body.page-template-page-contact-php main.site-main {
    width: 100%;
    min-height: calc(100vh - 180px);

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.45),
            rgba(255, 255, 255, 0.52)
        ),
        url("../images/bg/sunlit-surf-1920x1080.webp")
        center / cover no-repeat fixed;
}

/* Existing white section was covering the background */
body.page-template-page-contact-php .contact-form-section {
    background: transparent;
}
/* Cart page background */
/* Cart page background */
body.woocommerce-cart main.site-main {
    width: 100%;
    min-height: calc(100vh - 180px);

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.36),
            rgba(255, 255, 255, 0.46)
        ),
        url("../images/bg/ocean-blue-palm-1920x1080.webp")
        center / cover no-repeat fixed;
}

/* Complete cart-items panel */
body.woocommerce-cart .wc-block-cart__main {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(25, 72, 140, 0.14);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(22, 39, 73, 0.10);
}

/* Cart totals panel */
body.woocommerce-cart .wc-block-cart__sidebar {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(25, 72, 140, 0.14);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(22, 39, 73, 0.10);
}

@media (max-width: 767px) {
    body.woocommerce-cart main.site-main {
        background-attachment: scroll;
    }

    body.woocommerce-cart .wc-block-cart__main,
    body.woocommerce-cart .wc-block-cart__sidebar {
        padding: 18px;
        border-radius: 14px;
    }
}

/* Checkout page background */
body.woocommerce-checkout main.site-main {
    width: 100%;
    min-height: calc(100vh - 180px);

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.36),
            rgba(255, 255, 255, 0.46)
        ),
        url("../images/bg/ad8789bf-aff6-4752-9484-943dd9749ebb.png")
        center / cover no-repeat fixed;
}

/* Complete checkout form panel */
body.woocommerce-checkout .wc-block-checkout__main {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(25, 72, 140, 0.14);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 14px 40px rgba(22, 39, 73, 0.10);
}

/* Order summary panel */
body.woocommerce-checkout .wc-block-checkout__sidebar {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(25, 72, 140, 0.14);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(22, 39, 73, 0.10);
}

@media (max-width: 767px) {
    body.woocommerce-checkout main.site-main {
        background-attachment: scroll;
    }

    body.woocommerce-checkout .wc-block-checkout__main,
    body.woocommerce-checkout .wc-block-checkout__sidebar {
        padding: 18px;
        border-radius: 14px;
    }
}


/* Homepage background */
body.home #primary.site-main {
    width: 100%;
    min-height: calc(100vh - 180px);

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.32)
        ),
        url("../images/bg/bright-blue-ocean-1920x1080.webp")
        center / cover no-repeat fixed;
}

/* Nested main created by front-page.php */
body.home #primary > main.site-main {
    background: transparent;
}

/* Show the background through all sections except the hero */
body.home #primary > main.site-main > section:not(.home-hero) {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

@media (max-width: 767px) {
    body.home #primary.site-main {
        background-attachment: scroll;
        background-position: center top;
    }
}
/* Hide PayPal Express section on the Cart page only */
/* Cart: hide PayPal Express, Pay Later message, and OR separator */
body.woocommerce-cart
[data-block-name="woocommerce-paypal-payments/cart-paylater-messages"],
body.woocommerce-cart
.wc-block-cart__payment-options {
    display: none !important;
}
/* Make the PayPal description box compact */
body.woocommerce-checkout
#payment
.payment_box.payment_method_ppcp-gateway {
    height: auto !important;
    min-height: 0 !important;
    padding: 14px 16px !important;
    margin: 10px 0 18px !important;
}

/* Remove unnecessary paragraph spacing */
body.woocommerce-checkout
#payment
.payment_box.payment_method_ppcp-gateway p {
    margin: 0 !important;
}
/* Hide PayPal Express and Pay Later on product pages only */
body.single-product .ppc-button-wrapper,
body.single-product .ppcp-messages,
body.single-product [data-pp-placement="product"],
body.single-product [data-block-name*="woocommerce-paypal-payments"] {
    display: none !important;
}
