/* ===== Variables ===== */
:root {
    --color-dark: #03021c;
    --color-orange: #ff8a00;
    --color-orange-dark: #e85d04;
    --color-gold: #f5b800;
    --color-blue: #1a6fd4;
    --color-cream: #f5f1ec;
    --gradient-orange: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    --btn-radius: 8px;
    --color-white: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.65);
    --color-text-muted: #6b7280;
    --font-sans: "Inter", "Manrope", system-ui, sans-serif;
    --font-serif: "Playfair Display", Georgia, serif;
    --hero-height: clamp(280px, 45vw, 700px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-sans);
    color: var(--color-dark);
    background: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Top bar ===== */
.top-bar {
    background: var(--gradient-orange);
    color: var(--color-white);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
}

.top-bar a {
    color: var(--color-white);
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.85;
    color: var(--color-white);
}

.top-bar__contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.top-bar__contact span,
.top-bar__contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

/* ===== Main header ===== */
.main-header {
    background: var(--color-dark);
    padding: 0.85rem 0;
}

.main-header .navbar {
    padding: 0;
}

.main-header .navbar-brand img {
    height: 52px;
    width: auto;
}

.main-header .navbar-nav .nav-link {
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem !important;
    position: relative;
}

.main-header .navbar-nav .nav-link.active,
.main-header .navbar-nav .nav-link:hover {
    color: var(--color-gold);
}

.main-header .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--color-gold);
}

.header-search {
    position: relative;
    max-width: 220px;
}

.header-search .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border-radius: 999px;
    padding: 0.45rem 2.25rem 0.45rem 1rem;
    font-size: 0.875rem;
}

.header-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.header-search .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    box-shadow: none;
}

.header-search__icon {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions a {
    color: var(--color-white);
    font-size: 1.15rem;
    position: relative;
}

.header-actions a:hover {
    color: var(--color-gold);
}

.header-actions .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header country picker */
.header-country-dropdown {
    position: relative;
}

.header-country-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--color-white);
    font-size: 1.15rem;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

.header-country-toggle::after {
    display: none;
}

.header-country-toggle:hover,
.header-country-toggle:focus,
.header-country-toggle.show {
    color: var(--color-gold);
}

.header-country-menu {
    max-height: min(360px, 70vh);
    overflow-y: auto;
    min-width: 240px;
    padding: 0.35rem 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(3, 2, 28, 0.14);
}

.header-country-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--color-dark);
    white-space: nowrap;
}

.header-country-item:hover,
.header-country-item:focus {
    background: #f5f1ec;
    color: var(--color-dark);
}

.header-country-item.active {
    background: rgba(245, 130, 32, 0.12);
    color: var(--color-dark);
    font-weight: 600;
}

.header-country-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.header-country-flag--all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    font-size: 1rem;
    line-height: 1;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ===== Hero / Banner ===== */
.hero-section {
    position: relative;
}

.hero-section .owl-carousel {
    width: 100%;
    margin-bottom: 0;
}

.hero-section .owl-carousel .owl-stage-outer {
    height: var(--hero-height);
}

.hero-section .owl-carousel .owl-item,
.hero-section .owl-carousel .item,
.hero-section .owl-carousel .banner-slide {
    height: var(--hero-height);
}

.hero-section .owl-carousel .item img,
.hero-section .owl-carousel .banner-slide video {
    display: block;
    width: 100%;
    height: var(--hero-height);
    object-fit: cover;
}

.hero-section .video-slide {
    position: relative;
    overflow: hidden;
}

.hero-section .video-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .banner-slide--content {
    position: relative;
    overflow: hidden;
}

.hero-section .banner-slide--content img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-slide__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.banner-slide__content .container {
    display: flex;
    align-items: center;
}

.banner-slide__inner {
    max-width: 560px;
    padding: 1rem 0;
}

.banner-slide__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.banner-slide__tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

.banner-slide__title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 3.8vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin: 0 0 0.35rem;
}

.banner-slide__title .text-accent {
    color: var(--color-orange);
}

.banner-slide__subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.15rem, 2.4vw, 1.75rem);
    color: var(--color-white);
    margin: 0 0 1rem;
    line-height: 1.25;
}

.banner-slide__desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.6;
    max-width: 440px;
    margin: 0 0 1.5rem;
}

.banner-slide__inner .btn-gradient {
    padding: 0.75rem 1.65rem;
}
@media screen and (min-width: 991px) and (max-width: 1400px) {
    .main-header .navbar-brand img {
        height: 34px;
    }
    .main-header .navbar-nav .nav-link {
        font-size: 0.7375rem;
        padding: 0.5rem 0.4rem !important;
    }
    .header-search{
        max-width: 190px;
    }
    .header-country-toggle, .header-actions a {
        font-size: 0.9rem;
    }
}
@media (max-width: 767.98px) {
    .banner-slide__content .container {
        padding-left: 1rem;
        padding-right: 3rem;
    }

    .banner-slide__inner {
        max-width: 85%;
    }

    .banner-slide__desc {
        margin-bottom: 1.15rem;
    }
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55) !important;
    color: #fff !important;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 24px !important;
    line-height: 1 !important;
}

.owl-nav .owl-prev {
    left: 14px;
}

.owl-nav .owl-next {
    right: 14px;
}

/* ===== Features strip ===== */
.features-strip {
    background: var(--color-dark);
    padding: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.35rem;
}

.feature-item h5 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.feature-item p {
    color: var(--color-muted);
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1.45;
}

/* ===== Category ticker (marquee) ===== */
.category-ticker {
    background: var(--color-blue);
}

.category-ticker__inner.container-fluid {
    --bs-gutter-x: 0;
    padding: 1rem 20px;
    overflow: hidden;
    max-width: 100%;
}

.category-ticker__viewport {
    overflow: hidden;
    width: 100%;
}

.category-ticker__track {
    display: flex;
    width: max-content;
    animation: category-ticker-scroll 35s linear infinite;
}

.category-ticker__track:hover {
    animation-play-state: paused;
}

.category-ticker__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 2.5rem;
}

.category-ticker__group a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: color 0.2s;
}

.category-ticker__group a:hover {
    color: var(--color-gold);
}

.category-ticker__sep {
    margin: 0 0.75rem;
    color: var(--color-white);
    opacity: 0.7;
    font-size: 0.5rem;
    line-height: 1;
    user-select: none;
}

@keyframes category-ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .category-ticker__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .category-ticker__group[aria-hidden="true"] {
        display: none;
    }

    .category-ticker__group {
        padding-right: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 0;
    }
}

/* ===== Inner banner (all inner pages except home, sign-in, sign-up) ===== */
.inner-banner {
    background: var(--color-dark);
    padding: 2.75rem 0 3.25rem;
    position: relative;
    overflow: hidden;
}

