:root {
    /* Keep the custom storefront components on the same palette as style.min.css. */
    --text-primary: #000000;
    --text-body: #444444;
    --text-soft: #555555;
    --cream: var(--color-gray-light);
    --dark: var(--text-primary);
    --tan: var(--color-brand-300);
    --tan-light: var(--color-brand-600);
    --primary-blue: var(--color-primary);
    --sale-red: #E53E3E;
    --primary-blue-hover: #1748B5;
    --surface-soft: var(--color-gray-light);
    --surface-blue: var(--color-brand-200);
    --border-blue: var(--color-brand-100);
    --terracotta: var(--primary-blue);
    --gray-bg: var(--color-gray-light);
    --text-muted: var(--text-body);
}

/* Professional ecommerce footer */
.site-footer {
    background: #000;
    color: #aeb4c0;
    padding: 0 0 24px;
}

.site-footer .container {
    max-width: 1240px;
}

.footer-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    padding: 54px 0 42px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-kicker {
    color: #7a9ce9;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    margin: 0 0 12px;
}

.footer-intro h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    letter-spacing: -.04em;
    margin: 0 0 8px;
    max-width: 600px;
}

.footer-intro p:not(.footer-kicker) {
    color: #8f96a3;
    margin: 0;
    max-width: 560px;
}

.footer-shop-link {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff !important;
    font-weight: 700;
}

.footer-shop-link:hover {
    background: #215ada;
    border-color: #215ada;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(230px, 1.15fr) 2fr;
    gap: 86px;
    padding: 48px 0;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-logo .logo-badge {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #000;
}

.footer-logo-image {
    width: 200px;
    height: 90px;
    object-fit: cover;
    object-position: center 33%;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #fff;
    font-weight: 700;
    margin: 22px 0 8px !important;
}

.footer-description {
    color: #8f96a3 !important;
    line-height: 1.7;
    font-size: .88rem;
    margin: 0 0 22px !important;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    max-width: none;
}

.site-footer h6 {
    color: #fff;
    font-size: .72rem;
    letter-spacing: .14em;
    margin: 4px 0 18px;
}

.site-footer .footer-links a {
    color: #aeb4c0;
    font-size: .86rem;
    margin: 0 0 12px;
    line-height: 1.45;
}

.site-footer .footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact a {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact a i {
    color: #ffffff;
    width: 16px;
    margin-top: 3px;
    flex: 0 0 16px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.site-footer .footer-socials a {
    display: grid !important;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #d8dce4;
}

.site-footer .footer-socials a:hover {
    color: #fff;
    background: #215ada;
    border-color: #215ada;
}

.footer-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-perks span {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    align-items: center;
}

.footer-perks i {
    grid-row: span 2;
    color: #7a9ce9;
    font-size: 1.1rem;
    margin: 0;
}

.footer-perks b {
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
}

.footer-perks small {
    color: #7e8693;
    font-size: .7rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    color: #747c89;
    font-size: .75rem;
}

.footer-bottom i {
    color: #7a9ce9;
    margin-left: 4px;
}

@media (max-width: 767px) {
    .footer-intro {
        display: block;
        padding: 40px 0 30px;
    }

    .footer-shop-link {
        margin-top: 22px !important;
    }

    .footer-main {
        display: block;
        padding: 36px 0;
    }

    .footer-brand {
        max-width: none;
        margin-bottom: 38px;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-perks {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-bottom {
        display: block;
        line-height: 1.7;
    }

    .footer-bottom span:last-child {
        display: block;
        margin-top: 5px;
    }
}


* {
    box-sizing: border-box;
}

body {
    font-family: 'Cabin', sans-serif;
    color: var(--dark);
    background: #fff;
}

h1,
h2,
h3,
h4,
.brand-font {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.underline-accent {
    text-decoration: underline;
    text-decoration-color: var(--terracotta);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* ---------- Hero ---------- */
.hero-section {
    background: var(--gray-bg);
    padding: 70px 0 90px;
}

.hero-section h1 {
    font-size: 3.75rem;
    line-height: 1.25;
    word-wrap: break-word;
}

.btn-dark-pill {
    background: var(--dark);
    color: #fff;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: .25s;
}

.btn-dark-pill:hover {
    background: var(--terracotta);
    color: #fff;
}

.btn-outline-tan {
    border: 1px solid var(--dark);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    background: transparent;
}

.pot-row {
    position: absolute;
    bottom: 14%;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    padding: 0 40px;
}

/* ---------- Process Section ---------- */
.process-section {
    padding: 90px 0;
    position: relative;
}

section.process-section h2 {
    font-size: 3.052rem;
    line-height: 1.2em;
    letter-spacing: -0.022em;
}

.big-percent {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 800;
    color: var(--tan-light);
    z-index: 0;
    font-family: 'Cabin', sans-serif;
}

.process-img {
    width: 100%;
    height: 220px;
    border-radius: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.process-section h3 {
    color: #111111;
    font-weight: 500;
    font-size: 1.463rem;
    line-height: 1.2em;
    letter-spacing: -0.022em;
}

.process-section h4 {
    color: #111111;
    font-weight: 500;
    font-size: 1.263rem;
    line-height: 2em;
    letter-spacing: -0.022em;
}


.process-section p {
    color: #444444;
    font-size: 14px;
    font-weight: 400;
}

/* ---------- Product Cards ---------- */
section.section-pad h2 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.022em;
}

section.section-pad {
    padding: 80px 0;
}

.product-card {
    border: none;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(17, 17, 17, .09);
}

.product-thumb {
    background: #d2cac3;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.eyebrow {
    color: var(--terracotta);
    font-size: 15px;
    letter-spacing: .16em;
    font-weight: 700;
    text-transform: uppercase;
}

.page-hero {
    background: var(--gray-bg);
    padding: 75px 0 80px;
}


.page-hero h1 {
    max-width: 760px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -.04em;
}

.page-hero .lead {
    max-width: 600px;
    color: var(--text-muted);
}

/* ---------- Site breadcrumbs ---------- */
.site-breadcrumb {
    display: flex;
    align-items: center;
    min-height: 24px;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(17, 17, 17, .54);
    font-size: .69rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-breadcrumb>a,
.site-breadcrumb>span,
.site-breadcrumb>.breadcrumb-arrow {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.site-breadcrumb a,
.site-breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.site-breadcrumb a {
    transition: color .2s ease;
}

.site-breadcrumb a:hover {
    color: var(--terracotta);
}

.site-breadcrumb a:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-breadcrumb a:first-child i {
    font-size: .78rem;
}

.site-breadcrumb [aria-current="page"] {
    color: var(--dark);
    font-weight: 700;
}

.site-breadcrumb .breadcrumb-arrow {
    color: var(--terracotta);
    font-size: .6rem;
}

.auth-breadcrumb-wrap {
    padding-top: 30px;
    background: #fff;
}

.auth-breadcrumb-wrap .site-breadcrumb {
    margin-bottom: 0;
}

/* Login breadcrumb: a quiet welcome strip that leads into the account card. */
.auth-breadcrumb-wrap {
    position: relative;
    overflow: hidden;
    padding: 18px 0;
    border-bottom: 1px solid rgba(33, 90, 218, .08);
    background:
        radial-gradient(circle at 8% 50%, rgba(33, 90, 218, .08), transparent 26%),
        linear-gradient(90deg, #fff 0%, #f8fbff 52%, #fff 100%);
}

.auth-breadcrumb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.auth-breadcrumb-wrap::after {
    position: absolute;
    top: -72px;
    right: 7%;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(33, 90, 218, .08);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.auth-breadcrumb-wrap .site-breadcrumb {
    position: relative;
    z-index: 1;
    min-height: 42px;
    margin: 0;
    padding: 6px 9px 6px 7px;
    border-color: rgba(33, 90, 218, .12);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 26px rgba(33, 90, 218, .08);
}

.auth-breadcrumb-wrap .breadcrumb-home-icon {
    width: 29px;
    height: 29px;
    background: var(--primary-blue);
    box-shadow: 0 5px 12px rgba(33, 90, 218, .2);
}

.auth-breadcrumb-wrap .breadcrumb-current {
    background: var(--surface-blue);
    color: var(--primary-blue);
}

.auth-breadcrumb-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-body);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.auth-breadcrumb-note i {
    color: var(--primary-blue);
    font-size: .85rem;
}

@media (max-width: 767px) {
    .site-breadcrumb {
        margin-bottom: 21px;
        gap: 7px;
        font-size: .6rem;
    }

    .auth-breadcrumb-wrap {
        padding: 14px 0;
    }

    .auth-breadcrumb-wrap::after {
        right: -50px;
    }

    .auth-breadcrumb-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .auth-breadcrumb-note {
        padding-left: 4px;
        font-size: .58rem;
    }
}

.hero-section {
    padding: 90px 0;
}

.hero-section h1 {
    max-width: 760px;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    letter-spacing: -.055em;
}

.hero-home {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #f6f2ec 0%, #f0ece6 57%, #e7ddd2 100%);
    padding: clamp(64px, 8vw, 110px) 0 94px;
}

.hero-home:before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -180px;
    top: -220px;
    border: 1px solid rgba(140, 74, 47, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(140, 74, 47, .03), 0 0 0 90px rgba(140, 74, 47, .025);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy h1 em {
    color: var(--terracotta);
    font-style: normal;
}

.hero-kicker {
    color: var(--terracotta);
    font-size: .69rem;
    letter-spacing: .16em;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hero-kicker span {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--terracotta);
    vertical-align: middle;
    margin-right: 8px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    color: #625d57;
    font-size: .78rem;
}

.hero-proof i {
    color: var(--terracotta);
    margin-right: 5px;
}

.hero-art-large {
    height: 500px;
    border-radius: 36px;
    box-shadow: 18px 20px 0 rgba(140, 74, 47, .12);
}

.hero-float-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, .93);
    border-radius: 16px;
    padding: 13px 17px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(17, 17, 17, .12);
}

.hero-float-card strong {
    font-size: .82rem;
}

.hero-float-card span {
    color: var(--text-muted);
    font-size: .69rem;
    margin-top: 3px;
}

.hero-stamp {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background: rgba(17, 17, 17, .32);
}

.hero-stamp i {
    font-size: 1.1rem;
}

.hero-stamp small {
    font-size: .48rem;
    letter-spacing: .12em;
    line-height: 1.2;
}

.trust-strip {
    background: var(--dark);
    color: #fff;
    padding: 22px 0;
}

.trust-strip .row>div>div {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
    border-right: 1px solid #363636;
    padding: 6px 18px;
}

.trust-strip .row>div:last-child>div {
    border: 0;
}

.trust-strip i {
    color: #215ada;
    font-size: 1.45rem;
}

.trust-strip span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-strip strong {
    font-size: .78rem;
}

.trust-strip small {
    color: #aaa;
    font-size: .67rem;
}

.section-subcopy {
    color: var(--text-muted);
    margin: .55rem 0 0;
    max-width: 480px;
}


.category-card-home div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
}

.category-card-home div span,
.category-card-home div h3 {
    grid-column: 1;
}

.category-card-home div i {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 1.4rem;
}

.editorial-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-label {
    position: absolute;
    bottom: 22px;
    left: 22px;
    color: #fff;
    background: rgba(17, 17, 17, .7);
    border-radius: 30px;
    padding: 8px 13px;
    font-size: .65rem;
    letter-spacing: .13em;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.feature-list>div {
    display: flex;
    gap: 13px;
}

.feature-list i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    background: #e9f1fc;
    color: var(--terracotta);
    border-radius: 50%;
}

.feature-list span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feature-list strong {
    font-size: .84rem;
}

.feature-list small {
    color: var(--text-muted);
    line-height: 1.5;
}

.quote-section {
    background: #f9f9f9;
    padding: 85px 0;
}

.quote-section blockquote {
    max-width: 700px;
    font-family: 'Cabin', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.25;
    margin: 18px 0 24px;
    letter-spacing: -.03em;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-author span {
    display: flex;
    flex-direction: column;
}

.quote-author strong {
    font-size: .8rem;
}

.quote-author small {
    color: var(--text-muted);
    font-size: .7rem;
}

.review-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.review-score>strong {
    font-size: 5rem;
    line-height: 1;
}

.review-score>div {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #b16d3e;
    letter-spacing: .1em;
}

.review-score small {
    color: var(--text-muted);
    margin-top: 4px;
}

.home-faq {
    background: #fff;
}

.faq-accordion {
    border-top: 1px solid #ded8d0;
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ded8d0;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--dark);
    box-shadow: none;
    padding: 20px 0;
    font-weight: 600;
}

.faq-accordion .accordion-button:after {
    background-size: 14px;
}

.faq-accordion .accordion-body {
    padding: 0 38px 22px 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: .9rem;
}

.newsletter-section {
    padding: 0 0 90px;
}

.newsletter-card {
    background: #e9f1fc;
    border-radius: 28px;
    padding: 42px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-card h2 {
    margin: .45rem 0 .5rem;
}

.newsletter-card p:not(.eyebrow) {
    color: var(--text-muted);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    min-width: min(100%, 400px);
}



.newsletter-form input:focus {
    border-color: var(--terracotta);
}

.review-section {
    overflow: hidden;
}

.review-section .section-heading {
    margin-bottom: 28px;
}

.review-section .section-subcopy {
    max-width: 520px;
}

.review-controls {
    display: flex;
    gap: 9px;
}

.review-controls button {
    position: static;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 17, 17, .25);
    border-radius: 50%;
    color: var(--dark);
    opacity: 1;
    background: rgba(255, 255, 255, .35);
    transition: .2s;
}

.review-controls button:hover {
    color: #fff;
    background: #215ada;
    border: none;
}

.review-carousel .carousel-inner {
    overflow: visible;
}

.review-empty-state {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1rem;
}

.review-slide {
    min-height: 295px;
    padding: 20px 0 62px;
}

.review-carousel blockquote {
    margin-top: 0;
}

.review-indicators {
    bottom: 18px;
    margin: 0;
    gap: 7px;
}

.review-indicators [data-bs-target] {
    width: 26px;
    height: 3px;
    margin: 0;
    border: 0;
    background: #fff;
    opacity: .75;
    transition: width .3s, opacity .3s;
}

.review-indicators .active {
    width: 52px;
    opacity: 1;
}

.review-carousel .carousel-item {
    transition: transform .7s ease-in-out, opacity .45s ease;
}

.review-carousel .quote-author img {
    background: #d8d1c7;
}

.review-score>strong {
    letter-spacing: -.06em;
}

.review-score .stars {
    font-size: 1.05rem;
}

.about-process-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    border-radius: 26px;
    background: #e5ddd2;
}

.about-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.about-process-image:hover img {
    transform: scale(1.04);
}

.about-process-image span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 30px;
    background: rgba(17, 17, 17, .72);
    color: #fff;
    font-size: .7rem;
}

.about-process-image i {
    color: #215ada;
}

.footer-tagline {
    color: #fff !important;
    font-family: 'Cabin', sans-serif;
    font-size: .92rem !important;
    font-weight: 600;
    margin: 20px 0 7px !important;
}

.footer-description {
    margin: 0 0 14px !important;
    color: #aaa;
    line-height: 1.65;
    font-size: .78rem;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 20px !important;
    color: #aaa;
    font-size: .78rem;
    line-height: 1.5;
}

.footer-address i {
    color: #215ada;
    font-size: 1rem;
    margin-top: 1px;
}

.footer-socials {
    margin-top: 4px;
}

.home-benefits {
    background: #fff;
}

.benefits-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #e9e0d5;
    box-shadow: 12px 12px 0 #e9f1fc;
}

.benefits-intro-image img {
    width: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.benefits-intro-image:hover img {
    transform: scale(1.04);
}

.benefits-intro-image span {
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 30px;
    background: rgba(17, 17, 17, .72);
    color: #fff;
    font-size: .68rem;
}

.benefits-intro-image i {
    color: #ffffff;
}

.benefits-intro h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -.045em;
    margin: .45rem 0 .7rem;
}

.benefits-intro .text-link {
    display: inline-block;
    margin-top: 18px;
}

.benefit-card {
    height: 100%;
    min-height: 190px;
    padding: 24px 20px 20px;
    border: 1px solid #e9f1fc;
    border-radius: 30px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #e9f1fc;
    box-shadow: 0 14px 30px rgba(17, 17, 17, .07);
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: #e9f1fc;
    color: #215ada;
    font-size: 1.25rem;
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 9px;
}

.benefit-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.65;
}

.faq-page-hero .lead,
.legal-hero .lead {
    max-width: 590px;
    color: var(--text-muted);
}

.faq-side-card {
    background: #e9f1fc;
    border-radius: 24px;
    padding: 28px;
    position: sticky;
    top: 110px;
}

.faq-side-card-icon {
    display: inline-grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
    color: var(--terracotta);
    box-shadow: 0 10px 24px rgba(16, 33, 68, .08);
}

.faq-side-card-icon svg {
    width: 30px;
    height: 30px;
}

.faq-side-card-icon svg * {
    vector-effect: non-scaling-stroke;
}

.faq-side-card h3 {
    margin-top: 20px;
}

.faq-side-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-hero small {
    color: var(--text-muted);
    display: block;
    margin-top: 18px;
}

.legal-intro {
    background: #e9f1fc;
    border-left: 3px solid var(--terracotta);
    border-radius: 0 16px 16px 0;
    padding: 21px 24px;
    color: #4f4943;
    line-height: 1.75;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 110px;
    border-right: 1px solid #e9f1fc;
    padding: 5px 22px 5px 0;
}

.legal-nav strong {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    margin-bottom: 7px;
}

.legal-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .82rem;
}

.legal-nav a:hover {
    color: var(--terracotta);
}

.legal-copy h2 {
    font-size: 30px !important;
    line-height: 25px !important;
}

.legal-copy p {
    font-size: 14px;
}

.hero-art {
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    background: #d2cac3;
}

.hero-art img,
.rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading h2,
.detail-lower h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -.04em;
}

.text-link {
    color: var(--dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #555555;
    color: #fff;
}

.category-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(0, 0, 0, .72));
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s;
}

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

.category-card div {
    position: absolute;
    z-index: 1;
    inset: auto 24px 22px;
}

.category-card span {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.category-card-premium:hover span,
.category-card-premium:hover h3,
.category-card-premium:hover i {
    color: #ffffff!important; 
}

.category-card h3 {
    color: #fff;
    margin: .35rem 0 0;
}

.product-card {
    border: 0;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(17, 17, 17, .09);
}

.product-thumb {
    display: flex;
    height: 270px;
    position: relative;
    background: #d2cac3;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.product-thumb.is-out-of-stock img,
.product-gallery-main.is-out-of-stock #detail-image {
    filter: blur(1.4px) grayscale(.28);
    opacity: .62;
}

.product-thumb.is-out-of-stock::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(24, 24, 31, .16));
    content: '';
    pointer-events: none;
}

.product-card:hover .product-thumb img {
    transform: scale(1.04);
}

/* Homepage product cards follow the rounded, marketplace-style card UI. */
.home-product-card {
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
}

.home-product-card .product-thumb {
    height: 275px;
    border-radius: 18px;
    background: #f1f1f1;
}

.home-product-card .product-thumb img {
    object-fit: contain;
    mix-blend-mode: multiply;
    padding: 10px;
}

.home-card-badge,
.home-card-wishlist {
    position: absolute;
    z-index: 2;
}

.home-card-badge {
    top: 16px;
    left: 16px;
    padding: 6px 10px;
    border-radius: 5px;
    background: #2f63d8;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
}

.home-card-wishlist {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: #b8b8b8;
    font-size: 1.15rem;
}

.home-product-card .product-info {
    padding: 18px 0 0;
}

.home-product-card .product-info h5 {
    font-size: 1.05rem;
    line-height: 1.3;
}

.home-product-card .product-info h5 a {
    color: #171717;
    text-decoration: none;
}

.home-product-card .price-old {
    margin-right: 6px;
    color: #999;
    text-decoration: line-through;
}

.home-product-card .price-new {
    color: #171717;
}

.home-save-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 14px;
    background: #ef4545;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
}

.home-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
}

.home-card-rating span {
    color: #ffba17;
    letter-spacing: 2px;
}

.home-card-rating small {
    color: #777;
}

.home-product-card .add-cart-link {
    margin-top: 10px;
    font-size: .82rem;
}

.sale-badge,
.stock-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--terracotta);
    color: #fff;
    border-radius: 30px;
    padding: 5px 11px;
    font-size: .7rem;
    font-weight: 700;
}

.stock-badge {
    z-index: 1;
    background: #e53e3e;
    left: auto;
    right: 15px;
    box-shadow: 0 8px 18px rgba(180, 35, 45, .2);
}

.product-info h5 {
    font-size: 1rem;
    margin: 0;
}

.product-info h5 a {
    color: var(--dark);
    text-decoration: none;
}

.icon-button {
    border: 0;
    background: transparent;
    font-size: .9rem;
    color: var(--dark);
    transition: color .2s, transform .2s;
}

.icon-button:hover {
    color: var(--terracotta);
    transform: scale(1.12);
}

.icon-button.saved {
    color: var(--terracotta);
}



.add-cart-link {
    border: 0;
    background: none;
    padding: 0;
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
    margin-top: 14px;
}

.add-cart-link:disabled {
    color: #888;
}

.empty-state,
.loading-state {
    text-align: center;
    padding: 70px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 2.2rem;
    color: var(--terracotta);
}

.empty-state h3 {
    margin: .8rem 0;
}

.summary-card {
    background: #e9f1fc;
    border-radius: 28px;
    padding: 28px;
}

.summary-card h2 {
    font-size: 1.6rem;
}