.inner-banner::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.inner-banner::after {
    content: "";
    position: absolute;
    top: -30%;
    left: -12%;
    width: 45%;
    height: 120%;
    background: radial-gradient(circle, rgba(88, 40, 120, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.inner-banner .container {
    position: relative;
    z-index: 1;
}

.inner-banner__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: 0.8125rem;
}

.inner-banner__breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
}

.inner-banner__breadcrumb li + li::before {
    content: ">";
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.inner-banner__breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.inner-banner__breadcrumb a:hover {
    color: var(--color-white);
}

.inner-banner__breadcrumb li[aria-current="page"] {
    color: var(--color-orange);
}

.inner-banner__badge--accent {
    color: var(--color-orange);
}

.inner-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.inner-banner__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

.inner-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin: 0 0 1rem;
    max-width: 720px;
}

.inner-banner__title .text-accent {
    color: var(--color-orange);
}

.inner-banner__desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.65;
    margin: 0;
    max-width: 640px;
}

@media (max-width: 767.98px) {
    .inner-banner {
        padding: 2rem 0 2.5rem;
    }

    .inner-banner__title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
}

/* ===== About page — Why we started ===== */
.about-story {
    background: var(--color-cream);
    padding: 4.5rem 0 5rem;
}

.about-story__media {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.about-story__media img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(3, 2, 28, 0.1);
}

.about-story__stat {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    max-width: 200px;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(3, 2, 28, 0.12);
}

.about-story__stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-orange);
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.about-story__stat span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-dark);
}

.about-story__content .section-title {
    margin-bottom: 0.75rem;
}

.about-story__praise {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--color-orange);
    margin: 0 0 1.25rem;
    line-height: 1.35;
}

.about-story__praise em {
    color: var(--color-dark);
    font-style: italic;
    font-weight: 600;
}

.about-story__text {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-story__text:last-child {
    margin-bottom: 0;
}

/* ===== About page — Four pillars ===== */
.about-pillars {
    background: var(--color-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-pillars::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-pillars .container {
    position: relative;
    z-index: 1;
}

.about-pillars .section-title {
    color: var(--color-white);
    margin-bottom: 2.5rem;
}

.about-pillars__grid {
    text-align: left;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: border-color 0.2s, background 0.2s;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 138, 0, 0.25);
}

.pillar-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 1.15rem;
}

.pillar-card__title {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.65rem;
}

.pillar-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

@media (max-width: 991.98px) {
    .about-story__media {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .about-story {
        padding: 3rem 0 3.5rem;
    }

    .about-story__stat {
        right: 0.75rem;
        bottom: 0.75rem;
        max-width: 170px;
    }

    .about-pillars {
        padding: 3.5rem 0;
    }
}

/* ===== Shop by categories ===== */
.shop-categories {
    background: var(--color-cream);
    padding: 4.5rem 0 5rem;
}

.shop-categories--page {
    padding-top: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.2;
}

.section-title .text-accent {
    color: var(--color-orange);
}

.shop-categories__intro {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 420px;
    margin-left: auto;
    text-align: right;
}

/* Shop category masonry grid — matches design layout */
.shop-cat-grid {
    --shop-cat-gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr)) minmax(0, 0.88fr);
    gap: var(--shop-cat-gap);
    grid-template-areas:
        "cat1 cat2 cat3"
        "cat1 cat4 cat5"
        "cat6 cat7 cat7";
    width: 100%;
    min-height: 720px;
    height: clamp(680px, 52vw, 860px);
}

.shop-cat-card--cat1 { grid-area: cat1; }
.shop-cat-card--cat2 { grid-area: cat2; }
.shop-cat-card--cat3 { grid-area: cat3; }
.shop-cat-card--cat4 { grid-area: cat4; }
.shop-cat-card--cat5 { grid-area: cat5; }
.shop-cat-card--cat6 { grid-area: cat6; }
.shop-cat-card--cat7 { grid-area: cat7; }

.shop-cat-grid > .shop-cat-card {
    position: relative;
    display: block;
    align-self: stretch;
    justify-self: stretch;
    min-width: 0;
    min-height: 0;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
}

.shop-cat-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.shop-cat-card:hover img {
    transform: scale(1.05);
}

.shop-cat-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(3, 2, 28, 0) 35%,
        rgba(3, 2, 28, 0.55) 70%,
        rgba(3, 2, 28, 0.88) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem 1.5rem;
    pointer-events: none;
}

.shop-cat-card__count {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.shop-cat-card__name {
    font-family: var(--font-sans);
    color: var(--color-white);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.shop-cat-card--cat7 .shop-cat-card__name {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    max-width: 28rem;
}

@media (min-width: 992px) {
    .shop-cat-grid {
        grid-template-rows: 278px 278px 252px;
        height: auto;
        min-height: 0;
    }
}

@media (min-width: 1200px) {
    .shop-cat-grid {
        grid-template-rows: 300px 300px 268px;
    }
}
/* ONLY FOR THIS SECTION - NO IMPACT ON OTHER PAGES */

.shop-cat-grid--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Equal height cards */
.shop-cat-grid--3col .shop-cat-card {
    position: relative;
    height: 100%;
    min-height: 260px; /* adjust if needed */
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

/* Image fit properly */
.shop-cat-grid--3col .shop-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay stays same (no change in design) */
.shop-cat-grid--3col .shop-cat-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: #fff;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6),
        transparent
    );
}

/* Responsive */
@media (max-width: 991px) {
    .shop-cat-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .shop-cat-grid--3col {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* ===== By the numbers ===== */
.stats-section {
    background: var(--color-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .section-title {
    color: var(--color-white);
    margin-bottom: 2.5rem;
}

.stats-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    gap: 0.75rem;
}

.stats-divider__line {
    flex: 1;
    height: 0;
    border-top: 2px dotted rgba(26, 111, 212, 0.75);
}

.stats-divider__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(26, 111, 212, 0.85);
    font-size: 0.75rem;
}

.stats-section__labels {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    padding: 0 1rem;
}

.stat-item__line {
    width: 36px;
    height: 3px;
    background: var(--color-orange);
    margin: 0 auto 0.85rem;
    border-radius: 2px;
}

.stat-item__value {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 0.5rem;
}

.stat-item__label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

/* ===== Bringing Africa ===== */
.about-section {
    background: var(--color-cream);
    padding: 5rem 0;
}

.about-image-wrap {
    position: relative;
    max-width: 520px;
}

.about-image-wrap__main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(3, 2, 28, 0.12);
}

.about-image-wrap__main img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--gradient-orange);
    color: var(--color-white);
    border-radius: 14px;
    padding: 1rem 1.15rem;
    text-align: center;
    box-shadow: 0 12px 28px rgba(255, 138, 0, 0.35);
}

.about-badge strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge span {
    font-size: 0.75rem;
    font-weight: 600;
}

.about-play {
    position: absolute;
    bottom: 24px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(3, 2, 28, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 0.5rem 0.85rem 0.5rem 0.5rem;
    color: var(--color-white);
    font-size: 0.8125rem;
    backdrop-filter: blur(6px);
}

.about-play__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    padding-left: 2px;
}

.about-content .section-title {
    margin-bottom: 1rem;
}

.about-content__text {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.9375rem;
}

.about-list li i {
    color: var(--color-orange);
    margin-top: 0.15rem;
    font-size: 1.1rem;
}

.btn-gradient {
    background: var(--gradient-orange);
    color: var(--color-white) !important;
    border: none;
    border-radius: var(--btn-radius);
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gradient:hover {
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.35);
}

.btn-outline-light-custom {
    background: var(--color-white);
    color: var(--color-dark) !important;
    border: 1px solid #e5e7eb;
    border-radius: var(--btn-radius);
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.btn-outline-light-custom:hover {
    background: #f3f4f6;
    color: var(--color-dark) !important;
}

/* ===== Blog listing ===== */
.blog-page {
    background: var(--color-cream);
}

.blog-featured {
    padding: 3rem 0 2rem;
}

.blog-featured__card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-featured__media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    box-shadow: 0 20px 40px rgba(3, 2, 28, 0.1);
}

.blog-featured__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-featured__card:hover .blog-featured__media img {
    transform: scale(1.03);
}

.blog-featured__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--gradient-orange);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.blog-featured__body {
    padding: 1.5rem 0 1.5rem 2rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.blog-meta__tag {
    display: inline-block;
    background: rgba(3, 2, 28, 0.06);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.blog-meta__date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.blog-meta__date i {
    font-size: 0.7rem;
}

.blog-featured__title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 0 0 1rem;
}

.blog-featured__title .text-accent {
    color: var(--color-orange);
}

.blog-featured__excerpt {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-dark);
    transition: color 0.2s, gap 0.2s;
}

.blog-featured__card:hover .blog-link,
.blog-card:hover .blog-link {
    color: var(--color-orange);
    gap: 0.65rem;
}

.blog-grid {
    padding: 1rem 0 4.5rem;
}

.blog-card {
    display: block;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(3, 2, 28, 0.06);
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(3, 2, 28, 0.1);
}

.blog-card__media {
    overflow: hidden;
}

.blog-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.04);
}

.blog-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.blog-card__title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-dark);
    margin: 0;
}

/* ===== Blog detail ===== */
.blog-article {
    background: var(--color-cream);
    padding: 3rem 0 4rem;
}

.blog-article__hero {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 48px rgba(3, 2, 28, 0.1);
}

.blog-article__hero img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.blog-article__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-dark);
    margin: 0 0 1.5rem;
    max-width: 820px;
}

.blog-article__title .text-accent {
    color: var(--color-orange);
}

.blog-article__content {
    width: 100%;
}

.blog-article__content p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.blog-article__content p:last-child {
    margin-bottom: 0;
}

.blog-article__content h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--color-dark);
    margin: 2rem 0 0.75rem;
}

/* Blog detail sidebar */
.blog-sidebar {
    position: sticky;
    top: 1.5rem;
}

.blog-sidebar__block {
    background: var(--color-white);
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 28px rgba(3, 2, 28, 0.06);
}

.blog-sidebar__title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 1rem;
}

.blog-sidebar__categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-sidebar__categories a {
    display: inline-block;
    background: rgba(3, 2, 28, 0.06);
    color: var(--color-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.blog-sidebar__categories a:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

.blog-sidebar__posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar__posts li + li {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(3, 2, 28, 0.08);
}

.blog-sidebar__posts a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-sidebar__posts a:hover .blog-sidebar__post-title {
    color: var(--color-orange);
}

.blog-sidebar__post-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.blog-sidebar__post-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.blog-sidebar__cta {
    background: var(--color-dark);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--color-white);
}

.blog-sidebar__cta-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--color-white);
}

.blog-sidebar__cta p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.blog-sidebar__cta .btn-gradient {
    width: 100%;
    justify-content: center;
}

.blog-related {
    padding: 0 0 4rem;
    background: var(--color-cream);
}

.blog-related .section-title {
    margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
    .blog-featured__body {
        padding: 1.75rem 0 0;
    }

    .blog-featured__media {
        min-height: 280px;
        margin-bottom: 0;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (min-width: 768px) {
    .blog-featured__body {
        padding: 1.5rem 0 1.5rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .blog-featured__body {
        padding: 1.5rem 0 1.5rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .blog-featured {
        padding: 2rem 0 1rem;
    }

    .blog-grid {
        padding-bottom: 3rem;
    }
}

/* ===== Become a vendor ===== */
.vendor-benefits {
    background: var(--color-white);
    padding: 4rem 0;
    margin-top: -1px;
}

.vendor-benefit {
    background: var(--color-white);
    border-radius: 16px;
    padding: 1.5rem 1.35rem;
    height: 100%;
    box-shadow: 0 8px 32px rgba(3, 2, 28, 0.06);
    border: 1px solid rgba(3, 2, 28, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.vendor-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(3, 2, 28, 0.09);
}

.vendor-benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-orange);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1.15rem;
}

.vendor-benefit__title {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem;
}

.vendor-benefit__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

.vendor-steps {
    background: var(--color-dark);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vendor-steps::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(255, 138, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.vendor-steps .container {
    position: relative;
    z-index: 1;
}

.vendor-steps .section-tag {
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}

.vendor-steps__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 3rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.vendor-step__num {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: #6ec4d8;
    margin-bottom: 0.75rem;
}

.vendor-step__title {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.5rem;
}

.vendor-step__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.vendor-apply {
    background: var(--color-cream);
    padding: 4.5rem 0 5rem;
}

.vendor-apply__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 0 0 1.75rem;
}

.vendor-apply__title .text-accent {
    color: var(--color-orange);
}

.vendor-apply__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vendor-apply__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.vendor-apply__list li:last-child {
    margin-bottom: 0;
}

.vendor-apply__check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 0.1rem;
}

.vendor-form-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 40px rgba(3, 2, 28, 0.08);
    border: 1px solid rgba(3, 2, 28, 0.04);
}

.vendor-form .form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.35rem;
}

.vendor-form .form-control,
.vendor-form .form-select {
    border: 1px solid #e5e7eb;
    border-radius: var(--btn-radius);
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
}

.vendor-form .form-control:focus,
.vendor-form .form-select:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15);
}

.vendor-form .form-control::placeholder {
    color: #9ca3af;
}

.vendor-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.vendor-form .btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--btn-radius);
    background: var(--gradient-orange);
    color: var(--color-white);
    transition: transform 0.2s, box-shadow 0.2s;
}

.vendor-form .btn-submit:hover {
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.35);
}