.detail-image {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    height: 540px;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-button {
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

.thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: unset;
}

.thumb-button:hover {
    border-color: var(--terracotta);
}

.detail-price {
    font-size: 2rem;
    font-weight: 700;
}

.lead-sm {
    color: #555;
    font-size: 1.08rem;
    line-height: 1.8;
}

.rating-line {
    color: var(--text-muted);
}

.stars {
    color: #bd7c42;
    letter-spacing: .08em;
}

.stock-note {
    display: inline-flex;
    gap: .5rem;
    background: #e8f1e8;
    color: #3f6d48;
    border-radius: 30px;
    padding: 8px 13px;
    font-size: .82rem;
}

.stock-note.out {
    background: #f7e8e4;
    color: #9a4534;
}

.qty-input {
    width: 76px;
    border: 1px solid #555555;
    border-radius: 30px;
    text-align: center;
    padding: 12px;
}

.spec-list {
    border-top: 1px solid #555555;
}

.spec-list div,
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 13px 0;
    border-bottom: 1px solid #555555;
}

.spec-list span {
    color: var(--text-muted);
}

.detail-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.review-item {
    padding: 0px 0;
}

.review-item p {
    margin: .4rem 0 0;
    color: var(--text-muted);
}

.review-demo-label {
    display: block;
    margin: 4px 0 6px;
    color: var(--secondary-gold, #215ada);
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.review-customer-label {
    color: #215ada;
}

.review-more-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 16px;
    border: 1px solid var(--primary-blue);
    border-radius: 999px;
    background: transparent;
    color: var(--primary-blue);
    font-weight: 700;
}

.review-more-button:hover {
    background: var(--primary-blue);
    color: #fff;
}

.cart-item,
.order-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #555555;
}

.cart-item img {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    object-fit: cover;
}

.cart-item h3,
.order-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.qty-button {
    border: 1px solid #555555;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.qty-button:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: scale(1.06);
}

.qty-button:disabled {
    opacity: .55;
    cursor: wait;
}

.remove-link {
    border: 0;
    background: none;
    color: #9a4534;
    text-decoration: underline;
}

.sticky-summary {
    position: sticky;
    top: 110px;
}

.sticky-cart-footer {
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: #fff;
    box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.08);
}

.total-row {
    font-size: 18px;
    border-bottom: 0;
}

.status-pill {
    display: inline-block;
    background: #e9f1fc;
    border-radius: 30px;
    padding: 6px 11px;
    text-transform: capitalize;
    font-size: .75rem;
}



.metric-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #e9f1fc;
    border-radius: 30px;
    color: var(--dark);
    text-decoration: none;
}

.metric-card strong {
    font-size: 2.4rem;
}

.metric-card span {
    color: var(--text-muted);
}

.account-intro {
    background: var(--dark);
    color: #fff;
}

.account-intro h2 {
    color: #fff;
}

.account-intro .eyebrow {
    color: #215ada;
}

.account-intro p {
    color: #555555;
}

.auth-card h1 {
    font-size: 2.3rem;
}

.auth-tabs {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid #555555;
    margin: 24px 0;
}

.auth-tabs button {
    border: 0;
    background: none;
    padding: 10px 8px;
    color: var(--text-muted);
    font-size: .82rem;
}

.auth-tabs button.active {
    color: var(--dark);
    border-bottom: 2px solid var(--terracotta);
}

.form-control,
.form-select {
    padding: 13px 17px;
    border-color: #e1e7f0;
    border-radius: 10px;
    font-size: 15px;
}

.form-message {
    margin: .8rem 0 0;
    color: var(--terracotta);
    font-size: .85rem;
}

.contact-detail {
    border-top: 1px solid #555555;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail span {
    color: var(--text-muted);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contact-detail a {
    color: var(--dark);
    font-weight: 600;
}

.number-card {
    background: #e9f1fc;
    border-radius: 24px;
    padding: 25px;
    height: 100%;
}

.number-card strong {
    color: var(--terracotta);
}

.number-card h3 {
    margin-top: 30px;
}

.number-card p {
    color: #555555;
    line-height: 30px;
}

.legal-copy p {
    color: #555555;
    line-height: 25px;
}

.legal-copy {
    max-width: 900px;
}

.legal-copy h2 {
    margin-top: 30px;
}

.max-copy {
    max-width: 600px;
}

.site-footer {
    background: var(--dark);
    color: #aaa;
    padding: 65px 0 25px;
}

.site-footer h6 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .75rem;
}

.site-footer a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin: .55rem 0;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 18px;
    font-size: .8rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 11px;
    color: #fff !important;
    font-family: 'Cabin', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 !important;
}

.footer-logo .logo-badge {
    width: 34px;
    height: 34px;
    font-size: 12px;
}

.footer-brand>p {
    margin: 22px 0 20px;
    line-height: 1.7;
    color: #aaa;
    font-size: .86rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(135px, 1fr));
    gap: 45px;
    flex: 1;
    max-width: 720px;
}

.footer-links h6 {
    margin-bottom: 18px;
}

.footer-links a {
    font-size: .82rem;
}

.footer-note {
    display: block;
    margin-top: 14px;
    color: #777;
    font-size: .75rem;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #3b3b3b;
    border-radius: 50%;
    color: #fff;
    margin: 0;
    font-size: .9rem;
}

.footer-socials a:hover {
    border-color: #215ada;
    color: #215ada;
}

.footer-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 52px;
    padding: 16px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    color: #555555;
    font-size: .75rem;
}

.footer-perks i {
    color: #215ada;
    margin-right: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #777;
}



.about-story-image {
    height: 500px;
    border-radius: 30px;
}

.about-value-card {
    position: relative;
    padding-top: 28px;
}

.about-value-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #215ada;
    color: #ffffff;
    font-size: 1.1rem;
}

.about-value-card strong {
    position: absolute;
    top: 30px;
    right: 25px;
}

.about-value-card h3 {
    margin-top: 18px;
}

.about-process {
    background: #e9f1fc;
}

.process-steps {
    display: grid;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid #444444;
}

.process-step:first-child {
    padding-top: 0;
}

.process-step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.process-step>span {
    flex: 0 0 42px;
    color: var(--terracotta);
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: .9rem;
}