@media (max-width: 991.98px) {
    .vendor-step__text {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .vendor-benefits {
        padding: 3rem 0;
    }

    .vendor-steps {
        padding: 3.5rem 0;
    }

    .vendor-steps__title {
        margin-bottom: 2rem;
    }

    .vendor-apply {
        padding: 3rem 0 3.5rem;
    }

    .vendor-form-card {
        margin-top: 2rem;
    }
}

/* ===== Contact page ===== */
.contact-cards {
    background: var(--color-white);
    padding: 3.5rem 0 2rem;
    margin-top: -1px;
}

.contact-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 1.5rem 1.35rem;
    height: 100%;
    box-shadow: 0 8px 32px rgba(3, 2, 28, 0.06);
    border: 1px solid rgba(3, 2, 28, 0.04);
    transition: transform 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(3, 2, 28, 0.09);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-card__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.contact-card__main {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
    text-decoration: none;
}

a.contact-card__main:hover {
    color: var(--color-orange);
}

.contact-card__sub {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-main {
    background: var(--color-cream);
    padding: 2rem 0 5rem;
}

.contact-side {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    box-shadow: 0 20px 48px rgba(3, 2, 28, 0.12);
}

.contact-side__img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.contact-side__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1.75rem;
    background: linear-gradient(to top, rgba(3, 2, 28, 0.92) 0%, rgba(3, 2, 28, 0.4) 55%, transparent 100%);
}

.contact-side__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.contact-side__title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.contact-side__title .text-accent {
    color: var(--color-orange);
}

.contact-side__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 320px;
}

.contact-form-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 40px rgba(3, 2, 28, 0.08);
    border: 1px solid rgba(3, 2, 28, 0.04);
    height: 100%;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e5e7eb;
    border-radius: var(--btn-radius);
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15);
}

.contact-form .form-control::placeholder {
    color: #9ca3af;
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn-submit {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--btn-radius);
    background: var(--gradient-orange);
    color: var(--color-white);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form .btn-submit:hover {
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.35);
}

@media (max-width: 991.98px) {
    .contact-side {
        min-height: 360px;
        margin-bottom: 0.5rem;
    }

    .contact-side__img {
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .contact-cards {
        padding: 2.5rem 0 1.5rem;
    }

    .contact-main {
        padding: 1.5rem 0 3.5rem;
    }
}

/* ===== Auth (sign-in / sign-up) ===== */
.page-auth .main-header {
    margin-bottom: 0;
}

.auth-split {
    display: flex;
    flex-wrap: wrap;
    min-height: min(720px, calc(100vh - 140px));
}

.auth-split__col {
    flex: 1 1 100%;
    min-height: 420px;
}

.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    padding: 3rem 1.5rem;
}

.auth-form-panel__inner {
    width: 100%;
    max-width: 400px;
}

.auth-form-panel .section-tag {
    margin-bottom: 0.5rem;
}

.auth-form-panel__title {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.auth-form-panel__sub {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: 0 0 1.75rem;
}

.auth-form-panel__sub a {
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
}

.auth-form-panel__sub a:hover {
    text-decoration: underline;
}

.auth-form .form-control {
    border: 1px solid #e5e7eb;
    border-radius: var(--btn-radius);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}

.auth-form .form-control:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15);
}

.auth-form .form-control::placeholder {
    color: #9ca3af;
}

.auth-form__password-wrap {
    position: relative;
}

.auth-form__password-wrap .form-control {
    padding-right: 2.75rem;
}

.auth-form__toggle-pw {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: var(--color-text-muted);
    padding: 0;
    cursor: pointer;
    line-height: 1;
}

.auth-form__toggle-pw:hover {
    color: var(--color-dark);
}

.auth-form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.auth-form__check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.auth-form__check input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--color-orange);
}

.auth-form__check a {
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
}

.auth-form__check a:hover {
    text-decoration: underline;
}

.auth-form__forgot {
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.auth-form__forgot:hover {
    text-decoration: underline;
}

.auth-form .btn-auth {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--btn-radius);
    background: var(--gradient-orange);
    color: var(--color-white);
    transition: transform 0.2s, box-shadow 0.2s;
}

.auth-form .btn-auth:hover {
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.35);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.auth-social {
    display: flex;
    gap: 0.75rem;
}

.auth-social__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: var(--btn-radius);
    transition: border-color 0.2s, background 0.2s;
}

.auth-social__btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    color: var(--color-dark);
}

.auth-visual-panel {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 2rem;
}

.auth-visual-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 2, 28, 0.88) 0%, rgba(3, 2, 28, 0.45) 45%, rgba(3, 2, 28, 0.25) 100%);
}

.auth-visual-panel__content {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.auth-visual-panel--signup {
    background-image: url("../images/signup-bg.png");
}

.auth-visual-panel--signin {
    background-image: url("../images/login-bg.png");
}

.auth-visual-panel .inner-banner__badge {
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-visual__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0 0 1rem;
}

.auth-visual__title .text-accent {
    color: var(--color-orange);
}

.auth-visual__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 1.5rem;
}

.auth-visual__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-visual__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.85rem;
    line-height: 1.45;
}

.auth-visual__list li:last-child {
    margin-bottom: 0;
}

.auth-visual__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-orange);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 0.1rem;
}

.auth-journey {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.auth-journey__step {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.45rem 0.5rem;
    border-radius: 999px;
    background: #f3f4f6;
    color: var(--color-text-muted);
}

.auth-journey__step--active {
    background: rgba(255, 138, 0, 0.12);
    color: var(--color-orange);
}

.auth-journey__step--done {
    background: rgba(3, 2, 28, 0.06);
    color: var(--color-dark);
}

.auth-form-panel__hint {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: -0.75rem 0 1.5rem;
}

.auth-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.auth-back:hover {
    color: var(--color-orange);
}

.auth-success {
    text-align: left;
}

.auth-success__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.12);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.auth-success__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.5rem;
}

.auth-success p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
}

.auth-success p a {
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
}

.auth-success p a:hover {
    text-decoration: underline;
}

.auth-success .btn-auth {
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .auth-split__col {
        flex: 1 1 50%;
        min-height: 560px;
    }

    .auth-form-panel {
        padding: 3.5rem 2.5rem;
    }

    .page-signup .auth-form-col {
        order: 1;
    }

    .page-signup .auth-visual-col {
        order: 2;
    }

    .page-forgot .auth-visual-col,
    .page-reset .auth-visual-col,
    .page-signin .auth-visual-col {
        order: 1;
    }

    .page-forgot .auth-form-col,
    .page-reset .auth-form-col,
    .page-signin .auth-form-col {
        order: 2;
    }
}

@media (max-width: 991.98px) {
    .auth-split {
        min-height: auto;
    }

    .auth-visual-panel {
        min-height: 320px;
        align-items: flex-end;
    }
}

/* ===== Newsletter ===== */
.newsletter-section {
    background: url("../images/footer-top-bg.png") center / cover no-repeat;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 2, 28, 0.55);
}

.newsletter-section .container {
    position: relative;
    z-index: 1;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.newsletter-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
}

.newsletter-section .section-title {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.newsletter-section__sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.newsletter-form .form-control {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    background: rgba(3, 2, 28, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--btn-radius);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.4;
    min-height: 48px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-form .form-control:focus {
    background: rgba(3, 2, 28, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    box-shadow: none;
}

.newsletter-form .btn-subscribe {
    background: var(--gradient-orange);
    color: var(--color-white);
    border: none;
    border-radius: var(--btn-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    white-space: nowrap;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.newsletter-form .btn-subscribe:hover {
    color: var(--color-white);
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.35);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-dark);
    color: var(--color-muted);
    padding: 4rem 0 0;
    font-size: 0.875rem;
}

.site-footer .footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 0.35rem;
}

.site-footer .footer-tagline {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.site-footer__brand p {
    line-height: 1.65;
    max-width: 280px;
}

.site-footer h6 {
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 0.55rem;
}

.site-footer ul a {
    color: var(--color-muted);
    transition: color 0.2s;
}

.site-footer ul a:hover {
    color: var(--color-white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-contact i {
    color: var(--color-orange);
    margin-top: 0.2rem;
    width: 16px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    font-size: 0.8125rem;
}

.site-footer__bottom a {
    color: var(--color-muted);
    margin-left: 1.25rem;
}

.site-footer__bottom a:hover {
    color: var(--color-white);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .main-header .navbar-collapse {
        padding-top: 1rem;
    }

    .header-search {
        max-width: 100%;
        margin: 0.75rem 0;
    }

    .shop-categories__intro {
        text-align: left;
        margin-left: 0;
        margin-top: 1rem;
        max-width: none;
    }

    .about-image-wrap {
        margin: 0 auto 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .top-bar__links {
        justify-content: flex-start;
        margin-top: 0.35rem;
    }

    .feature-item {
        margin-bottom: 0.5rem;
    }

    .shop-cat-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-template-areas:
            "cat1 cat1"
            "cat2 cat3"
            "cat4 cat5"
            "cat6 cat6"
            "cat7 cat7";
        height: auto;
        min-height: 0;
        gap: 16px;
    }

    .shop-cat-grid > .shop-cat-card {
        min-height: 200px;
        height: auto;
        aspect-ratio: auto;
    }

    .shop-cat-card--cat1 {
        min-height: 320px;
        aspect-ratio: auto;
    }

    .shop-cat-card--cat7 {
        min-height: 200px;
        aspect-ratio: 21 / 9;
    }

    .newsletter-section {
        padding: 3.5rem 0;
    }

    .newsletter-section .section-title {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
        padding: 0 0.5rem;
    }

    .newsletter-section__sub {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.65rem;
        max-width: 100%;
        width: 100%;
        padding: 0 0.25rem;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn-subscribe {
        width: 100%;
        flex: none;
        min-height: 48px;
    }

    .site-footer__bottom .text-md-end {
        text-align: left !important;
        margin-top: 0.75rem;
    }

    .site-footer__bottom a {
        margin-left: 0;
        margin-right: 1rem;
    }
}

/* ===== Auth UI (topbar user + logout modal) ===== */
.top-bar__auth-guest {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
}

.top-bar__user {
    display: inline-block;
}

.top-bar__user-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    max-width: min(220px, 55vw);
}

.top-bar__user-btn::after {
    margin-left: 0.15rem;
}

.top-bar__user-btn:hover,
.top-bar__user-btn:focus,
.top-bar__user-btn.show {
    background: rgba(255, 255, 255, 0.22);
    color: var(--color-white);
}

.top-bar__user-btn i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.top-bar__user-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-bar__user-dropdown {
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(3, 2, 28, 0.45);
    padding: 0.4rem;
    min-width: 168px;
    margin-top: 0.5rem !important;
}

.top-bar__user-dropdown .dropdown-item {
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.55rem 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    transition: background 0.2s, color 0.2s;
}

.top-bar__user-dropdown .dropdown-item:hover,
.top-bar__user-dropdown .dropdown-item:focus {
    background: rgba(255, 138, 0, 0.18);
    color: var(--color-gold);
}

.top-bar__user-dropdown .dropdown-item:active {
    background: rgba(255, 138, 0, 0.28);
    color: var(--color-white);
}

.top-bar__user-dropdown .dropdown-item[data-logout-trigger] {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar__user-dropdown .dropdown-item[data-logout-trigger]:hover,
.top-bar__user-dropdown .dropdown-item[data-logout-trigger]:focus {
    background: rgba(255, 138, 0, 0.12);
    color: var(--color-orange);
}

.header-actions__link--locked {
    opacity: 0.55;
    cursor: pointer;
}

.is-logged-in .header-actions__link--locked {
    opacity: 1;
}

/* ===== Osubare popups & modals (project-wide theme) ===== */
.modal-backdrop.show {
    opacity: 0.72;
    background-color: var(--color-dark);
}

.osubare-modal .modal-content,
.logout-modal .modal-content {
    background: linear-gradient(165deg, #0a0828 0%, var(--color-dark) 55%, #120f2e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    padding: 0.25rem;
    color: var(--color-white);
}

.osubare-modal .modal-body,
.logout-modal .modal-body {
    padding: 2rem 1.75rem 1.75rem;
}

.osubare-modal__message,
.logout-modal__message {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 1.5rem;
    line-height: 1.4;
}

.osubare-modal__actions,
.logout-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.osubare-modal__btn,
.logout-modal__btn {
    min-width: 110px;
    font-weight: 700;
    border-radius: var(--btn-radius);
    padding: 0.65rem 1.35rem;
    font-size: 0.9375rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.osubare-modal__btn:hover,
.logout-modal__btn:hover {
    transform: translateY(-1px);
}

.btn-osubare-modal-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.btn-osubare-modal-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--color-white);
}

.osubare-modal .btn-auth,
.logout-modal .btn-auth {
    border: none;
    background: var(--gradient-orange);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.35);
}

.osubare-modal .btn-auth:hover,
.logout-modal .btn-auth:hover {
    color: var(--color-white);
    box-shadow: 0 10px 28px rgba(255, 138, 0, 0.45);
}

.account-page {
    background: var(--color-cream);
    padding: 4rem 0 5rem;
}

.account-empty {
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(3, 2, 28, 0.06);
    max-width: 520px;
    margin: 0 auto;
}

.account-empty__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.12);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}

.account-empty h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}

.account-empty p {
    color: var(--color-text-muted);
    margin: 0 0 1.5rem;
}

/* ===== Shop listing page ===== */
.inner-banner--shop {
    padding: 2.5rem 0 2.75rem;
}

.inner-banner__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-orange);
}

.inner-banner__title--solo {
    margin: 0;
    max-width: none;
}

.shop-listing {
    background: #f3f4f6;
    padding: 2rem 0 2.5rem;
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    background: var(--color-white);
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 1rem 1.15rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(3, 2, 28, 0.04);
}