.process-step h3 {
    font-size: 1.15rem;
    margin: 0 0 7px;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

.about-cta {
    padding: 68px 0;
    background: var(--dark);
    color: #fff;
}

.about-cta h2 {
    color: #fff;
    margin: .45rem 0 .6rem;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.about-cta p:not(.eyebrow) {
    color: #bdbdbd;
    margin: 0;
}

.about-cta .eyebrow {
    color: #215ada;
}

.btn-light-pill {
    background: #fff;
    color: var(--dark);
    border-radius: 30px;
    padding: 12px 27px;
    font-weight: 600;
    font-size: 14px;
}

.btn-light-pill:hover {
    background: #215ada;
    color: var(--dark);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 24px;
}

.footer-links a i {
    flex: 0 0 15px;
    width: 15px;
    text-align: center;
    line-height: 1;
}

@media (max-width:767px) {

    .hero-section,
    .section-pad {
        padding: 55px 0;
    }

    .hero-art {
        height: 300px;
    }

    .category-card {
        
        border-radius: 10px;
    }

    .product-thumb {
        height: 190px;
    }

    .product-info {
        padding: 15px;
    }

    .detail-image {
        height: 380px;
    }

    .detail-lower {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .catalog-tools {
        width: 100%;
    }

    .catalog-tools>* {
        flex: 1;
        min-width: 0;
    }

    .cart-item img {
        width: 78px;
        height: 78px;
    }

    .order-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-card .text-lg-end {
        text-align: left !important;
    }

    .order-card .d-flex {
        justify-content: flex-start !important;
    }

    .navbar-syramik {
        padding: 12px 0;
    }
}



/* Final mobile hardening across the storefront. */
@media (max-width: 767px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    img,
    svg {
        max-width: 100%;
    }

    .container {
        width: 100%;
        max-width: none;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-syramik {
        padding: 10px 0;
    }

    .navbar-syramik .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-brand {
        min-width: 0;
        max-width: calc(100% - 55px);
    }

    .navbar-brand .brand-font {
        display: block;
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: .96rem;
    }

    .navbar-brand .brand-logo {
        width: 96px;
        height: 46px;
        flex: 0 0 96px;
    }

    .navbar-toggler {
        padding: 5px 7px;
        font-size: 1.25rem;
    }

    #site-nav {
        margin-top: 10px;
        padding: 8px 0 4px;
        border-top: 1px solid #e9f1fc;
    }

    .navbar-syramik .site-nav-links {
        margin-left: 0;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .navbar-syramik .nav-link {
        margin: 0;
        padding: 10px 4px;
        border-bottom: 1px solid #f0ebe5;
        font-size: .84rem;
    }

    .navbar-syramik .nav-icon-link {
        justify-content: flex-start;
        padding: 10px 4px;
        border-bottom: 1px solid #f0ebe5;
        font-size: .88rem;
    }

    .navbar-syramik .nav-divider {
        display: none !important;
    }

    .user-menu {
        margin: 8px 0 0;
    }

    .user-menu-toggle {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-section,
    .section-pad {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .page-hero {
        padding: 52px 0 56px;
    }

    .page-hero h1,
    .hero-section h1 {
        max-width: 100%;
        font-size: clamp(2.25rem, 11vw, 3.5rem);
        line-height: 1.05;
        letter-spacing: -.05em;
        text-align: left;
    }

    .page-hero .lead,
    .hero-section .lead {
        font-size: .98rem;
        line-height: 1.6;
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.45rem);
        line-height: 1.1;
    }

    h3 {
        font-size: 1.15rem;
    }

    .btn-dark-pill,
    .btn-outline-tan {
        min-height: 44px;
        padding: 11px 19px;
    }

    .hero-home {
        padding-top: 48px;
        padding-bottom: 58px;
    }

    .hero-home .hero-copy h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .hero-home .hero-copy .d-flex {
        flex-wrap: wrap;
        gap: 9px !important;
    }

    .hero-home .hero-copy .btn {
        width: 100%;
        text-align: center;
    }

    .hero-proof {
        gap: 10px 16px;
        font-size: .7rem;
    }

    .hero-slider .carousel-item {
        overflow: hidden;
    }

    .hero-slider .hero-art-large {
        height: 320px;
        margin-top: 20px;
        border-radius: 24px;
    }

    .hero-slider .hero-control {
        bottom: -2px;
    }

    .trust-strip .row {
        --bs-gutter-x: 0;
    }

    .trust-strip .row>div {
        width: 50%;
    }

    .trust-strip .row>div>div {
        min-height: 58px;
        padding: 8px 10px;
    }

    .trust-strip strong {
        font-size: .65rem;
    }

    .trust-strip small {
        font-size: .56rem;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2 {
        max-width: 100%;
    }

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

    

    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
        gap: 10px;
    }

    .home-category-grid .category-card-featured {
        grid-column: span 2;
    }

    .home-category-grid .category-card-home h3 {
        font-size: 1rem;
    }

    .category-note {
        padding: 40px 0;
    }





    .review-carousel blockquote {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .newsletter-card {
        border-radius: 30px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 46px;
    }

    .footer-main {
        gap: 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .footer-links>div:last-child {
        grid-column: 1/-1;
    }

    .footer-links a {
        overflow-wrap: anywhere;
        font-size: .76rem;
    }

    .footer-address {
        overflow-wrap: anywhere;
    }

    .footer-perks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-bottom {
        font-size: .72rem;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-thumb {
        height: 185px;
        border-radius: 18px 18px 0 0;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h5 {
        font-size: .84rem;
        line-height: 1.25;
    }

    .product-info .small {
        font-size: .66rem;
    }

    .price-new {
        font-size: .9rem;
    }

    .product-detail-grid,
    .product-lower-grid {
        gap: 30px;
    }

    .product-gallery-main {
        height: 360px;
    }

    .product-buy-panel h1 {
        font-size: 25px;
    }

    .product-description {
        font-size: .9rem;
        line-height: 1.65;
    }

    .product-availability {
        width: 100%;
    }

    .buy-actions {
        flex-wrap: wrap;
    }

    .quantity-control {
        min-height: 48px;
    }

    .buy-button {
        min-width: 0;
        flex: 1 1 180px;
    }

    .wishlist-detail-button {
        min-height: 48px;
    }

    .product-trust-row {
        font-size: .65rem;
    }

    .product-lower-grid .related-panel .row {
        --bs-gutter-x: 10px;
    }

    .category-toolbar {
        gap: 18px;
    }

    .category-toolbar h2 {
        font-size: 1.8rem;
    }

    .catalog-layout {
        display: block;
    }

    .catalog-sidebar {
        margin-bottom: 20px;
    }

    .catalog-toolbar {
        gap: 10px;
    }

    .catalog-toolbar-copy span {
        font-size: .62rem;
    }

    .catalog-sort-form select {
        min-width: 125px;
        max-width: 145px;
        font-size: .68rem;
    }

    .catalog-results .product-thumb {
        height: 185px;
    }

    .cart-item {
        align-items: flex-start;
        gap: 11px;
    }

    .cart-item img {
        width: 70px;
        height: 70px;
    }

    .cart-item h3 {
        font-size: .88rem;
    }

    .sticky-summary {
        position: static;
    }

    .detail-lower {
        gap: 2.5rem;
    }

    .summary-card {
        padding: 20px;
        border-radius: 30px;
    }

    .form-control,
    .form-select {
        font-size: .86rem;
    }
}

@media (max-width: 390px) {
    .navbar-brand .brand-font {
        max-width: 150px;
        font-size: .88rem;
    }

    .hero-home .hero-copy h1 {
        font-size: 2.45rem;
    }

    .home-category-grid {
        grid-auto-rows: 155px;
    }

    .product-thumb,
    .catalog-results .product-thumb {
        height: 160px;
    }

    .product-info h5 {
        font-size: .78rem;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-sort-form,
    .catalog-sort-form label,
    .catalog-sort-form select {
        width: 100%;
        max-width: none;
    }

    .catalog-sort-form label {
        align-items: flex-start;
    }
}



/* ---------- Consistent breadcrumb hero height ---------- */

.page-hero .container,
.contact-hero .container {
    width: 100%;
    align-self: center;
}


@media (max-width: 767px) {
    .page-hero {
        min-height: 460px;
        padding: 54px 0 62px;
    }

    .contact-hero {
        min-height: 500px;
    }
}

@keyframes hero-content-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width:767px) {
    .hero-home {
        padding-top: 58px;
    }

    .hero-home h1 {
        font-size: clamp(2.45rem, 12vw, 3.6rem);
    }

    .hero-home .hero-art-large {
        height: 340px;
        margin-top: 8px;
        border-width: 7px;
    }

    .hero-copy {
        padding-bottom: 6px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .hero-mini-stats {
        gap: 15px;
        margin-top: 26px;
    }

    .hero-mini-stats small {
        font-size: .54rem;
        letter-spacing: .04em;
    }

    .hero-art-large:before {
        inset: -10px -10px 10px 10px;
        border-radius: 31px;
    }

    .hero-art-note {
        right: -22px;
        bottom: 54px;
        font-size: .52rem;
    }

    .hero-float-card {
        bottom: 14px;
        left: 14px;
    }

    .hero-stamp {
        top: 14px;
        right: 14px;
    }

    .trust-strip {
        padding: 15px 0;
    }

    .trust-strip .row>div>div {
        border-right: 0;
        padding: 7px 5px;
    }

    .trust-strip i {
        font-size: 1.15rem;
    }

    .trust-strip strong {
        font-size: .69rem;
    }

    .trust-strip small {
        font-size: .59rem;
    }

    .category-card-home {
        height: 245px;
    }


    .newsletter-card {
        padding: 28px 22px;
        display: block;
    }

    .newsletter-form {
        margin-top: 22px;
        min-width: 0;
    }

    .newsletter-form .btn {
        padding-left: 18px;
        padding-right: 18px;
    }

    .quote-section {
        padding: 60px 0;
    }

    .review-score {
        justify-content: flex-start;
        margin-top: 12px;
    }

    .legal-nav {
        position: static;
        border-right: 0;
        border-bottom: 1px solid #e9f1fc;
        padding: 0 0 18px;
    }

    .faq-side-card {
        position: static;
    }
}

@media (max-width:767px) {
    .review-section .section-heading {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .review-controls {
        margin-top: 14px;
    }

    .review-slide {
        min-height: 385px;
        padding-bottom: 58px;
    }

    .review-carousel blockquote {
        font-size: 1.55rem;
    }

    .review-indicators {
        bottom: 12px;
    }
}

@media (max-width:767px) {
    .hero-slider-shell {
        padding-bottom: 62px;
    }

    .hero-slider .carousel-item {
        min-height: 0;
    }

    .hero-slider .carousel-indicators {
        margin: 21px 0 0;
        padding: 0 12px;
    }

    .hero-slider .hero-control {
        bottom: -1px;
        width: 38px;
        height: 38px;
    }

    .hero-slider .hero-control.carousel-control-prev {
        right: 58px;
    }

    .hero-slider .hero-control.carousel-control-next {
        right: 12px;
    }

    .hero-slide-count {
        right: 14px;
        bottom: 14px;
    }

    .hero-slider .hero-copy {
        padding-top: 4px;
    }
}

@media (max-width:767px) {
    .footer-main {
        display: block;
    }

    .footer-brand {
        max-width: none;
        margin-bottom: 38px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .footer-links>div:last-child {
        grid-column: 1 / -1;
    }

    .footer-perks {
        gap: 14px 22px;
        margin-top: 38px;
    }

    .footer-bottom {
        display: block;
        line-height: 1.7;
    }

    .footer-bottom span:last-child {
        display: block;
        margin-top: 4px;
    }

    .about-story-image {
        height: 330px;
    }

    .about-cta {
        padding: 52px 0;
    }

    .about-cta .btn {
        margin-top: 10px;
    }
}

/* Product detail: editorial gallery + conversion-focused buy panel. */
.product-detail-shell {
    padding-top: 34px;

}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #8a8178;
    font-size: .75rem;
}

.product-breadcrumb a {
    color: #5a5149;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: var(--terracotta);
}

.product-breadcrumb i {
    font-size: .65rem;
    color: #b8aaa0;
}

.product-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: clamp(38px, 6vw, 94px);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 110px;
}

.product-gallery-main {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 16px;
    background: #e9e2da;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.035);
}

.product-gallery-label,
.product-gallery-sale {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .82);
    color: #4c433c;
    font-size: .68rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.product-gallery-sale {
    left: auto;
    right: 20px;
    background: var(--terracotta);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    padding-bottom: 3px;
}

.thumb-button {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    border: 2px solid transparent;
    background: #eee7df;
    padding: 0;
    overflow: hidden;
    border-radius: 15px;
    transition: border-color .2s, transform .2s;
}

.thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: unset;
}

.thumb-button:hover,
.thumb-button.active {
    border-color: var(--terracotta);
    transform: translateY(-2px);
}

.gallery-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #857a70;
    font-size: .73rem;
}

.gallery-note i {
    color: var(--terracotta);
}

.product-buy-panel {
    padding: 8px 0 0;
}

.product-buy-panel h1 {
    max-width: 600px;
    margin: 10px 0 14px;
    font-size: 30px;
    line-height: .98;
    letter-spacing: -.055em;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #756c64;
    font-size: .82rem;
}

.product-rating-row a {
    color: #756c64;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rating-divider {
    color: #c1b6ac;
}

.product-rating-row .stars {
    font-size: 14px;
}

.product-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 18px;
}

.product-price-row strong {
    font-size: 22px;
    letter-spacing: -.03em;
}

.product-price-row .price-old {
    color: #a49a91;
    font-size: 1rem;
}

.save-pill {
    padding: 5px 9px;
    border-radius: 30px;
    background: #e9f1fc;
    color: #87563d;
    font-size: 12px;
    font-weight: 700;
}

.product-quick-spec {
    position: relative;
    margin: 2px 0 18px;
}

.product-quick-spec span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    color: #215ada;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.product-quick-spec strong {
    display: block;
    max-width: 100%;
    color: #000000;
    font-size: 13px;
    line-height: 1.62;
}

.product-description {
    max-width: 590px;
    color: #6b625a;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    padding: 11px 14px;
    border: 1px solid #d7e4d7;
    border-radius: 15px;
    color: #35633f;
    background: #f5faf4;
}

.product-availability.out {
    border-color: #edd5ce;
    color: #994c3a;
    background: #fff7f4;
}

.product-out-of-stock {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: fit-content;
    margin: 25px 0 18px;
    padding: 13px 18px;
    border: 1px solid #f2c4c4;
    border-radius: 15px;
    background: #fff5f5;
    color: var(--sale-red);
}

.product-out-of-stock strong {
    font-size: .9rem;
}

.product-out-of-stock span {
    font-size: .75rem;
    opacity: .85;
}

.product-availability>i {
    font-size: 1.15rem;
}

.product-availability span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-availability strong {
    font-size: .8rem;
}

.product-availability small {
    color: inherit;
    opacity: .78;
    font-size: .68rem;
}

.buy-actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin: 25px 0 18px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #d8d0c8;
    border-radius: 30px;
    background: #fff;
}

.quantity-control button {
    width: 35px;
    height: 100%;
    border: 0;
    background: none;
    color: #514840;
    font-size: 1.2rem;
}

.quantity-control input {
    width: 30px;
    border: 0;
    outline: 0;
    text-align: center;
    font-weight: 700;
    background: transparent;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

.buy-button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 50px;
}

.buy-button.is-added {
    border-color: #dbe8ff;
    background: #eef5ff;
    color: var(--primary-blue, #215ada);
}

.buy-button.is-added:hover {
    border-color: #c8dbff;
    background: #e3eeff;
    color: var(--primary-blue-hover, #1242af);
}

.buy-now-button {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.wishlist-detail-button {
    flex: 0 0 52px;
    border: 1px solid #d8d0c8;
    border-radius: 50%;
    background: #fff;
    font-size: .9rem;
    transition: .2s;
}

.wishlist-detail-button:hover,
.wishlist-detail-button.saved {
    color: var(--terracotta);
    border-color: var(--terracotta);
    background: #fff7f2;
}

/* Product-page actions: keep Buy now distinct while matching the blue theme. */
.buy-actions .buy-now-button {
    min-height: 50px;
    min-width: 142px;
    padding: 0 22px;
    border: 1px solid var(--primary-blue);
    border-radius: 999px;
    background: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 8px 18px rgba(33, 90, 218, .08);
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.buy-actions .buy-now-button:hover {
    border-color: var(--primary-blue-hover);
    background: var(--primary-blue-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(33, 90, 218, .18);
}

.product-detail-hero-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--primary-blue);
    font-weight: 700;
}

.product-detail-hero-link:hover {
    color: var(--primary-blue-hover);
}

@media (max-width: 575px) {
    .buy-actions .buy-now-button {
        min-width: 0;
        flex: 1 1 150px;
        padding: 0 16px;
    }
}

/* Header search is controlled by storefront.js so it works even when the
   legacy theme search script is unavailable or loads in a different order. */
.rbt-search-dropdown[data-site-search] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: polygon(0 0, 200% 0, 200% 0, 0 0);
    z-index: 1045;
}

.rbt-search-dropdown[data-site-search].active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: polygon(0 0, 200% 0, 200% 200%, 0 200%);
}

.rbt-search-dropdown[data-site-search] .rbt-search-form {
    position: relative;
    z-index: 2;
}

.rbt-search-dropdown[data-site-search] .header-search-results {
    position: relative;
    z-index: 2;
}

.rbt-search-dropdown[data-site-search] .header-search-close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    z-index: 5;
    border: 1px solid var(--color-brand-300, #d3e1f8);
    border-radius: 50%;
    background: var(--color-white, #fff);
    color: var(--color-primary, #215ada);
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    backdrop-filter: none;
    left: auto !important;
    right: 18px !important;
    top: 18px !important;
}

.rbt-search-dropdown[data-site-search] .header-search-close:hover {
    background: var(--color-primary, #215ada);
    color: var(--color-white, #fff);
}

.rbt-product-search-dropdown .search-page-result>a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    color: inherit;
    text-decoration: none;
}

.rbt-product-search-dropdown .search-page-result .search-result-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 8px;
    background: var(--color-brand-50, #eff1f4);
    color: var(--color-primary, #215ada);
}

.rbt-product-search-dropdown .search-page-result .rbt-product-info {
    flex: 1;
}

.rbt-product-search-dropdown .search-page-result small {
    display: block;
    overflow: hidden;
    color: var(--color-gray-500, #555);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-search-panel {
    padding: 4px 15px 8px;
}

.header-search-panel .title {
    margin-bottom: 0;
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    letter-spacing: -.03em;
}

.header-search-panel .rbt-search-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.header-search-panel .rbt-tag-btn {
    border: 1px solid rgba(33, 90, 218, .12);
    border-radius: 999px;
    background: rgba(33, 90, 218, .05);
    color: var(--primary-blue, #215ada);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-search-panel .rbt-tag-btn:hover {
    transform: translateY(-1px);
    background: rgba(33, 90, 218, .1);
    box-shadow: 0 8px 18px rgba(33, 90, 218, .08);
}

.header-search-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.search-product-card,
.search-collection-card {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(33, 90, 218, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(14, 25, 50, .05);
}

.search-product-thumb,
.search-collection-thumb {
    display: block;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 16px;
    background: #f7f8fb;
}

.search-product-thumb img,
.search-collection-thumb img {
    width: 100%;
    height: 100%;
    object-fit: unset;
}

.search-product-body,
.search-collection-body {
    min-width: 0;
}

.search-product-kicker,
.search-collection-kicker {
    display: inline-flex;
    margin-bottom: 5px;
    color: var(--primary-blue, #215ada);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.search-product-title,
.search-collection-title {
    display: -webkit-box;
    overflow: hidden;
    color: #1f1f1f;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.search-product-title:hover,
.search-collection-title:hover {
    color: var(--primary-blue, #215ada);
}

.search-product-meta,
.search-collection-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

.search-product-meta strong,
.search-collection-meta strong {
    color: var(--primary-blue, #215ada);
    font-size: .94rem;
}

.search-product-meta small,
.search-collection-meta small {
    color: #7a7170;
    font-size: .72rem;
    font-weight: 600;
}

.search-product-action {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(33, 90, 218, .12);
    border-radius: 50%;
    color: var(--primary-blue, #215ada);
    background: rgba(33, 90, 218, .05);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.search-product-action:hover {
    transform: translateY(-1px);
    background: rgba(33, 90, 218, .1);
    box-shadow: 0 8px 18px rgba(33, 90, 218, .08);
}

.search-collection-actions {
    display: flex;
    justify-content: flex-end;
}

.search-collection-actions .btn {
    min-width: 96px;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .header-search-card-list {
        grid-template-columns: 1fr;
    }

    .search-product-card,
    .search-collection-card {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .search-product-action,
    .search-collection-actions {
        grid-column: 1 / -1;
        justify-self: end;
    }
}

.product-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 17px 0 20px;
    border-top: 1px solid #e4ddd5;
    border-bottom: 1px solid #e4ddd5;
    color: #555555;
    font-size: .7rem;
}

.product-trust-row i {
    margin-right: 5px;
    color: var(--terracotta);
    font-size: .9rem;
}

.product-spec-accordion details {
    border-bottom: 1px solid #e9f1fc;
}

.product-spec-accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 2px;
    list-style: none;
    cursor: pointer;
    color: #2d2926;
    font-size: .9rem;
    font-weight: 700;
}

.product-spec-accordion summary::-webkit-details-marker {
    display: none;
}

.product-spec-accordion summary i {
    transition: transform .2s;
}

[open] summary i {
    transform: rotate(45deg);
}

.product-spec-accordion p {
    color: #444444;
    line-height: 1.7;
    font-size: 15px;
    margin: 0 2px 18px;
}

.product-spec-accordion .spec-list {
    border-top: 0;
    margin-bottom: 8px;
}

.product-spec-accordion .spec-list div {
    padding: 10px 2px;
    font-size: .78rem;
}

.product-lower {
    background: #ffffff;
}

.product-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(40px, 1vw, 110px);
}

.product-lower .section-heading h2 {
    margin: .35rem 0 .45rem;
}

.product-lower .section-heading>p:last-child {
    color: #555555;
}

.review-form {
    background: #f3f3f3;

    border-radius: 8px;
}

.related-panel .product-card {
    background: #fff;
}

.related-panel .product-thumb {
    height: 210px;
}

.related-panel .product-info {
    padding: 15px;
}

.related-panel .section-heading {
    margin-bottom: 22px;
}

@media (max-width: 991px) {

    .product-detail-grid,
    .product-lower-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .product-gallery {
        position: static;
    }

    .product-gallery-main {
        height: min(72vw, 600px);
    }

    .product-buy-panel {
        max-width: 720px;
    }

    .related-panel {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .product-detail-shell {
        padding-top: 24px;
    }

    .product-breadcrumb {
        margin-bottom: 20px;
    }

    .product-detail-grid {
        gap: 32px;
    }

    .product-gallery-main {
        height: 390px;
        border-radius: 14px;
    }

    .product-gallery-label,
    .product-gallery-sale {
        top: 13px;
        left: 13px;
    }

    .product-gallery-sale {
        left: auto;
        right: 13px;
    }

    .product-buy-panel h1 {
        font-size: 22px;
    }

    .product-price-row {
        margin-top: 22px;
    }

    .buy-actions {
        gap: 7px;
    }

    .quantity-control button {
        width: 30px;
    }

    .quantity-control input {
        width: 25px;
    }

    .wishlist-detail-button {
        flex-basis: 48px;
    }

    .product-trust-row {
        gap: 9px 14px;
    }

    .product-lower {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .related-panel .product-thumb {
        height: 170px;
    }
}

/* Product listing filters */
.products-catalog-section {
    background: #fff;
}

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

.catalog-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -.045em;
}

.catalog-search-note {
    margin: .45rem 0 0;
    color: #877b70;
    font-size: .82rem;
}

.catalog-clear-link {
    color: #776b61;
    text-decoration: none;
    font-size: .78rem;
}

.catalog-clear-link:hover {
    color: var(--terracotta);
}

.catalog-clear-link i {
    margin-right: 5px;
}

.product-filter-panel {
    padding: 22px;
    border: 1px solid #e4dbd1;
    border-radius: 24px;
    background: #e9f1fc;
    margin-bottom: 35px;
}

.filter-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.filter-panel-top>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-kicker {
    color: var(--terracotta);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.filter-kicker i {
    margin-right: 5px;
}

.filter-panel-top strong {
    color: #3b342e;
    font-family: 'Cabin', sans-serif;
    font-size: .92rem;
}

.filter-result-count {
    color: #897d73;
    font-size: .74rem;
}

.product-filter-form {
    display: grid;
    grid-template-columns: 2fr repeat(5, minmax(115px, 1fr));
    align-items: end;
    gap: 10px;
}

.filter-search-field,
.filter-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.filter-search-field {
    position: relative;
}

.filter-search-field i {
    position: absolute;
    left: 15px;
    bottom: 14px;
    color: #9a8c80;
}

.filter-search-field input {
    padding-left: 39px !important;
}

.filter-field span {
    color: #81756b;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.product-filter-form input,
.product-filter-form select {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #ded4c9;
    border-radius: 13px;
    background: #fff;
    color: #403932;
    outline: 0;
    font-size: .78rem;
}

.product-filter-form input:focus,
.product-filter-form select:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(166, 91, 57, .1);
}

.featured-filter {
    display: flex;
    align-items: center;
    height: 46px;
    gap: 7px;
    padding: 0 9px;
    border: 1px solid #ded4c9;
    border-radius: 13px;
    background: #fff;
    color: #64584e;
    font-size: .72rem;
    white-space: nowrap;
}

.featured-filter input {
    width: 16px;
    height: 16px;
    accent-color: var(--terracotta);
}

.featured-filter i {
    color: var(--terracotta);
}

.filter-submit {
    height: 46px;
    white-space: nowrap;
    padding: 0 15px;
    font-size: .75rem;
}

.active-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    padding-top: 16px;
    border-top: 1px solid #e7ded5;
    color: #867a70;
    font-size: .72rem;
}

.active-filter-chip {
    padding: 6px 10px;
    border-radius: 30px;
    background: #eee4d9;
    color: #555555;
    font-weight: 700;
}

.active-filter-row a {
    margin-left: auto;
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-empty-state {
    margin-top: 15px;
    background: #e9f1fc;
    border-radius: 25px;
}

.product-catalog-grid .product-card {
    height: 100%;
}

@media (max-width:1100px) {
    .product-filter-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-search-field {
        grid-column: span 3;
    }

    .filter-submit {
        grid-column: span 1;
    }
}

@media (max-width:767px) {
    .catalog-heading {
        align-items: flex-start;
    }

    .catalog-clear-link {
        margin-top: 7px;
    }

    .product-filter-panel {
        padding: 16px;
        border-radius: 30px;
    }

    .filter-panel-top {
        align-items: flex-start;
    }

    .filter-result-count {
        padding-top: 3px;
    }

    .product-filter-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .filter-search-field {
        grid-column: span 2;
    }

    .filter-field span {
        font-size: .58rem;
    }

    .product-filter-form input,
    .product-filter-form select,
    .featured-filter,
    .filter-submit {
        height: 44px;
    }

    .featured-filter {
        grid-column: span 1;
        font-size: .66rem;
        padding: 0 6px;
    }

    .filter-submit {
        grid-column: span 1;
        padding: 0 8px;
    }

    .active-filter-row a {
        width: 100%;
        margin-left: 0;
    }

    .product-catalog-grid {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 18px;
    }
}

/* Myntra-style catalogue layout: sticky filters, clean result toolbar and responsive controls. */
.catalog-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 105px;
    border: 1px solid #e9f1fc;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
}

.sidebar-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 18px;
    border-bottom: 1px solid #eee7df;
}

.sidebar-heading span {
    color: #2f2925;
    font-size: .88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sidebar-heading i {
    color: var(--terracotta);
    margin-right: 5px;
}

.sidebar-heading a {
    color: var(--terracotta);
    font-size: .7rem;
    text-decoration: none;
}

.sidebar-filter-form {
    padding: 0 18px 18px;
}

.sidebar-search {
    position: relative;
    display: block;
    margin: 18px 0;
}

.sidebar-search i {
    position: absolute;
    left: 12px;
    top: 13px;
    color: #968a7e;
}

.sidebar-search input {
    width: 100%;
    height: 40px;
    padding: 0 10px 0 34px;
    border: 1px solid #e2d9d0;
    border-radius: 10px;
    outline: 0;
    font-size: .75rem;
}

.sidebar-filter-form details {
    border-top: 1px solid #eee7df;
}

.sidebar-filter-form summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0 13px;
    cursor: pointer;
    list-style: none;
    color: #332d28;
    font-size: .78rem;
    font-weight: 800;
}

.sidebar-filter-form summary::-webkit-details-marker {
    display: none;
}

.sidebar-filter-form summary i {
    font-size: .7rem;
    transition: transform .2s;
}

.sidebar-filter-form details[open] summary i {
    transform: rotate(180deg);
}

.filter-options-list {
    display: grid;
    gap: 12px;
    padding: 2px 0 16px;
}

.filter-options-list label,
.featured-check {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    color: #746a61;
    font-size: .75rem;
}

.filter-options-list input,
.featured-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--terracotta);
}

.filter-options-list em {
    margin-left: auto;
    color: #215ada;
    font-size: .65rem;
    font-style: normal;
}

.price-fields {
    display: flex;
    align-items: end;
    gap: 7px;
    padding-bottom: 16px;
}

.price-fields label {
    flex: 1;
}

.price-fields label>span {
    display: block;
    margin-bottom: 5px;
    color: #215ada;
    font-size: .62rem;
    text-transform: uppercase;
}

.price-fields input {
    width: 100%;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #e9f1fc;
    border-radius: 8px;
    font-size: .72rem;
    outline: 0;
}

.price-dash {
    padding-bottom: 9px;
    color: #afa39a;
}

.featured-check {
    padding: 0 0 16px;
}

.sidebar-apply {
    width: 100%;
    padding: 11px 12px;
    font-size: .73rem;
}

.catalog-results {
    min-width: 0;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 48px;
    padding-bottom: 15px;
}

.catalog-toolbar-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.catalog-toolbar-copy strong {
    color: #2f2925;
    font-size: .9rem;
}

.catalog-toolbar-copy span {
    color: #95897e;
    font-size: .7rem;
}

.catalog-sort-form label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #897c70;
    font-size: .7rem;
}

.catalog-sort-form select {
    min-width: 170px;
    padding: 10px 30px 10px 12px;
    border: 1px solid #555555;
    border-radius: 9px;
    background: #fff;
    color: #3f3832;
    font-size: .75rem;
    outline: 0;
}

.catalog-results .active-filter-row {
    margin: 14px 0 20px;
    padding: 0;
    border: 0;
}

.catalog-results .active-filter-row a {
    margin-left: auto;
}

.catalog-results .product-card {
    height: 100%;
}

.catalog-results .product-thumb {
    height: 285px;
}

/* Refined product filters — cards intentionally remain unchanged. */
.products-catalog-section .catalog-sidebar {
    top: 118px;
    border: 1px solid #e9f1fc;
    border-radius: 6px;
    box-shadow: 0 16px 38px #e9f1fc;
}

.products-catalog-section .sidebar-heading {
    padding: 19px 20px;
    background: #e9f1fc;
}

.products-catalog-section .sidebar-heading span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .76rem;
    letter-spacing: .14em;
}

.products-catalog-section .sidebar-heading i {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    margin: 0;
    border: 1px solid #e9f1fc;
    border-radius: 50%;
    background: #fff;
    font-size: .8rem;
}

.products-catalog-section .sidebar-heading a {
    padding: 6px 9px;
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.products-catalog-section .sidebar-heading a:hover {
    background: #fff;
    color: #215ada;
}

.products-catalog-section .sidebar-filter-form {
    padding: 4px 20px 20px;
}

.products-catalog-section .sidebar-search {
    margin: 16px 0 12px;
}

.products-catalog-section .sidebar-search i {
    left: 14px;
    top: 13px;
    color: #648be5;
    font-size: .8rem;
}

.products-catalog-section .sidebar-search input {
    height: 44px;
    padding-left: 38px;
    border-color: #e9f1fc;
    border-radius: 6px;
    background: #fff;
    color: #555555 !important;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.products-catalog-section .sidebar-search input:focus,
.products-catalog-section .price-fields input:focus {
    border-color: #b7795b;
    box-shadow: 0 0 0 4px rgba(183, 121, 91, .12);
}

.products-catalog-section .sidebar-filter-form details {
    border-top-color: #e9f1fc;
}

.products-catalog-section .sidebar-filter-form summary {
    padding: 17px 2px 12px;
    color: #40362f;
    font-size: .72rem;
    letter-spacing: .04em;
}

.products-catalog-section .sidebar-filter-form summary i {
    color: #648be5;
    font-size: .66rem;
}

.products-catalog-section .filter-options-list {
    gap: 5px;
    padding: 1px 0 14px;
}

.products-catalog-section .filter-options-list label,
.products-catalog-section .featured-check {
    min-height: 34px;
    margin: 0;
    padding: 5px 8px;
    border-radius: 6px !important;
    color: #555555;
    font-size: .72rem;
    transition: background .2s ease, color .2s ease;
}

.products-catalog-section .filter-options-list label:hover,
.products-catalog-section .featured-check:hover,
.products-catalog-section .filter-options-list label:has(input:checked),
.products-catalog-section .featured-check:has(input:checked) {
    background: #e9f1fc;
    color: #215ada;
}

.products-catalog-section .filter-options-list input,
.products-catalog-section .featured-check input {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #a55d3f;
}

.products-catalog-section .filter-options-list label:has(input:checked) span,
.products-catalog-section .featured-check:has(input:checked) span {
    font-weight: 600;
}

.products-catalog-section .price-fields {
    gap: 8px;
    padding-bottom: 15px;
}

.products-catalog-section .price-fields input {
    height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.products-catalog-section .sidebar-apply {
    min-height: 44px;
    margin-top: 8px;
    border: 0;
    border-radius: 30px;
    background: #211c19;
    box-shadow: 0 8px 18px rgba(33, 28, 25, .14);
    font-size: .72rem;
    letter-spacing: .02em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.products-catalog-section .sidebar-apply:hover {
    background: #215ada;
    box-shadow: 0 11px 22px rgba(117, 67, 47, .2);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .products-catalog-section .catalog-sidebar {
        border-radius: 6px;
    }

    .products-catalog-section .sidebar-filter-form {
        padding: 4px 16px 16px;
    }

    .products-catalog-section .sidebar-heading {
        padding: 16px;
    }
}

@media (max-width:991px) {
    .catalog-layout {
        grid-template-columns: 205px minmax(0, 1fr);
        gap: 20px;
    }

    .sidebar-filter-form {
        padding-left: 14px;
        padding-right: 14px;
    }

    .sidebar-heading {
        padding-left: 14px;
        padding-right: 14px;
    }

    .catalog-results .product-thumb {
        height: 245px;
    }

    .catalog-sort-form select {
        min-width: 145px;
    }
}

@media (max-width:767px) {
    .catalog-layout {
        display: block;
    }

    .catalog-sidebar {
        position: static;
        margin-bottom: 25px;
        border-radius: 16px;
    }

    .sidebar-heading {
        padding: 14px 16px;
    }

    .sidebar-filter-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 10px;
        padding: 0 16px 14px;
    }

    .sidebar-search {
        grid-column: span 2;
        margin: 14px 0 10px;
    }

    .sidebar-filter-form details {
        grid-column: span 2;
    }

    .sidebar-filter-form details:nth-of-type(2) {
        grid-column: span 1;
        border-right: 1px solid #eee7df;
        padding-right: 10px;
    }

    .sidebar-filter-form details:nth-of-type(3) {
        grid-column: span 1;
        padding-left: 10px;
    }

    .sidebar-filter-form details:nth-of-type(4) {
        grid-column: span 2;
    }

    .sidebar-apply {
        grid-column: span 2;
        margin-top: 4px;
    }

    .catalog-toolbar {
        align-items: flex-start;
    }

    .catalog-sort-form label {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }

    .catalog-sort-form select {
        min-width: 140px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .catalog-results .product-thumb {
        height: 190px;
    }

    .catalog-results .product-info {
        padding: 13px;
    }

    .catalog-results .product-info h5 {
        font-size: .86rem;
    }

    .catalog-results .active-filter-row {
        gap: 6px;
    }

    .catalog-results .active-filter-row a {
        width: auto;
        margin-left: 4px;
    }
}

/* Hero controls: arrows sit on the banner edges and indicators stay centered below it. */
.hero-slider-shell {
    padding-bottom: 0;
}

.hero-slider .carousel-indicators {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
    width: auto;
    margin: 0;
    padding: 0;
    justify-content: center;
    z-index: 3;
}

.hero-slider .hero-control {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-slider .hero-control.carousel-control-prev {
    left: 18px;
    right: auto;
}

.hero-slider .hero-control.carousel-control-next {
    right: 18px;
    left: auto;
}

@media (max-width:767px) {
    .hero-slider .carousel-indicators {
        bottom: 9px;
    }

    .hero-slider .hero-control {
        width: 38px;
        height: 38px;
    }

    .hero-slider .hero-control.carousel-control-prev {
        left: 8px;
        right: auto;
    }

    .hero-slider .hero-control.carousel-control-next {
        right: 8px;
        left: auto;
    }
}

/* Editorial treatment for the About story block. */


.about-story-visual {
    position: relative;
    min-height: 520px;
    padding: 0 34px 34px 0;
}

.about-story-main {
    height: 485px;
    overflow: hidden;
    border-radius: 34px;
    background: #d8d1c8;
    box-shadow: 18px 18px 0 #e9f1fc;
}

.about-story-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.about-story-visual:hover .about-story-main img {
    transform: scale(1.04);
}

.about-story-mini {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 190px;
    overflow: hidden;
    border: 9px solid #fff;
    border-radius: 25px;
    background: #e9e1d7;
    box-shadow: 0 12px 28px rgba(17, 17, 17, .14);
}

.about-story-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-badge {
    position: absolute;
    left: -18px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 17px;
    border-radius: 16px;
    background: #111;
    color: #fff;
    box-shadow: 0 10px 22px rgba(17, 17, 17, .18);
}

.about-story-badge>i {
    display: grid;
    place-items: center;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #215ada;
    color: #ffffff;
}

.about-story-badge span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-story-badge strong {
    font-size: .75rem;
}

.about-story-badge small {
    color: #bbb;
    font-size: .62rem;
}

.about-story-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
}

.about-story-points span {
    color: #534c45;
    font-size: .76rem;
    font-weight: 600;
}

.about-story-points i {
    color: var(--terracotta);
    margin-right: 5px;
}

@media (max-width:767px) {
    .about-story-section {
        background: linear-gradient(180deg, #fff 0%, #fff 82%, #f7f2ec 82%, #f7f2ec 100%);
    }

    .about-story-visual {
        min-height: 390px;
        padding: 0 18px 18px 0;
    }

    .about-story-main {
        height: 350px;
        border-radius: 26px;
        box-shadow: 10px 10px 0 #e9f1fc;
    }

    .about-story-mini {
        width: 115px;
        height: 125px;
        border-width: 6px;
        border-radius: 18px;
    }

    .about-story-badge {
        left: -7px;
        bottom: 27px;
        padding: 9px 11px;
    }

    .about-story-badge>i {
        width: 27px;
        height: 27px;
    }

    .about-story-badge strong {
        font-size: .65rem;
    }

    .about-story-badge small {
        font-size: .54rem;
    }
}

/* Category storefront polish */
.category-index-hero {
    background: linear-gradient(120deg, #f7f3ee, #e9f1fc);
}

.category-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #d7c9b9;
    border-radius: 30px;
    color: #5c5148;
    font-size: .78rem;
    background: rgba(255, 255, 255, .45);
}

.category-count-badge i {
    color: var(--terracotta);
}

.category-index-section {
    background: #f9f9f9;
}

.category-card-premium {
  
    border-radius: 10px;
}

.category-card-premium div {
    inset: auto 25px 25px;
}

.category-card-premium h3 {
    font-size: 1.45rem;
}

.category-card-premium i {
    position: absolute;
    right: 0;
    bottom: 4px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
}

.category-note {
    padding: 55px 0;
    border-radius: var(--radius-md);
    background: #f9f9f9;
    border: 2px solid var(--color-white);
    box-shadow: var(--shadow-10);
}

.category-note h2 {
    margin: .45rem 0 .55rem;
}

.category-note p:not(.eyebrow) {
    color: var(--text-muted);
    margin: 0;
}

.category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 1px solid #f3f3f3;
}

.category-toolbar h2 {
    margin: 0;
    font-size: 1.75rem;
}

.category-toolbar .catalog-tools {
    min-width: 260px;
}

.category-empty {
    padding: 90px 20px;
    background: #e9f1fc;
    border-radius: 24px;
}

.category-empty i {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--terracotta);
}

.home-category-section {
    background: #fff;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}

.home-category-grid .category-card-home {
    height: 100%;
    border-radius: 26px;
}

.home-category-grid .category-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.home-category-grid .category-card-featured h3 {
    font-size: 1.65rem;
}

.home-category-grid .category-card-home div {
    inset: auto 22px 20px;
}

.home-category-grid .category-card-home i {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
}

.home-category-grid .category-card-home span {
    font-size: .68rem;
}

.home-category-grid .category-card-home h3 {
    margin-right: 45px;
}

@media (max-width:767px) {
    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
        gap: 12px;
    }

    .home-category-grid .category-card-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .home-category-grid .category-card-featured h3 {
        font-size: 1.2rem;
    }

    .home-category-grid .category-card-home {
        border-radius: 30px;
    }

    .home-category-grid .category-card-home h3 {
        font-size: .95rem;
    }
}

@media (max-width:767px) {
    .category-count-badge {
        margin-top: 5px;
    }

    

    .category-card-premium h3 {
        font-size: 1.1rem;
    }

    .category-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .category-toolbar .catalog-tools {
        width: 100%;
        min-width: 0;
    }

    .category-note {
        padding: 42px 0;
    }
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    background: #ffffff;
    padding: 20px 20px 24px;
}

.product-info h6 {
    font-weight: 500;
    margin-bottom: 10px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 13px;
    margin-right: 6px;
}

.price-new {
    font-weight: 700;
    font-size: 17px;
}

.add-cart-link {
    display: block;
    margin-top: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-bg-gray {
    background: #555555ddd;
}


.feature-photo {
    height: 100%;
    min-height: 460px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-photo-img {
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}

/* ---------- Countdown ---------- */
.countdown-section {
    background: #111111;
}

.countdown-section h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
}


.countdown-box {
    border: 1px solid #5a5a5a;
    border-radius: 30px;
    padding: 20px 0px;
    min-width: 121px;
    text-align: center;
    color: #ffffff;
}


.countdown-box .num {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-box .lbl {
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ---------- Custom Product ---------- */
.custom-product-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 0px 30px;
}

.cimg img {
    width: 100%;
}

.custom-product-content {
    padding-left: 40px;
    color: #5a5a5a;
}

.custom-product-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.check-list i {
    color: #b3925f;
    font-size: 1.2rem;
}

.btn-tan-pill {
    background: #b3925f;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 34px;
    font-weight: 600;
}

.btn-tan-pill:hover {
    background: #9c7e50;
    color: #fff;
}

/* ---------- Testimonial ---------- */
.testimonial-box {
    background: var(--tan-light);
    border-radius: 8px;
    padding: 26px 28px;
    font-size: 15px;
    font-style: italic;
    color: #fff;
    position: relative;
}

.testimonial-box::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid var(--tan-light);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.video-thumb {
    height: 100%;
    min-height: 325px;
    border-radius: 30px;
    overflow: hidden;
}

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

.video-thumb-small {
    position: relative;
    height: 195px;
    border-radius: 30px;
    overflow: hidden;
}

.video-thumb-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
    object-fit: cover;
    object-position: center left;

}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
}

.stat-box {
    padding: 4px;
}

.stat-box h2 {
    font-weight: 700;
    font-size: 3rem;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.4;
}


/* ---------- Footer ---------- */
footer {
    background: var(--dark);
    color: #cfc9c1;
    padding-top: 60px;
}

footer h6 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 28px;
}


footer a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 2.1;
}

footer a:hover {
    color: var(--terracotta);
}

/* contact pill boxes */
.contact-pill {
    border: 1px solid #9f9f9f63;
    border-radius: 50px;
    padding: 16px 24px;
    display: flex;
    /* align-items: center; */
    gap: 14px;
    font-size: 20px;
}

.contact-pill i {
    color: #fff;
    font-size: 24px;
}

.contact-pill small {
    color: #ffffff;
    font-size: 14px;
}

/* logo badge */
.logo-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
}

/* newsletter */
.newsletter-input {
    border-radius: 30px;
    border: none;
    background: #fff;
    padding: 14px 20px;
    color: var(--dark);
    width: 100%;
}

.newsletter-input::placeholder {
    color: #8a857d;
}

.btn-tan-pill {
    background: var(--terracotta, #b3925f);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 34px;
    font-weight: 600;
}

.btn-tan-pill:hover {
    color: #fff;
    opacity: 0.9;
}

/* footer social text links */
.footer-social a {
    line-height: 1;
    font-size: 15px;
}


/* About Page */


/* ---------- Page Hero ---------- */
.page-hero {
    background: var(--gray-bg);
    overflow: hidden;
    background-image: url(../images/about/rect1063.png);
    background-position: 88% center;
    /* -35px hata do, contain ke sath conflict karega */
    background-repeat: no-repeat;
    background-size: contain;
    /* 👈 ye line add karo — puri image fit hogi, crop nahi hogi */
    height: 435px;
}

.page-hero h1 {
    font-size: 45px;
}

.breadcrumb-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e9f1fc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.hero-plate {
    border-radius: 50%;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    object-fit: cover;
    margin-left: auto;
    display: block;
}

/* ---------- Section spacing ---------- */
section.section-pad {
    padding: 80px 0;
}

/* ---------- Innovations ---------- */
.innovation-stat h3 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.innovation-stat small {
    color: #111111;
    font-size: 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #5a5a5a;
}

.check-list i {
    color: var(--terracotta);
    font-size: 1.15rem;
}

.innovation-img-sm {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    background-image: url(https://kits.astylers.com/syramik/wp-content/uploads/sites/13/2025/02/image1148.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.innovation-img-lg {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    background-image: url(https://kits.astylers.com/syramik/wp-content/uploads/sites/13/2025/02/image1160.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ---------- Process (dark) — About page only ---------- */
.process-dark-section {
    background: var(--dark);
    color: #fff;
    padding: 80px 0;
}

.process-dark-section h2 {
    font-size: 2.75rem;
}

.process-dark-section h2 u {
    text-decoration-color: var(--terracotta);
}

.process-dark-section .process-step img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 30px;
}

.process-dark-section .process-num {
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.263rem;
    line-height: 2em;
    letter-spacing: -0.022em;
}

.process-dark-section .process-step h4 {
    color: #fff;
    margin-bottom: 12px;
}

section.section-pad.process-dark-section h4 {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.463rem;
    line-height: 2em;
    letter-spacing: -0.022em;
}

.process-dark-section .process-step p {
    color: #a8a29a;
    margin-bottom: 0;
}

section.section-pad.process-dark-section p {
    color: #444444;
    font-size: 15px;
}

/* ---------- Why Choose Us ---------- */
.why-choose-section {
    background: var(--gray-bg);
}

.why-card {
    background: #fff;
    border-radius: 30px;
    padding: 20px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid #5a5a5a;
}

.why-card i {
    font-size: 2.2rem;
    color: var(--terracotta);
    margin-bottom: 16px;
    display: inline-block;
}

.why-card h6 {
    margin-bottom: 10px;
    font-size: 19px;
}

.why-card p {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 0;
}

/* Product Page */

.product {
    background: var(--gray-bg);
    overflow: hidden;
    background-image: url(https://kits.astylers.com/syramik/wp-content/uploads/sites/13/2025/02/rect1173.png);
    --background-overlay: '';
    background-position: 88% -105px;
    background-repeat: no-repeat;
    padding: 110px;
}

/* Contact Page */

.contact {
    background: var(--gray-bg);
    overflow: hidden;
    background-image: url(https://kits.astylers.com/syramik/wp-content/uploads/sites/13/2025/02/rect1065.png);
    --background-overlay: '';
    background-position: 88% -105px;
    background-repeat: no-repeat;
    padding: 110px;
}

/* ---------- Contact / Get in Touch ---------- */
.contact-info-block h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-block p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 0;
}

.contact-social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--terracotta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-social-circle:hover {
    background: var(--dark);
    color: #fff;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
}

.contact-input {
    width: 100%;
    border: 1px solid #e9f1fc;
    border-radius: 30px;
    padding: 16px 22px;
    background: #fff;
    color: var(--dark);
    font-size: 15px;
    display: block;
}

.contact-input::placeholder {
    color: #9a948b;
}

.contact-input:focus {
    outline: none;
    border-color: var(--terracotta);
}

.contact-textarea {
    border-radius: 24px;
    resize: vertical;
    min-height: 130px;
}

.contact-info-block {
    margin-bottom: 20px;
}

/* ---------- Map ---------- */
.map-section {
    padding-top: 20px;
    padding-bottom: 90px;
}

.map-embed-wrap {
    width: 100%;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
}

/* ---------- FAQ ---------- */
.faq-section {
    background: var(--gray-bg);
}

.faq-section h2 u {
    text-decoration-color: var(--terracotta);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-box {
    border-radius: 16px;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    background: #ffffff;
    border-radius: 14px;
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--dark);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-body {
    padding: 30px 28px 28px;
    color: #5a5a5a;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-img-wrap {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
}

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

@media (max-width: 767px) {
    .page-hero {

        background-position: -58px 186px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .countdown-box .lbl {
        font-size: 10px;
    }

    .countdown-box .num {
        font-size: 1.5rem;
    }

    .countdown-box {

        min-width: 75px;
    }
}

.nav-login-btn {
    padding: 9px 16px;
    font-size: 12px;
    white-space: nowrap;
}

.auth-card button.is-loading {
    opacity: .7;
    cursor: wait;
}

.form-processing {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-processing::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid #d8d1c8;
    border-top-color: var(--terracotta);
    border-radius: 50%;
    animation: auth-spin .75s linear infinite;
}

@keyframes auth-spin {
    to {
        transform: rotate(360deg);
    }
}

.orders-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.orders-toolbar h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.orders-count {
    background: #e9f1fc;
    border-radius: 30px;
    padding: 9px 15px;
    color: var(--text-muted);
    font-size: .8rem;
}

.order-history-list {
    display: grid;
    gap: 18px;
}

.order-history-card {
    border: 1px solid #e9e4de;
    border-radius: 24px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 17, 17, .04);
}

.order-history-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 18px;
    border-bottom: 1px solid #e9f1fc;
}

.order-history-head h2 {
    font-size: 1.15rem;
    margin: 0;
}

.order-head-meta {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 6px;
}

.payment-status {
    color: var(--text-muted);
    font-size: .75rem;
    text-transform: capitalize;
}

.order-items-preview {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 20px 0;
}

.order-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 190px;
}

.order-preview-image {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #f2f0ed;
    overflow: hidden;
    color: var(--terracotta);
    font-weight: 700;
}

.order-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-preview-item strong,
.order-preview-item small {
    display: block;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-preview-item strong {
    font-size: .85rem;
}

.order-preview-item small {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: .74rem;
}

.more-items {
    color: var(--terracotta);
    font-size: .8rem;
    font-weight: 700;
}

.order-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 7px 4px 23px;
}

.order-progress:before {
    content: '';
    position: absolute;
    left: 7px;
    right: 7px;
    top: 6px;
    height: 2px;
    background: #e6e1db;
}

.progress-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #aaa49d;
    text-transform: capitalize;
}

.progress-dot {
    width: 14px;
    height: 14px;
    border: 3px solid #215ada;
    border-radius: 50%;
    background: #fff;
}

.progress-step.complete {
    color: var(--terracotta);
}

.progress-step.complete .progress-dot {
    border-color: var(--terracotta);
    background: var(--terracotta);
}

.progress-step.current small {
    color: var(--dark);
    font-weight: 700;
}

.order-progress small {
    font-size: .7rem;
}

.order-history-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid #e9f1fc;
    padding-top: 18px;
}

.order-history-footer strong,
.order-history-footer span {
    display: block;
}

.order-history-footer strong {
    margin-top: 4px;
    font-size: 1.15rem;
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

@media (hover: hover) and (pointer: fine) {
    .user-menu:hover .user-menu-dropdown {
        display: block;
    }
}

.checkout-summary-item {
    padding: 4px 0 10px;
    border-bottom: 1px solid #555555;
}

.checkout-summary-item .summary-row {
    border-bottom: 0;
    padding: 7px 0 3px;
}

.checkout-qty {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-muted);
    font-size: .8rem;
}

.checkout-qty .qty-button {
    width: 27px;
    height: 27px;
}

.ui-icon {
    width: 23px;
    height: 23px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.toast-icon {
    width: 20px;
    height: 20px;
    color: #215ada;
}

.heart-icon.is-filled {
    fill: currentColor;
}

.icon-button-lg {
    min-width: 54px;
    display: grid;
    place-items: center;
}

@media (max-width:991px) {
    .site-nav-links {
        align-items: stretch !important;
        margin-left: 0;
    }

    .nav-icon-link {
        padding: .7rem 0;
    }

    .nav-login-btn {
        display: inline-block;
        width: max-content;
        margin-top: .6rem;
    }

    .user-menu {
        margin: .6rem 0 0;
    }

    .user-menu-dropdown {
        position: static;
        margin-top: 8px;
        width: 100%;
        box-shadow: none;
    }

    .user-menu-toggle {
        width: 100%;
        justify-content: flex-start;
    }
}



@media (max-width:767px) {

    .orders-toolbar,
    .order-history-head,
    .order-history-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .orders-count {
        align-self: flex-start;
    }

    .order-history-card {
        padding: 18px;
        border-radius: 30px;
    }

    .order-head-meta {
        align-items: flex-start;
    }

    .order-items-preview {
        gap: 12px;
    }

    .order-preview-item {
        min-width: 100%;
    }

    .order-progress {
        margin-top: 12px;
    }

    .order-progress small {
        font-size: .62rem;
    }

    .order-history-footer {
        gap: 16px;
    }

    .order-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .order-actions .btn {
        flex: 1 1 auto;
    }
}

/* Orders dashboard polish */
.orders-page {
    background: linear-gradient(180deg, #f8faff 0, #fff 45%);
}

.orders-page .account-content {
    min-width: 0;
}

.orders-page .orders-toolbar {
    margin-bottom: 22px;
    padding: 4px 2px 18px;
    border-bottom: 1px solid #e5ecf7;
}

.orders-page .orders-toolbar .eyebrow {
    margin-bottom: 7px !important;
    color: var(--primary-blue);
}

.orders-page .orders-toolbar h2 {
    color: var(--text-primary);
    letter-spacing: -.04em;
}

.orders-page .orders-count {
    border: 1px solid #d8e5fb;
    background: #edf4ff;
    color: var(--primary-blue);
    font-weight: 700;
}

.orders-page .order-history-card {
    position: relative;
    border-color: #dfe8f7;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(29, 56, 107, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.orders-page .order-history-card::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: var(--primary-blue);
    content: '';
}

.orders-page .order-history-card:hover {
    border-color: #bcd1f5;
    box-shadow: 0 18px 36px rgba(29, 56, 107, .11);
    transform: translateY(-2px);
}

.orders-page .order-history-head,
.orders-page .order-history-footer {
    border-color: #e5ecf7;
}

.orders-page .order-history-head h2 {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.orders-page .status-pill {
    border: 1px solid #cfe0ff;
    background: #edf4ff;
    color: var(--primary-blue);
    font-weight: 700;
}

.orders-page .payment-status {
    color: #7b8798;
}

.orders-page .order-preview-image {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border: 1px solid #e1e9f5;
    background: #f5f8fd;
    color: var(--primary-blue);
}

.orders-page .order-preview-item strong {
    color: var(--text-primary);
}

.orders-page .order-preview-item small,
.orders-page .more-items {
    color: #718096;
}

.orders-page .order-progress:before {
    background: #dbe6f7;
}

.orders-page .progress-step.complete {
    color: var(--primary-blue);
}

.orders-page .progress-step.complete .progress-dot {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

.orders-page .progress-step.current small {
    color: var(--text-primary);
}

.orders-page .order-history-footer strong {
    color: var(--text-primary);
}

.orders-page .order-actions .btn-outline-tan {
    border-color: #cbdcf8;
    color: var(--primary-blue);
}

.orders-page .order-actions .btn-outline-tan:hover {
    border-color: var(--primary-blue);
    background: #edf4ff;
}

@media (max-width: 767px) {
    .orders-page .order-history-card {
        padding: 18px 16px 18px 20px;
    }

    .orders-page .order-history-card::before {
        top: 18px;
        bottom: 18px;
    }
}

/* Final order-card refinement */
.orders-page .order-history-card {
    background: linear-gradient(135deg, #fff 0%, #fbfdff 100%);
}

.orders-page .order-history-head .eyebrow {
    margin-bottom: 6px !important;
    color: #7894c5;
    font-size: .66rem;
    letter-spacing: .14em;
}

.orders-page .order-items-preview {
    min-height: 92px;
    padding: 18px 0;
}

.orders-page .order-preview-item {
    min-width: 210px;
    padding-right: 16px;
}

.orders-page .order-preview-item+.order-preview-item {
    padding-left: 16px;
    border-left: 1px solid #e5ecf7;
}

.orders-page .order-preview-item strong {
    line-height: 1.3;
}

.orders-page .order-progress {
    margin: 3px 4px 21px;
    padding-top: 1px;
}

.orders-page .progress-step small {
    color: #8a96a8;
    font-size: .68rem;
    font-weight: 600;
}

.orders-page .order-history-footer {
    padding-top: 16px;
}

.orders-page .order-history-footer .small {
    color: #8793a5 !important;
    font-size: .72rem;
}

.orders-page .order-history-footer strong {
    font-size: 1.3rem;
}

.orders-page .order-actions .btn {
    min-height: 38px;
    padding: 8px 13px;
    font-size: .74rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    .orders-page .order-preview-item+.order-preview-item {
        padding-left: 0;
        border-left: 0;
    }

    .orders-page .order-items-preview {
        min-height: 0;
    }
}

.order-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
}

.order-modal.is-open {
    display: block;
}

/* Order history: editorial hero, elevated account rail and calmer order cards. */
.orders-page-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 88% 18%, rgba(33, 90, 218, .1), transparent 24%),
        linear-gradient(135deg, #f7faff 0%, #fff 72%);
}

.orders-page-hero::after {
    position: absolute;
    right: 6%;
    bottom: -108px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(33, 90, 218, .09);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.orders-page-hero .container {
    position: relative;
    z-index: 1;
}

.orders-page-hero h1 {
    max-width: 620px;
    margin-bottom: 13px;
    color: var(--text-primary);
}

.orders-hero-copy {
    max-width: 470px;
    margin: 0;
    color: #687384;
    font-size: .95rem;
    line-height: 1.7;
}

.orders-page .account-layout {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 34px;
}

.orders-page .account-sidebar {
    top: 124px;
    padding: 20px;
    border-color: rgba(33, 90, 218, .16);
    border-radius: 26px;
    background: linear-gradient(155deg, #fff 0%, #f8fbff 100%);
    box-shadow: 0 18px 42px rgba(29, 56, 107, .1);
}

.orders-page .account-sidebar-profile {
    gap: 13px;
    padding: 2px 2px 20px;
}

.orders-page .account-sidebar-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--primary-blue), #6e9cf0);
    color: #fff;
    box-shadow: 0 9px 18px rgba(33, 90, 218, .2);
}

.account-sidebar-kicker {
    display: block;
    margin-bottom: 4px;
    color: #7894c5;
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.orders-page .account-sidebar-profile strong {
    font-size: .95rem;
}

.orders-page .account-nav {
    gap: 6px;
    padding-top: 18px;
}

.orders-page .account-nav a {
    position: relative;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: .8rem;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.orders-page .account-nav a i {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    background: #f0f5fd;
    color: #7894c5;
    transition: background .2s ease, color .2s ease;
}

.account-nav-arrow {
    margin-left: auto;
    color: #a4afbf;
    font-size: .88rem;
    font-weight: 400;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .2s ease, transform .2s ease;
}

.orders-page .account-nav a:hover,
.orders-page .account-nav a.is-active {
    border-color: #d8e5fb;
    background: #edf4ff;
    color: var(--primary-blue);
    transform: translateX(2px);
}

.orders-page .account-nav a:hover .account-nav-arrow,
.orders-page .account-nav a.is-active .account-nav-arrow {
    opacity: 1;
    transform: none;
}

.orders-page .account-nav a.is-active i,
.orders-page .account-nav a:hover i {
    background: var(--primary-blue);
    color: #fff;
}

.orders-page .account-nav-divider {
    margin-top: 18px;
    background: #e2eaf5;
}

.orders-page .account-nav-secondary {
    padding-top: 13px;
}

.orders-page .orders-toolbar {
    margin-bottom: 26px;
    padding: 6px 2px 20px;
    border-bottom-color: #dfe8f7;
}

.orders-page .orders-toolbar h2 {
    font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.orders-page .order-history-card {
    border-radius: 24px;
    padding: 24px 26px;
    box-shadow: 0 15px 36px rgba(29, 56, 107, .08);
}

.orders-page .order-history-head {
    padding-bottom: 20px;
}

.orders-page .order-items-preview {
    padding: 21px 0 19px;
}

.orders-page .order-progress {
    margin-top: 5px;
    padding: 3px 7px 0;
}

.orders-page .progress-dot {
    width: 15px;
    height: 15px;
    border-width: 4px;
}

.orders-page .progress-step.current .progress-dot {
    box-shadow: 0 0 0 5px rgba(33, 90, 218, .1);
}

.orders-page .order-actions .btn-dark-pill {
    box-shadow: 0 8px 16px rgba(33, 90, 218, .14);
}

@media (max-width: 991px) {
    .orders-page .account-layout {
        grid-template-columns: 1fr;
    }

    .orders-page .account-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .orders-page-hero {
        padding-bottom: 54px;
    }

    .orders-page .order-history-card {
        padding: 19px 17px 19px 21px;
    }

    .orders-page .account-nav a {
        flex: 1 1 calc(50% - 6px);
        min-width: 145px;
    }

    .orders-page .account-nav-secondary {
        display: none;
    }
}


.order-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .55);
    backdrop-filter: blur(5px);
    animation: order-fade-in .2s ease;
}

.order-modal-panel {
    position: relative;
    width: min(920px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    overflow: auto;
    margin: 24px auto;
    padding: 38px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 24px 80px rgba(17, 17, 17, .25);
    animation: order-slide-up .25s ease;
}

.order-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #e9f1fc;
    color: var(--dark);
    display: grid;
    place-items: center;
}

.order-modal-close:hover {
    background: var(--dark);
    color: #fff;
}

.order-modal-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9f1fc;
}

.order-modal-heading h2 {
    margin: 4px 0 5px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.order-modal-subtitle {
    color: var(--text-muted);
    margin: 0;
    font-size: .85rem;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(230px, .8fr);
    gap: 32px;
    padding-top: 28px;
}

.modal-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.modal-section-title h3,
.order-info-card h3 {
    font-size: 1rem;
    margin: 0;
}

.modal-section-title span {
    color: var(--text-muted);
    font-size: .78rem;
}

.order-detail-items {
    border: 1px solid #e9f1fc;
    border-radius: 18px;
    overflow: hidden;
}

.order-detail-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border-bottom: 1px solid #e9f1fc;
}

.order-detail-item:last-child {
    border-bottom: 0;
}

.order-detail-item>strong:last-child {
    margin-left: auto;
    white-space: nowrap;
    font-size: .9rem;
}

.order-detail-item-info {
    min-width: 0;
}

.order-detail-item-info strong,
.order-detail-item-info small {
    display: block;
}

.order-detail-item-info strong {
    font-size: .86rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-detail-item-info small {
    color: var(--text-muted);
    font-size: .72rem;
    margin-top: 4px;
}

.order-totals {
    margin-top: 20px;
    padding: 0 4px;
}

.order-totals>div {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .83rem;
}

.order-totals strong {
    color: var(--dark);
}

.order-grand-total {
    margin-top: 8px;
    padding-top: 15px !important;
    border-top: 1px solid #e9f1fc;
    color: var(--dark) !important;
    font-size: 1rem !important;
}

.order-grand-total strong {
    font-size: 1.2rem;
}

.order-detail-sidebar,
.tracking-side {
    display: grid;
    align-content: start;
    gap: 14px;
}

.order-info-card {
    padding: 18px;
    border-radius: 18px;
    background: #e9f1fc;
}

.order-info-card h3 {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 13px;
}

.order-info-card h3 i {
    color: var(--terracotta);
}

.order-info-card strong {
    display: block;
    font-size: .85rem;
}

.order-info-card p {
    color: var(--text-muted);
    font-size: .8rem;
    line-height: 1.6;
    margin: 7px 0 0;
}

.order-info-card small {
    color: var(--text-muted);
    font-size: .75rem;
}

.tracking-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 25px 0 30px;
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(120deg, #e9f1fc, #e9f1fc);
}

.tracking-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--dark);
    color: #fff;
    font-size: 1.35rem;
}

.tracking-hero h3 {
    margin: 4px 0 5px;
    text-transform: capitalize;
    font-size: 1.25rem;
}

.tracking-hero p {
    color: var(--text-muted);
    margin: 0;
    font-size: .82rem;
}

.tracking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, .75fr);
    gap: 38px;
}

.order-timeline {
    position: relative;
    padding-left: 8px;
}

.order-timeline:before {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 22px;
    width: 2px;
    background: #e7e0d8;
}

.order-timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 17px;
    min-height: 75px;
    color: #aaa49d;
}

.order-timeline-step.is-complete {
    color: var(--terracotta);
}

.order-timeline-step.is-current {
    color: var(--dark);
}

.timeline-marker {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border: 2px solid #e4ddd5;
    border-radius: 50%;
    background: #fff;
    font-size: .85rem;
}

.is-complete .timeline-marker {
    border-color: var(--terracotta);
    background: var(--terracotta);
    color: #fff;
}

.is-current .timeline-marker {
    box-shadow: 0 0 0 5px #f1e8de;
}

.order-timeline-step strong,
.order-timeline-step small {
    display: block;
    text-transform: capitalize;
}

.order-timeline-step strong {
    font-size: .9rem;
    margin: 4px 0;
}

.order-timeline-step small {
    color: var(--text-muted);
    font-size: .74rem;
}

.tracking-number-card {
    padding: 20px;
    border: 1px dashed var(--terracotta);
    border-radius: 18px;
    background: #e9f1fc;
}

.tracking-number-card span,
.tracking-number-card small {
    display: block;
    color: var(--text-muted);
    font-size: .68rem;
}

.tracking-number-card strong {
    display: block;
    margin: 9px 0 7px;
    font-size: 1rem;
    word-break: break-word;
}

.order-modal-open {
    overflow: hidden;
}

@keyframes order-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes order-slide-up {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.order-modal-close span {
    font-size: 25px;
    line-height: 1;
    font-weight: 400;
    margin-top: -2px;
}

.address-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.address-remove {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 0;
    border-radius: 50%;
    background: #ff4c1a;
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.address-remove span {
    font-size: 20px;
    line-height: 1;
    margin-top: -2px;
}

.address-remove:hover {
    background: #9a4534;
    color: #fff;
}

.address-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.address-option label {
    display: flex;
    flex: 1;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.address-option label small {
    display: block;
    color: var(--text-muted);
    margin-top: 5px;
    font-size: .75rem;
}

.payment-options {
    display: grid;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border: 1px solid #ded9d3;
    border-radius: 16px;
    cursor: pointer;
    transition: .2s;
}

.payment-option:has(input:checked) {
    border-color: var(--terracotta);
    background: #e9f1fc;
    box-shadow: 0 0 0 2px rgba(169, 131, 95, .12);
}

.payment-option input {
    position: absolute;
    opacity: 0;
}

.payment-option-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #f2eee8;
    color: var(--terracotta);
    font-size: 1.1rem;
}

.payment-option strong,
.payment-option small {
    display: block;
}

.payment-option strong {
    font-size: .86rem;
}

.payment-option small {
    color: var(--text-muted);
    font-size: .73rem;
    margin-top: 3px;
}

.payment-check {
    margin-left: auto;
    color: #d8d1c8;
}

.payment-option:has(input:checked) .payment-check {
    color: var(--terracotta);
}

.coupon-box {
    padding: 15px;
    border-radius: 16px;
    background: #e9f1fc;
}

.coupon-row {
    color: #36734a !important;
}

.coupon-row strong {
    color: #36734a;
}

.account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 14px;
    border: 2px solid rgba(255, 255, 255, .35);
    text-align: center;
    align-items: center;
    justify-content: center;
    display: contents;
    font-weight: bold;
}

.payment-svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.payment-check {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width:767px) {
    .order-modal-panel {
        width: 100%;
        max-height: 100vh;
        height: 100%;
        margin: 0;
        border-radius: 0;
        padding: 68px 20px 28px;
    }

    .order-modal-heading {
        flex-direction: column;
    }

    .order-detail-grid,
    .tracking-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .tracking-hero {
        margin: 20px 0 25px;
    }

    .order-detail-sidebar {
        order: -1;
    }

    .order-detail-item {
        padding: 12px 10px;
    }

    .order-detail-item>strong:last-child {
        font-size: .8rem;
    }

    .order-modal-close {
        top: 16px;
        right: 16px;
    }
}

/* Keep the mobile overrides last so page-specific rules cannot undo them. */
@media (max-width: 767px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: none;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-syramik {
        padding: 10px 0;
    }

    .navbar-brand {
        min-width: 0;
        max-width: calc(100% - 55px);
    }

    .navbar-brand .brand-font {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: .96rem;
    }

    .navbar-brand .brand-logo {
        width: 96px;
        height: 46px;
        flex: 0 0 96px;
    }

    #site-nav {
        margin-top: 10px;
        padding: 8px 0 4px;
        border-top: 1px solid #e9f1fc;
    }

    .navbar-syramik .site-nav-links {
        margin-left: 0;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .navbar-syramik .nav-link {
        margin: 0;
        padding: 10px 4px;
        border-bottom: 1px solid #f0ebe5;
        font-size: .84rem;
    }

    .navbar-syramik .nav-icon-link {
        justify-content: flex-start;
        padding: 10px 4px;
        border-bottom: 1px solid #f0ebe5;
        font-size: .88rem;
    }

    .navbar-syramik .nav-divider {
        display: none !important;
    }

    .page-hero {
        padding: 52px 0 56px;
    }

    .page-hero h1,
    .hero-section h1 {
        max-width: 100%;
        font-size: clamp(2.25rem, 11vw, 3.5rem);
        line-height: 1.05;
        letter-spacing: -.05em;
    }

    .hero-home {
        padding-top: 48px;
        padding-bottom: 58px;
    }

    .hero-copy .d-flex {
        flex-wrap: wrap;
        gap: 9px !important;
    }

    .hero-copy .d-flex .btn {
        width: 100%;
        text-align: center;
    }

    .hero-slider .hero-art-large {
        height: 320px;
        margin-top: 20px;
        border-radius: 24px;
    }

    .section-pad {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
        gap: 10px;
    }

    .home-category-grid .category-card-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

 

    .product-thumb,
    .catalog-results .product-thumb {
        height: 185px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h5 {
        font-size: .84rem;
        line-height: 1.25;
    }

    .product-detail-grid,
    .product-lower-grid {
        gap: 30px;
    }

    .product-gallery-main {
        height: 360px;
    }

    .product-buy-panel h1 {
        font-size: 22px;
    }

    .buy-actions {
        flex-wrap: wrap;
    }

    .product-availability {
        width: 100%;
    }

    .catalog-layout {
        display: block;
    }

    .catalog-sidebar {
        margin-bottom: 20px;
    }

    .catalog-toolbar {
        gap: 10px;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .footer-links>div:last-child {
        grid-column: 1/-1;
    }

    .footer-links a {
        overflow-wrap: anywhere;
        font-size: .76rem;
    }

    .footer-perks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 46px;
    }

    .cart-item {
        align-items: flex-start;
        gap: 11px;
    }

    .cart-item img {
        width: 70px;
        height: 70px;
    }

    .sticky-summary {
        position: static;
    }
}

@media (max-width:390px) {
    .navbar-brand .brand-font {
        max-width: 150px;
        font-size: .88rem;
    }

    .hero-home .hero-copy h1 {
        font-size: 2.45rem;
    }

    .home-category-grid {
        grid-auto-rows: 155px;
    }

    .product-thumb,
    .catalog-results .product-thumb {
        height: 160px;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-sort-form,
    .catalog-sort-form label,
    .catalog-sort-form select {
        width: 100%;
        max-width: none;
    }
}

/* Contact page */
.contact-page {
    background: #fff;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 92px;
    background-image:
        linear-gradient(90deg, rgba(247, 242, 236, .98) 0%, rgba(247, 242, 236, .9) 42%, rgba(247, 242, 236, .2) 100%),
        url('/assets/images/product-banner/product-banner-lg-a1.webp');
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat;
}

.contact-hero:after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    right: -180px;
    top: -260px;
    border: 1px solid rgba(169, 131, 95, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(169, 131, 95, .06), 0 0 0 84px rgba(169, 131, 95, .04);
}

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

.contact-hero h1 {
    margin: 14px 0 18px;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.contact-hero h1 em {
    color: var(--terracotta);
    font-style: normal;
}

.contact-hero-copy>p:last-child {
    max-width: 540px;
    color: #73695f;
    font-size: 1.08rem;
    line-height: 1.7;
}

.contact-hero-orbit {
    position: absolute;
    z-index: 1;
    right: 16%;
    bottom: 58px;
    display: flex;
    gap: 12px;
}

.contact-hero-orbit span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(169, 131, 95, .35);
    border-radius: 50%;
    color: var(--terracotta);
    background: rgba(255, 255, 255, .45);
}

.contact-main-section {
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(500px, 1.22fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.contact-info-panel {
    padding-top: 12px;
}

.contact-info-panel h2 {
    max-width: 390px;
    margin: .55rem 0 1rem;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.contact-intro {
    max-width: 420px;
    color: #555555;
    line-height: 1.75;
}

.contact-info-list {
    margin-top: 35px;
    border-top: 1px solid #e9f1fc;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid #e9f1fc;
    color: var(--dark);
    text-decoration: none;
}

.contact-info-item>span:not(.contact-info-icon) {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.contact-info-item small {
    color: #444444;
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contact-info-item strong {
    overflow-wrap: anywhere;
    font-size: .82rem;
}

.contact-info-icon {
    display: grid;
    place-items: center;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    border-radius: 12px;
    color: #215ada;
    background: #e9f1fc;
}

.contact-info-arrow {
    margin-left: auto;
    color: #a18f80;
}

.contact-info-item:hover .contact-info-arrow {
    color: var(--terracotta);
    transform: translate(2px, -2px);
}

.contact-whatsapp-link .contact-info-icon {
    color: #0251f1;
}

.contact-whatsapp-link:hover .contact-info-icon {
    background: #e8f8ee;
    color: #12813b;
}

.site-footer .footer-whatsapp-link i {
    color: #ffffff;
}

.site-footer .footer-social-whatsapp:hover {
    background: #e8f8ee;
    border-color: #e8f8ee;
    color: #fff;
}

.profile-image-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    color: #555555;
}




.profile-image-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.profile-image-preview,
.profile-image-preview img {
    display: grid;
    width: 54px;
    height: 54px;
    overflow: hidden;
    place-items: center;
    border-radius: 50%;
}

.profile-image-preview {
    flex: 0 0 54px;
    background: #e7effd;
    color: #215ada;
}

.profile-image-preview img {
    object-fit: cover;
}

.profile-image-upload strong,
.profile-image-upload small {
    display: block;
}

.profile-image-upload strong {
    color: var(--text-primary);
    font-size: .78rem;
}

.profile-image-upload small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .66rem;
}

.user-avatar[data-user-avatar] {
    overflow: hidden;
    padding: 0;
}

.user-avatar[data-user-avatar] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Login page: warm editorial panel paired with the blue account card. */
.auth-section {
    min-height: 690px;
    padding: clamp(48px, 7vw, 88px) 0 96px;
    background: linear-gradient(135deg, #f7faff 0%, #eaf2ff 52%, #fff 100%);
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    max-width: 1050px;
    min-height: 570px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #dbe7f8;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(31, 69, 130, .14);
}

.auth-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(30px, 5vw, 58px);
    overflow: hidden;
    background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .22) 0 9%, transparent 9.5%), linear-gradient(145deg, #1f59d8, #12398f);
    color: #fff;
}

.auth-visual::before,
.auth-visual::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    content: '';
}

.auth-visual::before {
    width: 340px;
    height: 340px;
    top: -155px;
    right: -110px;
}

.auth-visual::after {
    width: 240px;
    height: 240px;
    right: -65px;
    bottom: -110px;
}

.auth-visual>* {
    position: relative;
    z-index: 1;
}

.auth-visual-badge {
    position: absolute;
    top: 34px;
    left: clamp(30px, 5vw, 58px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.auth-visual-mark {
    display: grid;
    width: 72px;
    height: 72px;
    margin-bottom: auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 22px;
    background: rgba(255, 255, 255, .13);
    font-size: 2rem;
}

.auth-visual .eyebrow {
    margin-top: 50px;
    color: #cfe0ff;
}

.auth-visual h1 {
    margin: 12px 0 16px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    letter-spacing: -.055em;
    line-height: 1.02;
}

.auth-visual>p:not(.eyebrow) {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.auth-visual-points {
    display: grid;
    gap: 12px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .9);
    font-size: .78rem;
}

.auth-visual-points span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-visual-points i {
    width: 19px;
    color: #bcd4ff;
    text-align: center;
}

.auth-form-pane {
    display: flex;
    align-items: center;
    padding: clamp(22px, 4vw, 54px);
}

.auth-form-pane .auth-card {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.auth-card h2 {
    margin: 12px 0 8px;
    color: var(--text-primary);
    font-size: clamp(2rem, 3.6vw, 2.65rem);
    letter-spacing: -.05em;
}

.auth-card .auth-field-label {
    display: block;
    margin: 0 0 7px;
    color: var(--text-primary);
    font-size: .76rem;
    font-weight: 700;
}

.auth-card .btn i {
    margin-left: 8px;
    transition: transform .2s ease;
}

.auth-card .btn:hover i {
    transform: translateX(3px);
}

.auth-safe-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--text-soft);
    font-size: .7rem;
}

.auth-safe-note i {
    color: var(--primary-blue);
    font-size: .95rem;
}

@media (max-width: 767px) {
    .auth-section {
        padding: 30px 0 64px;
    }

    .auth-shell {
        display: block;
        border-radius: 24px;
    }

    .auth-visual {
        min-height: 330px;
        padding: 30px;
    }

    .auth-visual-mark {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }

    .auth-visual h1 {
        font-size: 2.25rem;
    }

    .auth-visual-points {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        font-size: .7rem;
    }

    .auth-form-pane {
        padding: 30px 22px;
    }

    .auth-tabs button {
        font-size: .7rem;
    }
}

.contact-response-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 28px;
    padding: 15px;
    border-radius: 15px;
    background: #e9f1fc;
    color: #555555;
}

.contact-response-note>i {
    color: var(--terracotta);
    font-size: 1.05rem;
}

.contact-response-note span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-response-note strong {
    font-size: .73rem;
}

.contact-response-note small {
    font-size: .68rem;
    color: #555555;
}

.contact-form-card {
    padding: 34px;
    border: 1px solid #e9f1fc;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(48, 35, 25, .06);
}

.contact-form-heading {
    margin-bottom: 25px;
}

.contact-form-heading h2 {
    margin: .45rem 0 .4rem;
    font-size: 2rem;
}

.contact-form-heading p:last-child {
    margin: 0;
    color: #444444;
    font-size: .75rem;
}

.contact-form-heading p span,
.contact-form-card label span {
    color: var(--terracotta);
}

.contact-form-card label {
    display: block;
    margin: 0 0 7px;
    color: #555555;
    font-size: .72rem;
    font-weight: 700;
}

.contact-input {
    height: auto !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    background: #ffffff !important;
}

.contact-form-card select.contact-input {
    appearance: auto;
}

/* Keep the enquiry selector's dropdown affordance visible across browsers. */
.rbt-contact-form select.rbt-contact-input-field {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 52px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%23555555' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 16px;
}

.rbt-contact-form select.rbt-contact-input-field:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%232d5bdb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.rbt-product-nav-section .rbt-product-nav {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.contact-textarea {
    height: auto;
    min-height: 135px;
    resize: vertical;
}

.contact-submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
}

.contact-submit-row .form-message {
    margin: 0;
}

.contact-bottom-strip {
    padding: 38px 0;
    background: linear-gradient(135deg, var(--surface-blue) 0%, #fff 100%);
    border-top: 1px solid var(--border-blue);
    border-bottom: 1px solid var(--border-blue);
    color: var(--text-body);
}

.contact-bottom-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.contact-bottom-strip .container>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    gap: 12px;
    color: var(--text-body);
    font-size: .8rem;
    line-height: 1.5;
    text-align: center;
}

.contact-bottom-strip i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 16px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 10px 22px rgba(33, 90, 218, .18);
}

.contact-bottom-strip strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 2px;
}

@media (max-width:991px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-info-panel {
        max-width: 680px;
    }

    .contact-info-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
    }

    .contact-response-note {
        max-width: 420px;
    }

    .contact-bottom-strip .container {
        grid-template-columns: 1fr;
        gap: 13px;
    }
}

@media (max-width:767px) {
    .contact-hero {
        padding: 58px 0 75px;
    }

    .contact-hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.7rem);
    }

    .contact-hero-copy>p:last-child {
        font-size: .94rem;
    }

    .contact-hero-orbit {
        right: 18px;
        bottom: 18px;
    }

    .contact-hero-orbit span {
        width: 38px;
        height: 38px;
        font-size: .82rem;
    }

    .contact-layout {
        gap: 32px;
    }

    .contact-info-panel h2 {
        font-size: 2.25rem;
    }

    .contact-info-list {
        display: block;
        margin-top: 25px;
    }

    .contact-form-card {
        padding: 22px 17px;
        border-radius: 30px;
    }

    .contact-form-heading h2 {
        font-size: 1.7rem;
    }

    .contact-submit-row {
        display: block;
    }

    .contact-submit-row .btn {
        width: 100%;
    }

    .contact-submit-row .form-message {
        margin-top: 10px;
    }

    .contact-bottom-strip {
        padding: 20px 0;
    }

    .contact-bottom-strip .container>div {
        font-size: .68rem;
    }
}

/* Final footer layout overrides (kept after legacy footer rules). */
.site-footer {
    background: #000;
    color: #aeb4c0;
    padding: 0 0 24px;
}

.site-footer .container {
    max-width: 1240px;
}

.footer-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    padding: 54px 0 42px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-kicker {
    color: #7a9ce9;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    margin: 0 0 12px;
}

.footer-intro h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    letter-spacing: -.04em;
    margin: 0 0 8px;
    max-width: 600px;
}

.footer-intro p:not(.footer-kicker) {
    color: #8f96a3;
    margin: 0;
    max-width: 560px;
}

.footer-shop-link {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff !important;
    font-weight: 700;
}

.footer-shop-link:hover {
    background: #215ada;
    border-color: #215ada;
}

.site-footer .footer-main {
    display: grid;
    grid-template-columns: minmax(230px, 1.15fr) 2fr;
    gap: 86px;
    padding: 48px 0;
}

.site-footer .footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-logo .logo-badge {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #000;
}

.footer-tagline {
    color: #fff !important;
    font-weight: 700;
    margin: 22px 0 8px !important;
}

.footer-description {
    color: #8f96a3 !important;
    line-height: 1.7;
    font-size: .88rem;
    margin: 0 0 22px !important;
}

.site-footer .footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    max-width: none;
}

.site-footer h6 {
    color: #fff;
    font-size: .72rem;
    letter-spacing: .14em;
    margin: 4px 0 18px;
}

.site-footer .footer-links a {
    color: #aeb4c0;
    font-size: .86rem;
    margin: 0 0 12px;
    line-height: 1.45;
}

.site-footer .footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact a {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact a i {
    color: #ffffff;
    width: 16px;
    margin-top: 3px;
    flex: 0 0 16px;
}

.site-footer .footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.site-footer .footer-socials a {
    display: grid !important;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #d8dce4;
}

.site-footer .footer-socials a:hover {
    color: #fff;
    background: #215ada;
    border-color: #215ada;
}

.site-footer .footer-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-footer .footer-perks span {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    align-items: center;
}

.site-footer .footer-perks i {
    grid-row: span 2;
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
}

.site-footer .footer-perks b {
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
}

.site-footer .footer-perks small {
    color: #7e8693;
    font-size: .7rem;
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    color: #747c89;
    font-size: .75rem;
}

.site-footer .footer-bottom i {
    color: #ffffff;
    margin-left: 4px;
}

@media (max-width: 767px) {
    .footer-intro {
        display: block;
        padding: 40px 0 30px;
    }

    .footer-shop-link {
        margin-top: 22px !important;
    }

    .site-footer .footer-main {
        display: block;
        padding: 36px 0;
    }

    .site-footer .footer-brand {
        max-width: none;
        margin-bottom: 38px;
    }

    .site-footer .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .site-footer .footer-perks {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .site-footer .footer-bottom {
        display: block;
        line-height: 1.7;
    }

    .site-footer .footer-bottom span:last-child {
        display: block;
        margin-top: 5px;
    }
}

.toast-icon {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.payment-option-icon .payment-svg {
    display: none;
}

.payment-option-icon::before {
    content: "\f09d";
    font-family: "Font Awesome 7 Pro";
    font-weight: 900;
    font-style: normal;
}

/* Premium ecommerce breadcrumb treatment. */
.site-breadcrumb {
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 7px 12px 7px 8px;
    border: 1px solid rgba(33, 33, 33, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 24px rgba(46, 35, 26, .06);
    color: #77716b;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.site-breadcrumb>* {
    min-height: 28px;
}

.site-breadcrumb a,
.site-breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.site-breadcrumb .breadcrumb-home,
.site-breadcrumb .breadcrumb-link,
.site-breadcrumb .breadcrumb-current,
.site-breadcrumb .breadcrumb-separator {
    display: inline-flex;
    align-items: center;
}

.site-breadcrumb .breadcrumb-home {
    gap: 8px;
    padding: 0 8px 0 0;
    color: #3a3530;
}

.breadcrumb-home-icon {
    display: inline-grid !important;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #1b1917;
    color: #fff !important;
    font-size: .68rem;
    letter-spacing: 0;
}

.site-breadcrumb .breadcrumb-link {
    padding: 5px 8px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-breadcrumb .breadcrumb-link:hover {
    background: #e9f1fc;
    color: var(--terracotta);
    transform: translateY(-1px);
}

.site-breadcrumb .breadcrumb-current {
    max-width: min(300px, 42vw);
    overflow: hidden;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e9f1fc;
    color: #648be5;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-breadcrumb .breadcrumb-separator {
    color: #b5aaa0;
    font-size: .58rem;
    letter-spacing: 0;
}

.auth-breadcrumb-wrap .site-breadcrumb {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .contact-hero {
        background-image:
            linear-gradient(90deg, rgba(247, 242, 236, .98), rgba(247, 242, 236, .84)),
            url('/assets/images/product-banner/product-banner-lg-a1.webp');
        background-position: center, 64% center;
    }

    .site-breadcrumb {
        min-height: 40px;
        margin-bottom: 22px;
        padding: 6px 9px 6px 6px;
        gap: 5px;
        font-size: .62rem;
    }

    .site-breadcrumb>* {
        min-height: 26px;
    }

    .breadcrumb-home-icon {
        width: 26px;
        height: 26px;
    }

    .site-breadcrumb .breadcrumb-current {
        max-width: 46vw;
    }
}

/* Sticky ecommerce header and campaign bar. */
:root {
    --campaign-bar-height: 0px;
}

.site-campaign-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    height: auto;
}

.site-campaign-header .rbt-header-wrapper {
    position: static !important;
    box-shadow: none !important;
}

.site-main-nav {
    position: sticky !important;
    top: var(--campaign-bar-height);
    z-index: 1030;
    padding: 15px 0;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 28px rgba(36, 28, 22, .06);
    backdrop-filter: blur(18px) saturate(130%);
    transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-main-nav.is-scrolled {
    padding: 9px 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 30px rgba(36, 28, 22, .1);
}

.site-main-nav .navbar-brand {
    gap: 10px;
    font-weight: 800;
    letter-spacing: -.035em;
}

.site-main-nav .brand-font {
    font-size: 1.18rem;
}

.site-main-nav .nav-link {
    position: relative;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: color .2s ease, background .2s ease;
}

.site-main-nav .nav-link:hover,
.site-main-nav .nav-link.active {
    background: #e9f1fc;
    color: var(--terracotta);
}

.site-main-nav .nav-icon-link {
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    font-size: 1rem;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-main-nav .nav-icon-link:hover {
    background: #e9f1fc;
    transform: translateY(-1px);
}

.site-main-nav .nav-icon-link .ui-icon {
    width: 19px;
    height: 19px;
    font-size: 1rem;
}

.site-main-nav .nav-divider {
    height: 24px;
    margin: 0 8px;
    background: #e9f1fc;
}

.site-main-nav .nav-login-btn {
    margin-left: 7px;
    padding: 11px 18px;
    font-size: .76rem;
    box-shadow: 0 8px 18px rgba(27, 25, 23, .12);
}

@media (max-width: 991px) {
    .site-main-nav .navbar-collapse {
        margin-top: 12px;
        padding: 10px 0 2px;
        border-top: 1px solid #e9f1fc;
    }

    .site-main-nav .nav-link,
    .site-main-nav .nav-icon-link {
        width: auto;
        height: auto;
        justify-content: flex-start;
        border-radius: 10px;
    }

    .site-main-nav .nav-login-btn {
        display: inline-flex;
        margin: 10px 0 4px;
    }
}

@media (max-width: 767px) {
    .site-main-nav {
        padding: 10px 0;
    }

    .site-main-nav.is-scrolled {
        padding: 7px 0;
    }

    .site-main-nav .brand-font {
        font-size: .96rem;
    }
}

.site-main-nav .nav-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-main-nav .nav-login-btn i {
    font-size: .82rem;
}

.site-main-nav .nav-login-btn {
    width: auto;
    height: auto;
    margin-left: 7px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #1b1917;
    color: #fff;
    box-shadow: 0 8px 18px rgba(27, 25, 23, .12);
}

.site-main-nav .nav-login-btn:hover {
    background: #2b2723;
    color: #fff;
}

/* Use the same typography family defined by style.min.css everywhere. */
body,
body button,
body input,
body select,
body textarea,
body optgroup,
body option {
    font-family: var(--font-primary) !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body a,
body li,
body label,
body small,
body strong,
body span,
body dt,
body dd {
    font-family: var(--font-primary);
}

/* Softer navbar typography for a cleaner premium storefront look. */
.site-main-nav .nav-link {
    font-size: .84rem;
    font-weight: 500;
    letter-spacing: 0;
}

.site-main-nav .nav-link.active {
    font-weight: 600;
}

.site-main-nav .navbar-brand,
.site-main-nav .brand-font {
    font-weight: 700;
}

/* Cleaner active navigation state. */
.site-main-nav .nav-link {
    background: transparent;
}

.site-main-nav .nav-link:hover {
    background: #e9f1fc;
    color: var(--terracotta);
}

.site-main-nav .nav-link.active {
    position: relative;
    background: transparent;
    color: var(--terracotta);
    font-weight: 600;
}

.site-main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--terracotta);
}

@media (max-width: 991px) {
    .site-main-nav .nav-link.active {
        background: #e9f1fc;
    }

    .site-main-nav .nav-link.active::after {
        right: auto;
        bottom: 8px;
        left: 4px;
        width: 24px;
    }
}

/* ---------- Arva Overseas reference theme color roles ---------- */
.rbt-product-banner .rbt-pricing-part .rbt-price-text,
.product-price-row strong,
.detail-price,
.price-new {
    color: var(--primary-blue);
}

.rbt-product-banner .rbt-pricing-part .rbt-offer-badge,
.sale-badge,
.product-gallery-sale {
    background: var(--sale-red);
    color: #fff;
}

.save-pill {
    background: #e53e3e;
    color: #ffffff;
}

.rbt-product-banner .rbt-banner-btn .rbt-btn,
.btn.btn-dark-pill,
.btn-dark-pill,
.btn-tan-pill,
.contact-social-circle {
    background: var(--primary-blue);
    color: #fff;
}

.rbt-product-banner .rbt-banner-btn .rbt-btn:hover,
.btn.btn-dark-pill:hover,
.btn-dark-pill:hover,
.btn-tan-pill:hover,
.contact-social-circle:hover {
    background: var(--primary-blue-hover);
    color: #fff;
}

.btn-light-pill:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* ---------- Consistent storefront typography ---------- */
body {
    color: var(--text-body);
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main .brand-font {
    color: var(--text-primary);
}

main p,
main li,
main label,
main small,
main .text-muted,
main .section-subcopy,
main .lead-sm,
main .product-description,
main .product-rating-row,
main .gallery-note,
main .footer-note {
    color: var(--text-body);
}

main .product-info h5 a,
main .product-buy-panel h1,
main .product-card h5,
main .category-card-home h3 {
    color: var(--text-primary);
}

main .product-rating-row a,
main .gallery-note i,
main .nav-icon-link:hover,
main .site-main-nav .nav-link:hover,
main .site-main-nav .nav-link.active {
    color: var(--primary-blue);
}

main .price-old,
main .product-price-row .price-old {
    color: var(--text-soft);
}

/* ---------- Login, catalogue and product-detail root theme ---------- */
.auth-section {
    background: var(--surface-soft);
}

.auth-card {
    border: 1px solid var(--border-blue);
    box-shadow: 0 18px 42px rgba(33, 90, 218, .08);
}

.auth-tabs {
    border-bottom-color: var(--border-blue);
}

.auth-tabs button.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.auth-card .form-control:focus,
.auth-card .form-select:focus,
.product-filter-form input:focus,
.product-filter-form select:focus,
.products-catalog-section .sidebar-search input:focus,
.products-catalog-section .price-fields input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(33, 90, 218, .12);
}


.product-breadcrumb,
.catalog-search-note,
.catalog-clear-link,
.filter-result-count,
.active-filter-row {
    color: var(--text-body);
}

.product-breadcrumb a,
.catalog-clear-link:hover,
.product-breadcrumb a:hover,
.active-filter-row a {
    color: var(--primary-blue);
}

.product-gallery-main {
    background: var(--surface-soft);
}

.product-gallery-label {
    color: var(--text-primary);
}

.product-gallery-sale,
.sale-badge,
.rbt-product-banner .rbt-pricing-part .rbt-offer-badge {
    background: var(--sale-red);
}

.product-rating-row a,
.product-price-row strong,
.price-new,
.catalog-heading h2,
.filter-kicker,
.products-catalog-section .sidebar-heading a,
.products-catalog-section .filter-options-list label:has(input:checked),
.products-catalog-section .featured-check:has(input:checked) {
    color: var(--primary-blue);
}

.save-pill {
    background: #e53e3e;
    color: #ffffff;
}

.product-filter-panel,
.products-catalog-section .catalog-sidebar {
    border-color: var(--border-blue);
    background: var(--surface-soft);
}

.products-catalog-section .sidebar-heading,
.products-catalog-section .filter-options-list label:has(input:checked),
.products-catalog-section .featured-check:has(input:checked),
.active-filter-chip {
    background: var(--surface-blue);
}

.products-catalog-section .sidebar-filter-form details,
.active-filter-row {
    border-top-color: var(--border-blue);
}

.products-catalog-section .sidebar-search input,
.products-catalog-section .price-fields input,
.product-filter-form input,
.product-filter-form select {
    border-color: var(--border-blue);
    color: var(--text-primary);
}

.products-catalog-section .sidebar-apply,
.filter-submit,
.buy-button {
    background: var(--primary-blue);
    color: #fff;
}

.products-catalog-section .sidebar-apply:hover,
.filter-submit:hover,
.buy-button:hover {
    background: var(--primary-blue-hover);
    color: #fff;
}

.quantity-control,
.wishlist-detail-button {
    border-color: var(--border-blue);
}

.wishlist-detail-button:hover,
.wishlist-detail-button.saved {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: var(--surface-blue);
}

.product-rating-row .stars,
.stars {
    color: var(--primary-blue);
}



.wishlist-detail-button.saved {
    color: #e53935 !important;
    border-color: #f1a5a3 !important;
    background: #fff1f1 !important;
}


/* Product availability: compact marketplace-style stock card. */
.product-buy-panel .product-availability {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 520px;
    min-height: 84px;
    margin: 24px 0 22px;
    padding: 15px 17px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fff;
    color: #282c32;
    box-shadow: 0 2px 8px rgba(29, 35, 44, .04);
}

.product-buy-panel .availability-status-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid #215ada;
    border-radius: 50%;
    background: #e9f1fc;
    color: #215ada;
    font-size: 17px;
}

.product-buy-panel .availability-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.product-buy-panel .availability-kicker {
    color: #215ada;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
}

.product-buy-panel .availability-copy strong {
    color: #282c32;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.product-buy-panel .availability-copy small {
    overflow: hidden;
    color: #737b86;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-buy-panel .availability-live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-left: auto;
    border-radius: 50%;
    background: #215ada;
    box-shadow: 0 0 0 4px #e8f8ee;
}

.product-buy-panel .product-availability.out {
    border-color: #f0d4d4;
    background: #fffafa;
}

.product-buy-panel .product-availability.out .availability-status-icon,
.product-buy-panel .product-availability.out .availability-kicker {
    border-color: #f1c4c4;
    background: #fff1f1;
    color: #c92c38;
}

.product-buy-panel .product-availability.out .availability-copy strong,
.product-buy-panel .product-availability.out .availability-copy small {
    color: #8f4b52;
}

/* Premium stock status cards for available and unavailable products. */
.product-availability {
    position: relative;
    width: min(100%, 360px);
    min-height: 72px;
    padding: 14px 18px;
    border: 1px solid #c9dbff;
    border-radius: 19px;
    background: linear-gradient(135deg, #f3f7ff 0%, #e8f0ff 100%);
    box-shadow: 0 10px 24px rgba(33, 90, 218, .08);
}

.product-availability>i {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border: 1px solid #b8d0ff;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-blue);
}

.product-availability strong {
    color: var(--primary-blue);
    font-size: .92rem;
    letter-spacing: -.01em;
}

.product-availability small {
    color: #5d7fc6;
    font-size: .74rem;
}

.product-availability.out {
    border-color: #ffc8c8;
    background: linear-gradient(135deg, #fff7f7 0%, #ffeded 100%);
    box-shadow: 0 10px 24px rgba(180, 35, 45, .07);
}

.product-availability.out>i {
    border-color: #ffb5b5;
    color: #c92c38;
}

.product-availability.out strong,
.product-availability.out small {
    color: #c92c38;
}

.product-out-of-stock {
    position: relative;
    width: min(100%, 360px);
    margin: 18px 0 20px;
    padding: 15px 18px 15px 20px;
    border: 1px solid #ffb6b6;
    border-left: 4px solid #d92f3d;
    border-radius: 17px;
    background: #fff8f8;
    box-shadow: 0 8px 20px rgba(180, 35, 45, .06);
}

.product-out-of-stock strong {
    color: #c52532;
    font-size: .98rem;
}

.product-out-of-stock span {
    color: #a95b62;
    font-size: .75rem;
}

.product-availability {
    border-color: var(--border-blue);
    color: var(--primary-blue);
    background: var(--surface-blue);
}

.product-availability.out {
    border-color: #F2C4C4;
    color: var(--sale-red);
    background: #FFF5F5;
}

.quantity-control {
    min-width: 116px;
    justify-content: center;
    border-color: var(--border-blue);
    overflow: hidden;
}

.quantity-control button {
    width: 38px;
    min-width: 38px;
    color: var(--primary-blue);
    font-weight: 700;
}

.quantity-control input,
.quantity-control input.form-control {
    width: 40px;
    min-width: 40px;
    height: 50px;
    padding: 0 !important;
    border: 0;
    border-right: 1px solid var(--border-blue);
    border-left: 1px solid var(--border-blue);
    border-radius: 0;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
}

/* ---------- Login page root-theme polish ---------- */
.auth-section {
    min-height: 620px;
    padding: clamp(52px, 7vw, 88px) 0 96px;
}

.auth-card {
    padding: clamp(28px, 4vw, 44px);
    border-radius: 28px;
    background: var(--surface-blue);
    box-shadow: 0 22px 50px rgba(33, 90, 218, .1);
}

.auth-card .eyebrow {
    color: var(--primary-blue);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.auth-card h1 {
    margin: 14px 0 10px;
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.auth-card>.text-muted {
    color: var(--text-body) !important;
    line-height: 1.65;
}

.auth-tabs {
    gap: 0;
    margin: 28px 0 22px;
    border-bottom-color: var(--border-blue);
}

.auth-tabs button {
    flex: 1;
    padding: 12px 8px;
    color: var(--text-body);
    transition: color .2s ease, border-color .2s ease;
}

.auth-tabs button:hover,
.auth-tabs button.active {
    color: var(--primary-blue);
}

.auth-card .form-control,
.auth-card .form-select {
    min-height: 50px;
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    background: #fff;
    color: var(--text-primary);
}

.auth-card .form-control::placeholder {
    color: var(--text-soft);
}

.auth-card .btn-dark-pill,
.auth-card .btn.btn-dark-pill {
    min-height: 50px;
    border: 0;
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 10px 20px rgba(33, 90, 218, .18);
}

.auth-card .btn-dark-pill:hover,
.auth-card .btn.btn-dark-pill:hover {
    background: var(--primary-blue-hover);
}

.auth-card .btn-outline-tan {
    min-height: 50px;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.auth-card .btn-outline-tan:hover {
    background: var(--primary-blue);
    color: #fff;
}

.auth-card .form-message {
    color: var(--sale-red);
}

/* ---------- Product listing cards: reference-storefront layout ---------- */
.products-catalog-section .product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-blue);
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 17, 17, .09);
    transition: transform .25s ease, box-shadow .25s ease;
}

.products-catalog-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(17, 17, 17, .09);
}

.products-catalog-section .product-thumb {
    height: 300px;
    border-radius: 30px 22px 0 0;
    background: var(--surface-soft);
}

.products-catalog-section .product-thumb img {
    transition: transform .35s ease;
}

.products-catalog-section .product-card:hover .product-thumb img {
    transform: scale(1.04);
}

.products-catalog-section .sale-badge,
.products-catalog-section .stock-badge {
    top: 16px;
    left: 16px;
    border-radius: 7px;
    padding: 7px 10px;
    font-size: .67rem;
    letter-spacing: .03em;
}

.products-catalog-section .stock-badge {
    right: 16px;
    left: auto;
}

.products-catalog-section .product-info {
    position: static;
    padding: 18px 18px 20px;
}

.products-catalog-section .product-info>.d-flex {
    min-height: 52px;
    padding-right: 42px;
}

.products-catalog-section .product-info h5 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.products-catalog-section .product-info h5 a {
    color: var(--text-primary);
}

.products-catalog-section .product-info .small {
    margin-top: 4px;
    color: var(--primary-blue) !important;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.products-catalog-section .product-info>div:has(> .price-new) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 28px;
    margin-top: 7px;
}

.products-catalog-section .price-old {
    color: var(--text-soft);
    font-size: .8rem;
}

.products-catalog-section .price-new {
    color: var(--primary-blue);
    font-size: 17px;
}

.products-catalog-section .add-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 44px;
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    background: var(--primary-blue);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.products-catalog-section .add-cart-link:hover {
    background: var(--primary-blue-hover);
    color: #fff;
    transform: translateY(-1px);
}

.products-catalog-section .add-cart-link:disabled {
    cursor: not-allowed;
    background: var(--border-blue);
    color: var(--text-body);
}

/* ---------- Product page heading and toolbar ---------- */
.products-page-hero {
    background: linear-gradient(120deg, var(--surface-soft) 0%, var(--surface-blue) 100%);
}

.products-page-hero .eyebrow,
.products-catalog-section>.container>.catalog-heading .eyebrow {
    color: var(--primary-blue);
}

.products-catalog-section>.container>.catalog-heading {
    align-items: center;
    margin-bottom: 30px;
    padding: 22px 24px;
    border: 1px solid var(--border-blue);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(33, 90, 218, .05);
}

.products-catalog-section>.container>.catalog-heading h2 {
    color: var(--text-primary);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.products-catalog-section>.container>.catalog-heading .catalog-clear-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border: 1px solid var(--border-blue);
    border-radius: 999px;
    background: var(--surface-blue);
    color: var(--primary-blue);
    font-weight: 700;
}

.products-catalog-section>.container>.catalog-heading .catalog-clear-link:hover {
    background: var(--primary-blue);
    color: #fff;
}

.catalog-toolbar {
    margin-bottom: 4px;
    padding: 14px 16px;
    border: 1px solid var(--border-blue);
    border-radius: 16px;
    background: var(--surface-soft);
}

.catalog-toolbar-copy strong {
    color: var(--text-primary);
    font-size: .92rem;
}

.catalog-toolbar-copy span,
.catalog-sort-form label {
    color: var(--text-body);
}

.catalog-sort-form select {
    border-color: var(--border-blue);
    border-radius: 12px;
    color: var(--text-primary);
}

.catalog-sort-form select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(33, 90, 218, .12);
}

/* Shop page uses the same product card presentation as the home page. */
.products-page-hero {
    background: var(--gray-bg) !important;
    background-image: url(https://kits.astylers.com/syramik/wp-content/uploads/sites/13/2025/02/rect1063.png) !important;
    background-position: 88% -35px !important;
    background-repeat: no-repeat !important;
    height: 435px !important;
}

.products-catalog-section>.container>.catalog-heading {
    align-items: end !important;
    margin-bottom: 24px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.products-catalog-section>.container>.catalog-heading .catalog-clear-link {
    display: inline !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--text-body) !important;
    font-weight: 400 !important;
}

.products-catalog-section .catalog-toolbar {
    margin-bottom: 20px !important;
    padding: 0 0 15px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border-bottom: 1px solid var(--border-blue) !important;
}

.products-catalog-section .catalog-sidebar {
    background: #fff !important;
}



.products-catalog-section .product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 34px rgba(17, 17, 17, .09) !important;
}

.products-catalog-section .product-thumb {
    height: 270px !important;
    border-radius: 30px !important;
    background: #d2cac3 !important;
}

.products-catalog-section .product-info {
    position: static !important;
    padding: 20px 20px 24px !important;
}

.products-catalog-section .product-info>.d-flex {
    min-height: 0 !important;
    padding-right: 0 !important;
}

.products-catalog-section .product-info .small {
    margin-top: 0 !important;
    color: var(--text-body) !important;
    font-size: .66rem !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}


.products-catalog-section .product-info>div:has(> .price-new) {
    display: block !important;
    min-height: 0 !important;
    margin-top: 0 !important;
}

.products-catalog-section .add-cart-link {
    display: block !important;
    width: auto !important;
    min-height: 0 !important;
    margin-top: 14px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--text-primary) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-align: left !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    transform: none !important;
}

.products-catalog-section .add-cart-link:hover {
    background: transparent !important;
    color: var(--primary-blue) !important;
    transform: none !important;
}

@media (max-width: 767px) {
    .products-catalog-section>.container>.catalog-heading {
        align-items: flex-start;
        padding: 18px;
    }

    .products-catalog-section>.container>.catalog-heading .catalog-clear-link {
        padding: 8px 10px;
        font-size: .68rem;
    }

    .catalog-toolbar {
        padding: 12px;
    }
}

/* ---------- Production ecommerce filter: sticky desktop sidebar ---------- */
@media (min-width: 992px) {
    .products-catalog-section .catalog-sidebar {
        position: sticky;
        top: 96px;
        max-height: none;
    }

    .products-catalog-section .sidebar-heading {
        position: relative;
        box-shadow: 0 1px 0 rgba(33, 90, 218, .08);
    }

    .products-catalog-section .sidebar-filter-form {
        max-height: calc(100vh - 190px);
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-blue) var(--surface-soft);
    }

    .products-catalog-section .sidebar-filter-form::-webkit-scrollbar {
        width: 6px;
    }

    .products-catalog-section .sidebar-filter-form::-webkit-scrollbar-track {
        background: var(--surface-soft);
    }

    .products-catalog-section .sidebar-filter-form::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: var(--primary-blue);
    }
}

.products-catalog-section .sidebar-search input,
.products-catalog-section .price-fields input {
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.products-catalog-section .sidebar-search input:hover,
.products-catalog-section .price-fields input:hover {
    border-color: var(--primary-blue);
}

.products-catalog-section .sidebar-filter-form summary:focus-visible,
.products-catalog-section .sidebar-heading a:focus-visible,
.products-catalog-section .filter-options-list label:focus-within,
.products-catalog-section .featured-check:focus-within {
    outline: 3px solid rgba(33, 90, 218, .2);
    outline-offset: 2px;
}

.products-catalog-section .sidebar-filter-form details+details {
    margin-top: 2px;
}

@media (max-width: 991px) {
    .products-catalog-section .catalog-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .products-catalog-section .sidebar-filter-form {
        max-height: none;
        overflow: visible;
    }
}

/* ---------- Refined production filter UI ---------- */
.products-catalog-section .catalog-sidebar {
    border: 1px solid var(--border-blue) !important;
    border-radius: 6px !important;
    background: #fff !important;
    box-shadow: 0 14px 34px rgba(33, 90, 218, .08) !important;
}

.products-catalog-section .sidebar-heading {
    min-height: 70px;
    padding: 16px 18px !important;
    border-bottom: 1px solid var(--border-blue) !important;
    background: #fff !important;
}

.products-catalog-section .sidebar-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    white-space: nowrap;
    color: var(--text-primary);
    font-size: .76rem;
    letter-spacing: .1em;
}

.products-catalog-section .sidebar-heading span strong {
    white-space: nowrap;
}

.products-catalog-section .sidebar-heading span i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: var(--surface-blue);
    color: var(--primary-blue);
}

.products-catalog-section .sidebar-heading a {
    padding: 3px 15px;
    border: 1px solid var(--border-blue);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--primary-blue);
    font-size: .66rem;
    font-weight: 700;
}

.products-catalog-section .sidebar-heading a:hover {
    background: var(--primary-blue);
    color: #fff;
}

.products-catalog-section .sidebar-filter-form {
    padding: 0 18px 18px !important;
}

.products-catalog-section .sidebar-search {
    margin: 16px 0 14px;
}

.products-catalog-section .sidebar-search input {
    height: 46px;
    border: 1px solid var(--border-blue) !important;
    border-radius: 6px;
    background: var(--surface-soft);
    color: #555555;
    font-size: .76rem;
}

.products-catalog-section .sidebar-search input::placeholder {
    color: var(--text-soft);
}

.products-catalog-section .sidebar-search i {
    color: var(--primary-blue);
}

.products-catalog-section .sidebar-filter-form details {
    border-top: 1px solid var(--border-blue) !important;
}

.products-catalog-section .sidebar-filter-form summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 2px 12px;
    color: var(--text-primary);
    font-size: .74rem;
    font-weight: 800;
    white-space: nowrap;
}

.products-catalog-section .sidebar-filter-form summary i {
    flex: 0 0 auto;
    color: var(--primary-blue);
    transition: transform .2s ease;
}

.products-catalog-section .sidebar-filter-form details[open] summary i {
    transform: rotate(180deg);
}

.products-catalog-section .sidebar-filter-form details[open] summary {
    color: var(--primary-blue);
}

.products-catalog-section .filter-options-list {
    gap: 4px;
    padding: 0 0 14px;
}

.products-catalog-section .filter-options-list label,
.products-catalog-section .featured-check {
    min-height: 36px;
    padding: 7px 9px;
    border-radius: 6px;
    color: var(--text-body);
    font-size: .73rem;
}

.products-catalog-section .filter-options-list label span,
.products-catalog-section .featured-check span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-catalog-section .filter-options-list label:hover,
.products-catalog-section .featured-check:hover,
.products-catalog-section .filter-options-list label:has(input:checked),
.products-catalog-section .featured-check:has(input:checked) {
    background: var(--surface-blue) !important;
    color: var(--primary-blue) !important;
}

.products-catalog-section .filter-options-list input,
.products-catalog-section .featured-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-blue);
}

.products-catalog-section .price-fields {
    align-items: center;
    padding-bottom: 16px;
}

.products-catalog-section .price-fields label>span {
    margin-bottom: 6px;
    color: var(--primary-blue);
    font-size: .62rem;
    font-weight: 800;
}

.products-catalog-section .price-fields input {
    height: 42px;
    border: 1px solid var(--border-blue) !important;
    border-radius: 11px;
    background: var(--surface-soft);
    color: var(--text-primary);
}

.products-catalog-section .price-dash {
    color: var(--text-soft);
}

.products-catalog-section .sidebar-apply {
    min-height: 48px;
    margin-top: 12px;
    border-radius: 30px;
    background: var(--primary-blue) !important;
    box-shadow: 0 10px 20px rgba(33, 90, 218, .18);
    font-size: .74rem;
    font-weight: 700;
}

.products-catalog-section .sidebar-apply:hover {
    background: var(--primary-blue-hover) !important;
    box-shadow: 0 12px 24px rgba(33, 90, 218, .24);
    transform: translateY(-1px);
}

/* Keep the shop sort dropdown visibly actionable even when the base theme
   removes native select arrows. */
.products-catalog-section .catalog-sort-form select {
    appearance: none !important;
    -webkit-appearance: none !important;
    min-height: 46px;
    padding-right: 42px !important;
    cursor: pointer;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23215ADA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
}

.products-catalog-section .catalog-sort-form select:hover {
    border-color: var(--primary-blue);
}

/* Catalogue toolbar: keep the item count readable beside the sorter at every
   viewport width, then give each control its own full-width row on very small
   phones. */
.products-catalog-section .catalog-toolbar-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.products-catalog-section .catalog-toolbar-copy span {
    max-width: 26ch;
    line-height: 1.35;
}

.products-catalog-section .catalog-sort-form {
    min-width: 0;
}

@media (max-width: 767px) {
    .products-catalog-section .catalog-toolbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(132px, auto);
        align-items: center;
        gap: 12px;
    }

    .products-catalog-section .catalog-sort-form,
    .products-catalog-section .catalog-sort-form label {
        width: auto;
        min-width: 0;
    }

    .products-catalog-section .catalog-sort-form label {
        gap: 6px;
    }

    .products-catalog-section .catalog-sort-form select {
        width: 145px;
        min-width: 0;
        max-width: 100%;
    }

    .products-catalog-section .catalog-results .product-catalog-grid>[class*="col-"] {
        min-width: 0;
    }

    .products-catalog-section .catalog-results .product-thumb {
        height: clamp(160px, 48vw, 220px) !important;
    }
}

@media (max-width: 390px) {
    .products-catalog-section .catalog-toolbar {
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }

    .products-catalog-section .catalog-sort-form,
    .products-catalog-section .catalog-sort-form label,
    .products-catalog-section .catalog-sort-form select {
        width: 100%;
        max-width: none;
    }

    .products-catalog-section .catalog-sort-form label {
        align-items: stretch;
    }
}

/* Long business addresses should wrap instead of widening the page. */
.footer-contact a span,
.rbt-location-card-text {
    overflow-wrap: anywhere;
}

@media (max-width: 991px) {
    .products-catalog-section .sidebar-heading {
        min-height: 62px;
    }
}

/* Keep the results toolbar readable: label and sort control stay on one line. */
.products-catalog-section .catalog-sort-form {
    flex: 0 0 auto;
}

.products-catalog-section .catalog-sort-form label {
    flex-wrap: nowrap;
    white-space: nowrap;
}

.products-catalog-section .catalog-sort-form select {
    width: 250px;
}

@media (max-width: 767px) {

    .products-catalog-section .catalog-sort-form,
    .products-catalog-section .catalog-sort-form label {
        width: 100%;
    }

    .products-catalog-section .catalog-sort-form select {
        flex: 1;
        width: auto;
    }
}

/* ---------- Cart and checkout: professional ecommerce UI ---------- */
.cart-page,
.checkout-page {
    background: #ffffff;
}

.cart-page #cart-root {
    min-height: 360px;
}

.cart-page .empty-state {
    max-width: 560px;
    margin: 0 auto;
    padding: 58px 34px;
    border: 1px solid var(--border-blue);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(33, 90, 218, .07);
}

.cart-page .empty-state i {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 30px;
    background: var(--surface-blue);
    color: var(--primary-blue);
}

.cart-page .empty-state h3 {
    color: var(--text-primary);
}

.cart-page .empty-state p {
    color: var(--text-body);
}

.cart-page .cart-item {
    margin-bottom: 14px;
    padding: 18px;
    border: 1px solid var(--border-blue);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(33, 90, 218, .05);
}

.cart-page .cart-item:last-child {
    margin-bottom: 0;
}

.cart-page .cart-item img {
    width: 116px;
    height: 116px;
    border-radius: 16px;
    background: var(--surface-soft);
}

.cart-page .cart-item h3 {
    color: var(--text-primary);
    font-size: 1rem;
}

.cart-page .cart-item strong {
    color: var(--primary-blue);
}

.cart-page .cart-item .text-muted {
    color: var(--text-body) !important;
    font-size: .78rem;
}

.cart-page .qty-button,
.checkout-page .qty-button {
    border-color: var(--border-blue);
    color: var(--primary-blue);
    background: #fff;
}

.cart-page .qty-button:hover,
.checkout-page .qty-button:hover {
    border-color: var(--primary-blue);
    color: #fff;
    background: var(--primary-blue);
}

.cart-page .qty-value {
    min-width: 24px;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
}

.cart-page .remove-link {
    color: var(--sale-red);
    font-size: .76rem;
}

.cart-page .summary-card,
.checkout-page .summary-card {
    border: 1px solid var(--border-blue);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(33, 90, 218, .07);
}

.cart-page .summary-card .eyebrow,
.checkout-page .summary-card .eyebrow {
    color: var(--primary-blue);
}

.cart-page .summary-row,
.checkout-page .summary-row {
    border-bottom-color: var(--border-blue);
}

.cart-page .summary-row strong,
.checkout-page .summary-row strong,
.checkout-page .total-row strong {
    color: #555555;
}

.checkout-page .summary-card h2,
.checkout-page .summary-card h3 {
    color: var(--text-primary);
}

.checkout-page .form-control,
.checkout-page .form-select {
    min-height: 48px;
    border: 1px solid var(--border-blue);
    border-radius: 13px;
    background: #fff;
    color: var(--text-primary);
}

.checkout-page .form-control:focus,
.checkout-page .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(33, 90, 218, .12);
}

.checkout-page .address-option {
    border-color: var(--border-blue);
    background: var(--surface-soft);
}

.checkout-page .address-option:has(input:checked) {
    border-color: var(--primary-blue);
    background: var(--surface-blue);
    box-shadow: 0 0 0 3px rgba(33, 90, 218, .1);
}

.checkout-page .address-option strong {
    color: var(--text-primary);
}

.checkout-page .payment-options {
    gap: 12px;
}

.checkout-page .payment-option {
    min-height: 70px;
    border-color: var(--border-blue);
    background: #fff;
}

.checkout-page .payment-option:has(input:checked) {
    border-color: var(--primary-blue);
    background: var(--surface-blue);
    box-shadow: 0 0 0 3px rgba(33, 90, 218, .1);
}

.checkout-page .payment-option-icon {
    background: #fff;
    color: var(--primary-blue);
}

.checkout-page .payment-option strong {
    color: var(--text-primary);
}

.checkout-page .payment-check {
    color: var(--primary-blue);
}

.checkout-page .coupon-box {
    border: 1px solid var(--border-blue);
    background: var(--surface-blue);
}

.checkout-page .btn-outline-tan {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.checkout-page .btn-outline-tan:hover {
    background: var(--primary-blue);
    color: #fff;
}

.checkout-page .btn-dark-pill,
.cart-page .btn-dark-pill {
    min-height: 48px;
    background: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(33, 90, 218, .18);
}

.checkout-page .btn-dark-pill:hover,
.cart-page .btn-dark-pill:hover {
    background: var(--primary-blue-hover);
}

@media (max-width: 767px) {
    .cart-page .cart-item {
        align-items: flex-start;
        padding: 14px;
    }

    .cart-page .cart-item img {
        width: 82px;
        height: 82px;
    }

    .cart-page .cart-item h3 {
        font-size: .9rem;
    }

    .cart-page .summary-card,
    .checkout-page .summary-card {
        border-radius: 30px;
        padding: 20px;
    }

    .checkout-page .payment-option {
        padding: 12px;
    }
}

/* ---------- Cart and checkout refinement ---------- */
.cart-page,
.checkout-page {
    position: relative;
    background: linear-gradient(180deg, #f8faff 0, #fff 34%, #fff 100%);
}

.cart-page .container,
.checkout-page .container {
    position: relative;
    z-index: 1;
}

.cart-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.cart-intro .eyebrow {
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.cart-intro h2 {
    margin: 0 0 7px;
    color: var(--text-primary);
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    letter-spacing: -.045em;
}

.cart-intro p:last-child {
    margin: 0;
    color: var(--text-body);
}

.cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    color: var(--primary-blue);
    font-size: .86rem;
    font-weight: 700;
}

.cart-continue-link i {
    transition: transform .2s ease;
}

.cart-continue-link:hover i {
    transform: translate(3px, -3px);
}

.cart-page #cart-root>.row {
    align-items: start;
}

.cart-page .cart-item {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 20px;
    min-height: 154px;
    margin-bottom: 16px;
    padding: 15px;
    border: 1px solid rgba(33, 90, 218, .13);
    border-radius: 30px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(29, 56, 107, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}



.cart-page .cart-item img {
    width: 124px;
    height: 124px;
    border: 1px solid #edf0f5;
    border-radius: 17px;
    object-fit: cover;
}

.cart-page .cart-item h3 {
    margin-top: 3px;
    font-size: 19px;
    letter-spacing: -.025em;
}

.cart-page .cart-item strong {
    font-size: 18px;
}

.cart-page .cart-item .text-muted {
    margin-bottom: 21px;
}

.cart-page .qty-button,
.checkout-page .qty-button {
    width: 34px;
    height: 34px;
    border: 1px solid #dfe6f2;
    font-size: 1rem;
    font-weight: 700;
}

.cart-page .remove-link {
    margin-left: -4px !important;
    font-weight: 700;
    text-underline-offset: 3px;
}

.cart-page .summary-card,
.checkout-page .summary-card {
    padding: 28px;
    border: 1px solid rgba(33, 90, 218, .13);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(29, 56, 107, .08);
}

.cart-page .summary-card {
    top: 18px;
}

.cart-page .summary-card .eyebrow,
.checkout-page .summary-card .eyebrow {
    margin-bottom: 22px;
    letter-spacing: .17em;
}

.cart-page .summary-row,
.checkout-page .summary-row {
    padding: 10px 0;
    border-bottom-color: #e8edf5;
}

.cart-page .summary-row span,
.checkout-page .summary-row span {
    color: #596272;
}

.cart-page .summary-row strong,
.checkout-page .summary-row strong {
    font-size: 15px;
}

.cart-page .summary-card .small {
    line-height: 3.6;
}

.checkout-progress {
    display: flex;
    align-items: center;
    max-width: 540px;
    margin: 0 auto 36px;
}

.checkout-progress-step {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #a2aab8;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.checkout-progress-step b {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid #dce3ef;
    border-radius: 50%;
    background: #fff;
    color: #a2aab8;
    font-size: .68rem;
}

.checkout-progress-step.is-complete,
.checkout-progress-step.is-active {
    color: var(--primary-blue);
}

.checkout-progress-step.is-complete b,
.checkout-progress-step.is-active b {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 5px 14px rgba(33, 90, 218, .2);
}

.checkout-progress>i {
    flex: 1;
    height: 1px;
    margin: 0 13px;
    background: #dce3ef;
}

.checkout-page>.container>.row {
    align-items: start;
}

.checkout-page .summary-card h2 {
    margin-bottom: 26px;
    font-size: 28px;
    letter-spacing: -.05em;
}

.checkout-page .summary-card h3 {
    margin-bottom: 18px;
    font-size: 1.45rem;
    letter-spacing: -.035em;
}

.checkout-page .form-control {
    padding: 13px 17px;
    border-color: #e1e7f0;
    border-radius: 10px;
    font-size: 15px;
}

.checkout-page .form-control::placeholder {
    color: #8b94a1;
}

.checkout-page .address-option {
    min-height: 86px;
    padding: 17px 18px;
    border-color: #dfe6f1;
    border-radius: 17px;
    background: #fbfcfe;
}

.checkout-page .address-option:has(input:checked) {
    border-width: 2px;
    padding: 16px 17px;
}

.checkout-page .address-option small {
    display: block;
    margin-top: 5px;
    color: #687384;
}

.checkout-page .payment-option {
    min-height: 82px;
    padding: 16px 18px;
    border-color: #e0e6f0;
    border-radius: 17px;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.checkout-page .payment-option:hover {
    border-color: rgba(33, 90, 218, .4);
    transform: translateY(-1px);
}

.checkout-page .payment-option small {
    display: block;
    margin-top: 4px;
    color: #717b89;
}

.checkout-page .coupon-box {
    padding: 10px;
    border-radius: 17px;
}

.checkout-page .coupon-box .form-control {
    min-height: 49px;
    border: 0;
    background: #fff;
}

.checkout-page .coupon-box .btn {
    min-width: 92px;
    border-radius: 13px !important;
}

.checkout-page .btn-dark-pill,
.cart-page .btn-dark-pill {
    min-height: 54px;
    font-size: .96rem;
}

.checkout-page .summary-card.sticky-summary {
    top: 128px;
}

.checkout-page .checkout-summary-item {
    padding: 0 0 11px;
    margin-bottom: 8px;
    border-bottom-color: #e8edf5;
}

.checkout-page .checkout-summary-item .summary-row {
    padding: 10px 0 5px;
}

.checkout-page .checkout-qty {
    padding-bottom: 5px;
}

.checkout-page .checkout-qty .qty-button {
    width: 30px;
    height: 30px;
}

.checkout-page .total-row {
    padding-top: 19px;
    font-size: 1.22rem;
}

@media (max-width: 767px) {
    .cart-intro {
        display: block;
        margin-bottom: 22px;
    }

    .cart-continue-link {
        margin-top: 13px;
    }

    .cart-page .cart-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 13px;
        min-height: 0;
    }

    .cart-page .cart-item img {
        width: 84px;
        height: 84px;
    }

    .cart-page .cart-item h3 {
        font-size: .95rem;
    }

    .cart-page .cart-item .text-muted {
        margin-bottom: 13px;
    }

    .checkout-progress {
        margin-bottom: 24px;
    }

    .checkout-progress-step {
        gap: 5px;
        font-size: .62rem;
    }

    .checkout-progress>i {
        margin: 0 7px;
    }

    .checkout-page .summary-card {
        padding: 21px;
    }
}

/* ---------- Wishlist and account-style shopping surfaces ---------- */
.wishlist-page {
    background: #f8faff;
}

.account-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}

.account-content {
    min-width: 0;
}

.account-main {
    min-width: 0;
}

.account-dashboard-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 22px;
}

.account-dashboard-heading .eyebrow {
    margin: 0 0 7px;
    color: var(--primary-blue);
}

.account-dashboard-heading h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    letter-spacing: -.05em;
}

.account-dashboard-heading p:last-child {
    margin: 7px 0 0;
    color: #748093;
    font-size: .82rem;
}

.account-sidebar {
    position: sticky;
    top: 110px;
    padding: 18px;
    border: 1px solid rgba(33, 90, 218, .13);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(29, 56, 107, .07);
}

.account-sidebar-profile {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 4px 4px 18px;
    border-bottom: 1px solid #edf0f5;
}

.account-sidebar-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-blue);
    color: var(--primary-blue);
    font-size: 1.05rem;
}