.shop-toolbar__search {
    flex: 1 1 180px;
    min-width: 0;
}

.shop-toolbar__search .form-control {
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-size: 0.875rem;
    color: var(--color-dark);
    background: #fafafa;
}

.shop-toolbar__search .form-control:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.15);
}

.shop-toolbar__filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    flex: 2 1 320px;
}

.shop-toolbar__select {
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0.55rem 2rem 0.55rem 1rem;
    font-size: 0.8125rem;
    color: #4b5563;
    background-color: #fafafa;
    min-width: 0;
    flex: 1 1 140px;
    max-width: 50%;
}

.shop-toolbar__select:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.12);
}

.shop-toolbar__views {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
}

.shop-view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--color-white);
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.shop-view-btn:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.shop-view-btn.is-active {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.shop-products {
    display: grid;
    gap: 1.25rem;
}

.shop-products--grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-products--list {
    grid-template-columns: 1fr;
}

.product-card {
    background: var(--color-white);
    border: 1px solid #eceef1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(3, 2, 28, 0.08);
    transform: translateY(-2px);
}

.product-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9fafb;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__wishlist {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: color 0.2s, transform 0.2s;
}

.product-card__wishlist:hover {
    color: var(--color-orange);
    transform: scale(1.05);
}

.product-card__body {
    padding: 1rem 1rem 1.1rem;
}

.product-card__brand {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 0.35rem;
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-dark);
    margin: 0 0 0.85rem;
    min-height: 2.7em;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-card__price {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
}

.product-card__add {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    border-radius: 999px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.product-card__add:hover {
    background: #1a1838;
}

.product-card__add--added {
    background: #15803d;
}

/* List view */
.shop-products--list .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: stretch;
}

.shop-products--list .product-card__media {
    aspect-ratio: auto;
    min-height: 180px;
}

.shop-products--list .product-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem 1.5rem;
}

.shop-products--list .product-card__title {
    min-height: 0;
    margin-bottom: 0.5rem;
}

.shop-products--list .product-card__footer {
    margin-top: auto;
}

.shop-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.75rem;
    padding: 1rem 1.25rem;
    background: #eceef1;
    border-radius: 10px;
}

.shop-pagination__info {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.shop-pagination__info strong {
    color: var(--color-dark);
    font-weight: 600;
}

.shop-pagination__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.shop-pagination__link,
.shop-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-dark);
    border-left: 1px solid #d1d5db;
    transition: background 0.2s, color 0.2s;
}

.shop-pagination__nav > *:first-child {
    border-left: none;
}

.shop-pagination__link {
    color: var(--color-orange);
}

.shop-pagination__link:hover {
    color: var(--color-orange-dark);
}

.shop-pagination__page.is-active {
    background: var(--color-orange);
    color: var(--color-white);
}

.shop-pagination__page:hover:not(.is-active) {
    background: rgba(255, 138, 0, 0.12);
}

@media (max-width: 1199.98px) {
    .shop-products--grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .shop-products--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-toolbar__select {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .shop-listing {
        padding: 1.25rem 0 2rem;
    }

    .shop-toolbar {
        padding: 0.85rem;
    }

    .shop-toolbar__views {
        width: 100%;
        margin-left: 0;
        justify-content: flex-end;
    }

    .shop-products--list .product-card {
        grid-template-columns: 120px 1fr;
    }

    .shop-products--list .product-card__media {
        min-height: 140px;
    }

    .shop-pagination {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .shop-products--grid {
        grid-template-columns: 1fr;
    }

    .shop-products--list .product-card {
        grid-template-columns: 1fr;
    }

    .shop-products--list .product-card__media {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }
}

/* Product card links */
a.product-card__media {
    display: block;
    color: inherit;
}

.product-card__title a {
    color: inherit;
    transition: color 0.2s;
}

.product-card__title a:hover {
    color: var(--color-orange);
}

/* ===== Product details ===== */
.product-details-section {
    background: #f3f4f6;
    padding: 2rem 0 2.75rem;
}

.product-details-card {
    background: var(--color-white);
    border: 1px solid #eceef1;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(3, 2, 28, 0.06);
    margin-bottom: 2.5rem;
}

.product-gallery {
    width: 100%;
}

.product-gallery__zoom-wrap {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    contain: layout style;
}

.product-details-section .col-lg-6:first-child {
    overflow: visible;
}

.product-gallery__main {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fafb;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Main image magnifier (shop-details) — no layout reflow on hover */
.product-gallery__zoom {
    position: relative;
    z-index: 1;
    cursor: crosshair;
    touch-action: manipulation;
    isolation: isolate;
}

.product-gallery__zoom--touch {
    cursor: zoom-in;
}

.product-gallery__zoom--touch.is-mobile-zoomed {
    cursor: zoom-out;
}

.product-gallery__zoom-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 34%;
    height: 34%;
    pointer-events: none;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(3, 2, 28, 0.12), 0 4px 16px rgba(3, 2, 28, 0.15);
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.product-gallery__zoom.is-zooming .product-gallery__zoom-lens {
    opacity: 1;
    visibility: visible;
}

/* Preview box: absolutely positioned, never shifts page layout */
.product-gallery__zoom-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 100%;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
}

.product-gallery__zoom-wrap.is-zooming .product-gallery__zoom-box {
    visibility: visible;
    opacity: 1;
    /* Never capture pointer — avoids cursor overlap loop with main image */
    pointer-events: none;
}

.product-gallery__zoom-pane {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid #eceef1;
    background-color: #f9fafb;
    background-repeat: no-repeat;
    background-position: 0 0;
    box-shadow: 0 4px 20px rgba(3, 2, 28, 0.1);
    overflow: hidden;
    contain: strict;
    pointer-events: none;
}

.product-gallery__zoom-hint {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    display: none;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(3, 2, 28, 0.62);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    pointer-events: none;
    z-index: 3;
}

.product-gallery__zoom-hint i {
    font-size: 0.75rem;
}

.product-gallery__zoom--touch .product-gallery__zoom-hint {
    display: inline-flex;
}

.product-gallery__zoom-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(3, 2, 28, 0.88);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.product-gallery__zoom-lightbox.is-active {
    opacity: 1;
}

.product-gallery__zoom-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.product-gallery__zoom-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.product-gallery__zoom-lightbox-stage {
    width: min(92vw, 520px);
    max-height: 80vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    background: #f9fafb;
}

.product-gallery__zoom-lightbox-stage img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(var(--mobile-zoom-scale, 3));
    transform-origin: var(--zoom-origin-x, 50%) var(--zoom-origin-y, 50%);
    transition: transform 0.2s ease, transform-origin 0.05s linear;
    will-change: transform, transform-origin;
}

body.product-zoom-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .product-gallery__zoom-box {
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .product-gallery__zoom--hover {
        cursor: zoom-in;
    }
}

@media (min-width: 992px) {
    .product-gallery__zoom-hint {
        display: none !important;
    }
}

.product-gallery__thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0;
}

.product-gallery__thumbs {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.35rem, 1.2vw, 0.65rem);
    width: 100%;
    min-width: 0;
    padding: 0.15rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.product-gallery__thumb {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    aspect-ratio: 1 / 1;
    height: auto;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: #f3f4f6;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__thumb.is-active {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 1px var(--color-orange);
}

.product-gallery__nav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-gallery__nav:hover {
    border-color: var(--color-dark);
}

.product-details-info__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--color-dark);
}

.product-details-info__category {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1rem;
}

.product-details-info__category span {
    color: var(--color-dark);
}

.product-details-info__price {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-orange);
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eceef1;
}

.product-details-info__short {
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 1.25rem;
}

.product-details-info__qty-row {
    margin-bottom: 1.25rem;
}

.product-details-info__qty-label {
    display: block;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.product-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-white);
}

.product-qty__btn {
    width: 42px;
    height: 42px;
    border: none;
    background: #f9fafb;
    font-size: 1.125rem;
    cursor: pointer;
    color: var(--color-dark);
}

.product-qty__btn:hover {
    background: #f3f4f6;
}

.product-qty__value {
    min-width: 48px;
    text-align: center;
    font-weight: 600;
}

.btn-product-cart {
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: var(--gradient-orange);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.75rem;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-product-cart:hover {
    opacity: 0.92;
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-product-cart:disabled {
    opacity: 0.75;
    transform: none;
}

.product-details-info__desc h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
}

.product-details-info__desc p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.related-products__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: var(--color-dark);
}

.shop-products--related {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ===== Cart page ===== */
.cart-page {
    background: #f3f4f6;
    padding: 2rem 0 2.5rem;
}

.cart-empty {
    text-align: center;
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem 1.5rem;
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.05);
}

.cart-empty__icon {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.cart-empty h2 {
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1rem 1.25rem;
    align-items: center;
    background: var(--color-white);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.05);
}

.cart-item__remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
}

.cart-item__remove:hover {
    color: var(--color-dark);
}

.cart-item__image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f9fafb;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__brand {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 0.25rem;
}

.cart-item__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    padding-right: 1.5rem;
    color: var(--color-dark);
}

.cart-item__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item__qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f9fafb;
    cursor: pointer;
    font-size: 1rem;
}

.cart-item__qty-value {
    min-width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.cart-item__price {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    white-space: nowrap;
}

.order-summary {
    background: var(--color-dark);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.order-summary__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.order-summary__rows {
    margin: 0 0 1rem;
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.9375rem;
}

.order-summary__row dt {
    margin: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.order-summary__row dd {
    margin: 0;
    font-weight: 600;
}

.order-summary__muted {
    color: rgba(255, 255, 255, 0.55) !important;
    font-weight: 400 !important;
}

.order-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.order-summary__total strong {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.order-summary__promo {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.order-summary__promo .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-radius: 8px;
}

.order-summary__promo .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.btn-promo {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--color-white);
    border-radius: 8px;
    padding: 0 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-checkout,
.btn-place-order {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: var(--gradient-orange);
    color: var(--color-white);
    font-weight: 700;
    transition: opacity 0.2s;
}

.btn-checkout:hover,
.btn-place-order:hover {
    opacity: 0.92;
    color: var(--color-white);
}

.cart-trust__card {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background: var(--color-white);
    border-radius: 12px;
    padding: 0.85rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(3, 2, 28, 0.04);
}

.cart-trust__card i {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.cart-trust__card strong {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.3;
}

.cart-trust__card span {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ===== Checkout ===== */
.checkout-page {
    background: #f3f4f6;
    padding: 2rem 0 2.5rem;
}

.checkout-forms {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.05);
}

.checkout-panel + .checkout-panel {
    border-top: 1px solid #eceef1;
}

.checkout-panel__head {
    background: #f3f4f6;
    padding: 0.85rem 1.25rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.checkout-panel__body {
    padding: 1.25rem;
}

.checkout-panel__body .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.checkout-panel__body .form-label .text-danger {
    color: #dc2626;
}

.checkout-panel__body .form-control,
.checkout-panel__body .form-select {
    border-radius: 8px;
    border-color: #e5e7eb;
    font-size: 0.875rem;
    padding: 0.6rem 0.85rem;
}

.checkout-phone-wrap {
    display: flex;
    gap: 0.5rem;
}

.checkout-phone-wrap .form-select {
    max-width: 110px;
    flex-shrink: 0;
}

.checkout-billing-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.875rem;
    color: #16a34a;
    font-weight: 500;
}

.checkout-billing-check input {
    accent-color: #16a34a;
    width: 18px;
    height: 18px;
}

.btn-place-order {
    max-width: 220px;
    margin-top: 0.5rem;
}

@media (max-width: 991.98px) {
    .shop-products--related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .cart-item__price {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .product-details-card {
        padding: 1rem;
    }

    .product-gallery__nav {
        display: none;
    }

    .product-gallery__thumbs-wrap {
        gap: 0;
    }

    .product-gallery__thumbs {
        justify-content: space-between;
        gap: 0.4rem;
    }

    .product-gallery__thumb {
        flex: 1 1 0;
        min-width: 52px;
    }

    .btn-product-cart {
        max-width: none;
    }
}

@media (min-width: 768px) {
    .product-gallery__thumb {
        min-height: 72px;
    }
}

@media (max-width: 575.98px) {
    .shop-products--related {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 72px 1fr;
        padding-top: 2rem;
    }

    .cart-item__image {
        width: 72px;
        height: 72px;
    }
}

/* ===== Wishlist ===== */
.header-actions .wishlist-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__wishlist.is-active {
    color: var(--color-orange);
}

.product-card__wishlist.is-active i {
    color: var(--color-orange);
}

.wishlist-page {
    background: #f5f1ec;
    padding: 2rem 0 2.75rem;
}

.wishlist-empty {
    text-align: center;
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem 1.5rem;
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.05);
}

.wishlist-empty__icon {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.shop-products--wishlist {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wishlist-card__remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.wishlist-card__remove:hover {
    color: var(--color-orange);
}

/* ===== Profile ===== */
.profile-hero {
    background: var(--color-dark);
    padding: 2rem 0;
}

.profile-hero__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.profile-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.profile-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.35rem;
}

.profile-hero__title span {
    color: var(--color-orange);
}

.profile-hero__email {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

.btn-profile-signout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: transparent;
    color: var(--color-white);
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.btn-profile-signout:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.profile-page {
    background: #f5f1ec;
    padding: 2rem 0 2.75rem;
}

.profile-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: var(--color-white);
    border-radius: 14px;
    padding: 0.75rem;
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.05);
}

.profile-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s, color 0.2s;
}

.profile-sidebar__link i {
    width: 1.1rem;
    text-align: center;
}

.profile-sidebar__link:hover {
    color: var(--color-dark);
    background: #f9fafb;
}

.profile-sidebar__link.is-active {
    background: var(--color-dark);
    color: var(--color-white);
}

.profile-offcanvas {
    background: var(--color-dark);
    color: var(--color-white);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.profile-offcanvas .offcanvas-title {
    color: var(--color-white);
    font-weight: 700;
}

.profile-offcanvas .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: 0.85;
}

.profile-offcanvas .offcanvas-body {
    padding: 0.75rem;
}

.profile-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--color-white);
    border-radius: 14px;
    padding: 1rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(3, 2, 28, 0.04);
}

.profile-stat-card i {
    color: var(--color-orange);
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

.profile-stat-card strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--color-dark);
}

.profile-stat-card span {
    font-size: 0.75rem;
    color: #6b7280;
}

.profile-card {
    background: var(--color-white);
    border-radius: 14px;
    padding: 1.25rem;
    margin-top: 1.25rem;
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.05);
}