.account-sidebar-profile strong,
.account-sidebar-profile small {
    display: block;
}

.account-sidebar-profile strong {
    color: var(--text-primary);
    font-size: .88rem;
}

.account-sidebar-profile small {
    margin-top: 3px;
    color: #7c8797;
    font-size: .72rem;
}

.account-nav {
    display: grid;
    gap: 4px;
    padding-top: 16px;
}

.account-nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 41px;
    padding: 9px 11px;
    border-radius: 11px;
    color: #566170;
    font-size: .78rem;
    font-weight: 600;
}

.account-nav a i {
    width: 17px;
    color: #8590a0;
    text-align: center;
}

.account-nav a:hover,
.account-nav a.is-active {
    background: var(--surface-blue);
    color: var(--primary-blue);
}

.account-nav a.is-active i {
    color: var(--primary-blue);
}

.account-nav-divider {
    height: 1px;
    margin: 15px 4px 0;
    background: #edf0f5;
}

.account-nav-secondary {
    padding-top: 12px;
}

.wishlist-content-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.wishlist-content-head .eyebrow {
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.wishlist-content-head h2 {
    margin: 0 0 7px;
    color: var(--text-primary);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    letter-spacing: -.05em;
}

.wishlist-content-head p:last-child {
    margin: 0;
    color: #687384;
    font-size: .86rem;
}

.wishlist-content-head .btn {
    flex: 0 0 auto;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.wishlist-content-head .btn:hover {
    background: var(--primary-blue);
    color: #fff;
}

.wishlist-list {
    overflow: hidden;
    border: 1px solid rgba(33, 90, 218, .13);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(29, 56, 107, .07);
}

.wishlist-item {
    display: grid;
    grid-template-columns: 28px 94px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 140px;
    padding: 18px 22px;
    border-bottom: 1px solid #edf0f5;
}

.wishlist-item:last-child {
    border-bottom: 0;
}

.wishlist-remove {
    align-self: start;
    width: 25px;
    height: 25px;
    border: 0;
    background: transparent;
    color: #7b8593;
    font-size: 1.3rem;
    line-height: 1;
}

.wishlist-remove:hover {
    color: var(--sale-red);
}

.wishlist-item-image {
    display: block;
    width: 94px;
    height: 94px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--surface-soft);
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-info {
    min-width: 0;
}

.wishlist-item-name {
    display: block;
    overflow: hidden;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wishlist-item-meta {
    display: block;
    margin: 7px 0 12px;
    color: #737e8d;
    font-size: .76rem;
}

.wishlist-item-price {
    color: var(--primary-blue);
    font-size: 1.05rem;
}

.wishlist-item-action {
    display: flex;
    align-items: center;
    gap: 18px;
}

.wishlist-stock {
    color: #20a34a;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.wishlist-stock.is-out {
    color: #a4aab4;
}

.wishlist-item-action .btn {
    min-width: 135px;
    min-height: 42px;
    border-radius: 999px;
}

/* Reference-style cart rows with a clear table header and roomy summary. */
.cart-page #cart-root>.row>.col-lg-8 {
    padding: 0 22px 8px;
    border: 1px solid rgba(33, 90, 218, .13);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(29, 56, 107, .07);
}

.cart-page #cart-root>.row>.col-lg-8::before {
    display: block;
    padding: 18px 0 14px;
    border-bottom: 1px solid #e8edf5;
    color: #687384;
    content: 'Product                                      Quantity';
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: pre;
}

.cart-page .cart-item {
    grid-template-columns: 124px minmax(0, 1fr);
    margin: 0;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid #edf0f5;
    border-radius: 0;
    box-shadow: none;
}

.cart-page .cart-item:last-child {
    border-bottom: 0;
}



.cart-page .summary-card {
    background: #fff;
}

@media (max-width: 991px) {
    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .account-nav {
        display: flex;
        flex-wrap: wrap;
    }

    .account-nav-divider,
    .account-nav-secondary {
        display: none;
    }
}

@media (max-width: 767px) {
    .wishlist-content-head {
        display: block;
    }

    .wishlist-content-head .btn {
        margin-top: 15px;
    }

    .wishlist-item {
        grid-template-columns: 22px 70px minmax(0, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .wishlist-item-image {
        width: 70px;
        height: 70px;
    }

    .wishlist-item-action {
        grid-column: 2 / -1;
        justify-content: space-between;
        gap: 8px;
    }

    .wishlist-item-action .btn {
        min-width: 122px;
    }

    .cart-page #cart-root>.row>.col-lg-8 {
        padding: 0 15px 5px;
    }

    .cart-page #cart-root>.row>.col-lg-8::before {
        content: 'Your items';
    }

    .cart-page .cart-item {
        grid-template-columns: 84px minmax(0, 1fr);
    }
}

/* Cart pricing should follow the black editorial type treatment. */
.cart-page .cart-item strong,
.cart-page .summary-row strong {
    color: var(--text-primary);
}



@media (max-width: 767px) {
    .rbt-search-dropdown[data-site-search] {
        top: calc(var(--campaign-bar-height, 0px) + 66px);
        right: 10px;
        left: 10px;
        max-height: calc(100svh - var(--campaign-bar-height, 0px) - 82px);
        overflow-y: auto;
        border: 1px solid var(--color-brand-300, #d3e1f8);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 16px 32px rgba(14, 25, 50, .18);
    }

    .rbt-search-dropdown[data-site-search] .wrapper {
        margin: 0;
        padding: 18px 14px 16px;
    }

    .rbt-search-dropdown[data-site-search] .header-search-close {
        top: 12px !important;
        right: 12px !important;
        left: auto !important;
        width: 34px;
        height: 34px;
    }

    .rbt-search-dropdown[data-site-search] .rbt-component-section-title {
        padding-right: 42px !important;
        text-align: left !important;
    }

    body {
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav {
        position: fixed;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        left: 10px;
        z-index: 1050;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 8px 6px;
        border: 1px solid var(--color-brand-300, #d3e1f8);
        border-radius: 20px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 12px 32px rgba(14, 25, 50, .18);
        backdrop-filter: blur(18px) saturate(130%);
    }

    .mobile-bottom-nav-item {
        position: relative;
        display: flex;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        min-height: 50px;
        border-radius: 14px;
        color: var(--color-gray-500, #555);
        font-size: .62rem;
        font-weight: 600;
        text-decoration: none;
        transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    .mobile-bottom-nav-item i {
        font-size: 1.05rem;
        line-height: 1;
    }

    .mobile-bottom-nav-item.active {
        background: var(--color-brand-200, #e9f1fc);
        color: var(--color-primary, #215ada);
    }

    .mobile-bottom-nav-item.active::after {
        position: absolute;
        bottom: 4px;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--color-secondary, #ff4c1a);
        content: '';
    }

    .mobile-bottom-nav-item:active {
        transform: scale(.96);
    }

    .site-main-nav .navbar-toggler {
        display: grid;
        width: 46px;
        height: 46px;
        place-items: center;
        padding: 0;
        border: 1px solid rgba(33, 90, 218, .12);
        border-radius: 14px;
        background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
        color: var(--color-primary, #215ada);
        box-shadow: 0 8px 18px rgba(33, 90, 218, .12);
    }

    :focus {
        border-color: #215ada;
    }

    .site-main-nav .navbar-collapse {
        position: fixed;
        inset: 72px 10px calc(88px + env(safe-area-inset-bottom)) 10px;
        max-height: none;
        overflow-y: auto;
        margin-top: 0;
        padding: 12px;
        border: 1px solid rgba(33, 90, 218, .12);
        border-radius: 24px;
        background:
            radial-gradient(circle at top left, rgba(33, 90, 218, .1), transparent 34%),
            linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, rgba(247, 250, 255, .99) 100%);
        box-shadow: 0 18px 48px rgba(14, 25, 50, .18);
        backdrop-filter: blur(18px) saturate(130%);
    }

    .site-main-nav .site-nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px !important;
        padding: 6px;
    }

    .site-main-nav .nav-link,
    .site-main-nav .nav-icon-link {
        min-height: 58px;
        padding: 12px 12px;
        border: 1px solid rgba(33, 90, 218, .12);
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
        box-shadow: 0 6px 14px rgba(14, 25, 50, .05);
        color: var(--color-heading, #000);
    }

    .site-main-nav .nav-link.active,
    .site-main-nav .nav-icon-link:focus-visible,
    .site-main-nav .nav-link:focus-visible,
    .site-main-nav .nav-icon-link:active,
    .site-main-nav .nav-link:active {
        border-color: var(--color-brand-300, #d3e1f8);
        background: linear-gradient(180deg, #eaf2ff 0%, #dce9ff 100%);
        color: var(--color-primary, #215ada);
    }

    .site-main-nav .nav-link.active::after {
        right: auto;
        bottom: 6px;
        left: 12px;
        width: 18px;
        height: 2px;
        background: var(--color-secondary, #ff4c1a);
    }

    .site-main-nav .nav-icon-link {
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        height: auto;
        padding-left: 12px;
    }

    .site-main-nav .nav-icon-link .ui-icon {
        display: none;
    }

    .site-main-nav .nav-link {
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
    }

    .site-main-nav .nav-mobile-icon {
        display: inline-grid;
        place-items: center;
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        border-radius: 10px;
        background: rgba(33, 90, 218, .09);
        color: var(--color-primary, #215ada);
        font-size: .95rem;
    }

    .site-main-nav .nav-login-btn,
    .site-main-nav .user-menu {
        grid-column: 1 / -1;
    }

    .site-main-nav .nav-login-btn {
        width: 100%;
        margin: 0;
        min-height: 46px;
        border-radius: 18px;
        background: linear-gradient(180deg, #215ada 0%, #1748b5 100%);
        box-shadow: 0 10px 24px rgba(33, 90, 218, .18);
    }

    .site-main-nav .user-menu {
        margin: 0;
    }

    .site-main-nav .user-menu-toggle {
        width: 100%;
        min-height: 56px;
        justify-content: flex-start;
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
        box-shadow: 0 6px 14px rgba(14, 25, 50, .05);
    }

    .site-main-nav .user-menu-label small {
        font-size: .68rem;
    }

    .site-main-nav .user-menu-label strong {
        font-size: .9rem;
    }

    .site-main-nav .user-menu-dropdown {
        position: static;
        width: 100%;
        margin-top: 12px;
        padding: 8px;
        border-radius: 18px;
        box-shadow: inset 0 1px 0 rgba(33, 90, 218, .05);
    }

    .site-main-nav .user-menu-dropdown::before {
        display: none;
    }

    .site-main-nav .user-menu-dropdown a,
    .site-main-nav .user-menu-dropdown button {
        min-height: 46px;
        border-radius: 12px;
    }

    .site-main-nav .user-menu-dropdown-head {
        padding: 2px 6px 10px;
    }

    .site-main-nav .user-menu-dropdown-head strong {
        font-size: .95rem;
    }

    .site-main-nav .nav-divider {
        display: none;
    }

 

  
  

   
}

.auth-nav-pending [data-login-link],
.auth-nav-pending [data-user-menu] {
    visibility: hidden;
}

.counts-pending .cart-count,
.counts-pending .wishlist-count {
    visibility: hidden;
}

/* Final override for the compact ready-to-ship card. */
.product-buy-panel .product-availability {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 520px;
    min-height: 84px;
    margin: 24px 0 22px;
    padding: 15px 17px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fff;
    color: #282c32;
    box-shadow: 0 2px 8px rgba(29, 35, 44, .04);
}

.product-buy-panel .availability-status-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid #215ada;
    border-radius: 50%;
    background: #e9f1fc;
    color: #215ada;
    font-size: 17px;
}

.product-buy-panel .availability-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.product-buy-panel .availability-kicker {
    display: block;
    color: #215ada;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
}

.product-buy-panel .availability-copy strong {
    color: #282c32;
    font-size: 14px;
}

.product-buy-panel .availability-copy small {
    display: block;
    overflow: hidden;
    color: #737b86;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-buy-panel .availability-live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-left: auto;
    border-radius: 50%;
    background: #215ada;
    box-shadow: 0 0 0 4px #e8f8ee;
}

.product-buy-panel .product-availability.out {
    border-color: #f0d4d4;
    background: #fffafa;
}

.product-buy-panel .product-availability.out .availability-status-icon,
.product-buy-panel .product-availability.out .availability-kicker {
    border-color: #f1c4c4;
    background: #fff1f1;
    color: #c92c38;
}

.product-buy-panel .product-availability.out .availability-copy strong,
.product-buy-panel .product-availability.out .availability-copy small {
    color: #8f4b52;
}

@media (max-width: 575px) {
    .product-buy-panel .product-availability {
        min-height: 78px;
        margin: 20px 0;
        padding: 13px;
    }

    .product-buy-panel .availability-copy small {
        white-space: normal;
    }
}

/* Final mobile product-detail polish. */
@media (max-width: 767px) {
    .product-page {
        padding-bottom: 76px;
    }

    .product-detail-shell {
        padding-bottom: 96px;
    }

    .buy-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
        align-items: stretch;
        width: 100%;
    }

    .buy-actions .quantity-control {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        min-height: 52px;
        justify-content: space-between;
    }

    .buy-actions .wishlist-detail-button {
        grid-column: 2;
        grid-row: 1;
        width: 52px;
        height: 52px;
        justify-self: end;
        flex-basis: auto;
    }

    .buy-actions>.buy-button:not(.buy-now-button) {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        min-width: 0;
        min-height: 52px;
        padding: 0 12px;
        font-size: .86rem;
        white-space: nowrap;
    }

    .buy-actions .buy-now-button {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        min-width: 0;
        min-height: 52px;
        padding: 0 12px;
        font-size: .86rem;
        white-space: nowrap;
    }

    .product-trust-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 20px;
    }

    .product-trust-row span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        gap: 5px;
        font-size: .64rem;
        line-height: 1.25;
        text-align: center;
    }

    .product-trust-row span i {
        flex: 0 0 auto;
    }

    .product-spec-accordion {
        margin-bottom: 24px;
    }
}




.user-menu {
    position: relative;
}

.user-menu-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 1060;
    width: 290px;
    padding: 12px;
    border: 1px solid rgba(33, 90, 218, .12);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    box-shadow: 0 22px 42px rgba(14, 25, 50, .16);
}

.user-menu:hover .user-menu-dropdown,
.user-menu.is-open .user-menu-dropdown {
    display: block;
}

.user-menu-dropdown-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 4px 4px 12px;
    border-bottom: 1px solid rgba(33, 90, 218, .1);
}

.user-menu-dropdown-head strong {
    display: block;
    font-size: .95rem;
}

.user-menu-auth,
.user-menu-guest {
    display: none;
}

.user-menu-auth.is-visible,
.user-menu-guest.is-visible {
    display: grid;
    /* gap: 8px; */
}

.user-menu-auth a,
.user-menu-auth button,
.user-menu-guest a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: inherit;
    text-align: left;
}

.user-menu-auth a:hover,
.user-menu-auth button:hover,
.user-menu-guest a:hover {
    background: #e9f1fc;
    color: var(--terracotta);
}

.user-menu-guest {
    padding-top: 2px;
}

.user-menu-guest p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.4;
}

.search-results-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.search-results-list li {
    min-height: 64px;
    padding: 12px 14px;
    border: 1px solid rgba(33, 90, 218, .1);
    border-radius: 18px;
    background: #fff;
}

.form-control,
.form-select {
    padding: 13px 17px;
    border-color: #e6e6e6;
    border-radius: 6px;
    font-size: 15px;
    color: #555555;

    background: #f3f3f3;
}

input[type=date]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
textarea:focus {
    border-color: #215ada;
}

.form-select:focus {
    border-color: #215ada;
    outline: 4;
    box-shadow: none;
}

.rbt-rating-select-wrap {
    position: relative;
}

.rbt-rating-select-wrap::after {
    /* content: ""; */
    position: absolute;
    right: 18px;
    top: 45%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.rbt-rating-select-wrap .rbt-contact-input-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding-right: 30px;
}

button.btn.btn-dark-pill.px-3.short-category-btn {
    border-radius: 10px;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #000000;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}
/* Custom Toast Styles (Premium Modern) */
#toast-container {
    position: fixed !important;
    bottom: 40px !important;
    top: auto !important;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 999999 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast-item {
    background-color: #18181b !important; /* Premium dark background */
    color: #ffffff !important;
    min-width: 320px !important;
    max-width: 450px !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1) !important;
    display: flex !important;
    align-items: center !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    pointer-events: auto !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: none !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.toast-item.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.toast-item.hide {
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

/* Premium Left Accent Border */
.toast-item::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 4px !important;
    border-radius: 4px 0 0 4px !important;
}

.toast-success::before {
    background: #10b981 !important;
}

.toast-error::before {
    background: #ef4444 !important;
}

.toast-icon {
    font-size: 20px !important;
    margin-right: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 32px !important;
    width: 32px !important;
    border-radius: 50% !important;
}

.toast-success .toast-icon {
    color: #10b981 !important;
    background: rgba(16, 185, 129, 0.15) !important;
}

.toast-error .toast-icon {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.15) !important;
}

.toast-msg {
    flex: 1 !important;
    line-height: 1.5 !important;
    color: #f4f4f5 !important;
    letter-spacing: 0.3px !important;
}

.toast-close {
    background: transparent !important;
    border: none !important;
    color: #a1a1aa !important;
    font-size: 18px !important;
    cursor: pointer !important;
    padding: 8px !important;
    margin-right: -8px !important;
    margin-left: auto !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 30px;
    width: 30px;
}

.toast-close:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.toast-item::after {
    display: none !important;
}