.profile-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profile-card__head h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0;
}

.profile-card__link {
    color: var(--color-orange);
    font-size: 0.875rem;
    font-weight: 600;
}

.profile-payment-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.25rem;
    padding: 0 0.25rem;
}

.profile-card .wishlist_table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.875rem;
    text-align: left;
}

.profile-card .wishlist_table thead th {
    background: var(--color-cream);
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #ebe8e3;
    white-space: nowrap;
}

.profile-card .wishlist_table thead th .nobr {
    display: inline-block;
}

.profile-card .wishlist_table tbody td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #f0f0f2;
    color: #374151;
    vertical-align: middle;
}

.profile-card .wishlist_table tbody tr:hover td {
    background: #faf9f7;
}

.profile-card .wishlist_table tbody tr:last-child td {
    border-bottom: none;
}

.profile-card .wishlist_table td b a {
    color: var(--color-orange);
    font-weight: 700;
    text-decoration: none;
}

.profile-card .wishlist_table td b a:hover {
    color: var(--color-orange-dark);
    text-decoration: underline;
}

.profile-card .wishlist_table .product-price,
.profile-card .wishlist_table tbody td:nth-child(5),
.profile-card .wishlist_table tbody td:nth-child(7) {
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
}

.profile-card .wishlist_table tbody td:nth-child(2) {
    font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
    font-size: 0.75rem;
    color: #6b7280;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-card .wishlist_table__product {
    max-width: 220px;
    min-width: 140px;
}

.profile-orders-list {
    display: flex;
    flex-direction: column;
}

.profile-order-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f2;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background 0.2s;
}

.profile-order-row:hover {
    background: #faf9f7;
}

.profile-order-row:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
}

.profile-orders-empty {
    margin: 0;
    padding: 1rem 0;
    color: #6b7280;
    font-size: 0.9375rem;
}

.profile-orders-empty a {
    color: var(--color-orange);
    font-weight: 600;
}

.profile-card__link--muted {
    color: #9ca3af;
    pointer-events: none;
}

.profile-order-modal__meta {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.profile-order-modal__list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    border-top: 1px solid #f0f0f2;
}

.profile-order-modal__item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f0f0f2;
    font-size: 0.9rem;
}

.profile-order-modal__total {
    margin: 0;
    font-size: 1.05rem;
    text-align: right;
}

.profile-order-modal .modal-title {
    font-family: var(--font-display, 'Playfair Display', serif);
}

.profile-order-row:last-child {
    border-bottom: none;
}

.profile-order-row__info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-dark);
}

.profile-order-row__info span {
    font-size: 0.8125rem;
    color: #9ca3af;
}

.profile-order-row__price {
    font-weight: 700;
    color: var(--color-dark);
}

.profile-order-row__link {
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 0.9rem;
    padding: 0.25rem;
    cursor: pointer;
}

.order-status {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.order-status--delivered {
    background: #dcfce7;
    color: #15803d;
}

.order-status--shipped {
    background: #ffedd5;
    color: #c2410c;
}

.order-status--processing {
    background: #f3f4f6;
    color: #6b7280;
}

.profile-cta {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    border-radius: 14px;
    padding: 1.15rem;
    height: 100%;
    min-height: 110px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.profile-cta:hover {
    transform: translateY(-2px);
    color: inherit;
}

.profile-cta i {
    font-size: 1.35rem;
    margin-top: 0.15rem;
}

.profile-cta strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.profile-cta span {
    font-size: 0.8125rem;
    opacity: 0.85;
}

.profile-cta--dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.profile-cta--dark i {
    color: var(--color-orange);
}

.profile-cta--light {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.06);
}

.profile-cta--light i {
    color: var(--color-orange);
}

.profile-cta--orange {
    background: var(--gradient-orange);
    color: var(--color-white);
}

.profile-cta--orange i {
    color: var(--color-white);
}

/* ===== Manage Profile Section ===== */
.manage-profile-card {
    background: var(--color-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(3, 2, 28, 0.05);
}

.manage-profile-header {
    background: var(--color-dark);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--color-white);
}

.manage-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--color-white);
    padding: 3px;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.manage-profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.manage-profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.manage-profile-email {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.manage-profile-body {
    padding: 1.5rem;
}

.manage-profile-section-title {
    font-size: 1.75rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.manage-profile-info {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.manage-profile-info li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1rem;
}

.manage-profile-info li:last-child {
    border-bottom: none;
}

.manage-profile-info li strong {
    color: #374151;
    min-width: 120px;
}

.manage-profile-info li span {
    color: #6b7280;
}

.manage-profile-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-profile-action {
    background: var(--color-dark);
    color: var(--color-white) !important;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    min-width: 140px;
    transition: opacity 0.2s;
}

.btn-profile-action:hover {
    opacity: 0.9;
}

.btn-profile-action.btn-change-pw {
    background: #03021c; /* Slightly different dark from image */
}

@media (max-width: 575.98px) {
    .manage-profile-actions {
        flex-direction: column;
    }
    .btn-profile-action {
        width: 100%;
    }
    .manage-profile-section-title {
        font-size: 1.5rem;
    }
    .manage-profile-info li strong {
        min-width: 100%;
    }
}

.profile-cta-row {
    margin-top: 1.25rem;
}

@media (max-width: 991.98px) {
    .shop-products--wishlist {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-order-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }

    .profile-order-row__price {
        grid-column: 2;
        grid-row: 1;
    }

    .profile-order-row__link {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
    }

    .order-status {
        grid-column: 1;
        grid-row: 2;
        justify-self: start;
    }
}

@media (max-width: 575.98px) {
    .shop-products--wishlist {
        grid-template-columns: 1fr;
    }

    .profile-order-row {
        grid-template-columns: 1fr;
    }

    .profile-order-row__price,
    .profile-order-row__link,
    .order-status {
        grid-column: 1;
        grid-row: auto;
    }
}
.pageBanner {
 padding: 35px 0;
}