:root {
    color-scheme: light;
    --purple: #7357e6;
    --purple-dark: #1f1b2d;
    --purple-soft: #f0edff;
    --gold: #ff5d7d;
    --gold-soft: #fff0f4;
    --accent: #7357e6;
    --accent-dark: #5639c5;
    --black: #1a1724;
    --muted: #747083;
    --border: #ece9f3;
    --surface: #ffffff;
    --body: #f7f6fb;
}

[data-theme="dark"] {
    color-scheme: dark;
    --purple: #b9a8ff;
    --purple-dark: #f7efff;
    --purple-soft: #302a47;
    --gold: #ff7390;
    --gold-soft: rgba(255, 115, 144, 0.18);
    --accent: #9c82ff;
    --accent-dark: #c8bcff;
    --black: #fff8fc;
    --muted: #cdbfd4;
    --border: rgba(255, 255, 255, 0.13);
    --surface: #1c1426;
    --body: #0f0b16;
}

* {
    box-sizing: border-box;
}

body {
    background:
        linear-gradient(145deg, rgba(62, 47, 91, 0.06), transparent 34%),
        linear-gradient(180deg, var(--body) 0%, #f8eff6 100%);
    color: var(--black);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    transition: background 0.22s ease, color 0.22s ease;
}

[data-theme="dark"] body {
    background:
        radial-gradient(circle at 12% 0%, rgba(233, 69, 96, 0.13), transparent 30%),
        radial-gradient(circle at 86% 8%, rgba(188, 167, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #0f0b16 0%, #171020 100%);
}

a {
    text-decoration: none;
}

.bg-white {
    background-color: #fff7fb !important;
}

.text-primary,
.text-warning {
    color: var(--accent) !important;
}

.text-bg-warning {
    color: #fff !important;
    background: linear-gradient(135deg, #e94560, #3e2f5b) !important;
}

.text-bg-light {
    color: var(--purple-dark) !important;
    background-color: #f2e8f3 !important;
}

.badge {
    border-radius: 999px;
    font-weight: 850;
}

.app-navbar {
    background: rgba(255, 250, 253, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 34px rgba(62, 47, 91, 0.08);
}

.navbar-brand span {
    color: var(--purple-dark);
    font-weight: 800;
    font-size: 1.25rem;
}

.brand-text-first {
    flex-direction: row !important;
}

.navbar-brand-icon {
    display: inline-block !important;
    flex: 0 0 auto;
    order: 2;
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
    background: transparent;
    padding: 0;
    box-shadow: 0 10px 24px rgba(62, 47, 91, 0.18);
}

.brand-text-first span,
.footer-brand h5 {
    order: 1;
}

.navbar .nav-link {
    color: #40354e;
    font-weight: 600;
    border-radius: 999px;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--purple-dark);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.12), rgba(62, 47, 91, 0.1));
}

.theme-toggle {
    position: relative;
    overflow: hidden;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.48rem 0.78rem;
    border: 1px solid rgba(233, 69, 96, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--purple-dark);
    font-weight: 850;
    box-shadow: 0 12px 26px rgba(62, 47, 91, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus {
    transform: translateY(-2px);
    border-color: rgba(233, 69, 96, 0.42);
    box-shadow: 0 18px 34px rgba(62, 47, 91, 0.16);
}

.theme-toggle i,
.theme-toggle span {
    position: relative;
    z-index: 1;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.58rem 1rem;
    border-radius: 999px;
    border-width: 1px;
    font-weight: 850;
    letter-spacing: 0;
    box-shadow: 0 14px 30px rgba(74, 47, 134, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0));
    opacity: 0.68;
    pointer-events: none;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(74, 47, 134, 0.18);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled,
.btn.disabled {
    transform: none;
    box-shadow: none;
    opacity: 0.58;
}

.btn-sm {
    min-height: 36px;
    padding: 0.42rem 0.78rem;
    font-size: 0.88rem;
}

.btn-lg {
    min-height: 52px;
    padding: 0.75rem 1.25rem;
}

.btn.rounded-circle {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 50% !important;
}

.btn-sm.rounded-circle {
    width: 36px;
    height: 36px;
    min-height: 36px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #e94560 0%, #8b3f68 48%, #3e2f5b 100%);
    border-color: rgba(255, 255, 255, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, #ff6079 0%, #9a486f 45%, #3e2f5b 100%);
    border-color: rgba(255, 255, 255, 0.42);
}

.btn-outline-primary,
.btn-outline-dark,
.btn-outline-secondary {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(233, 69, 96, 0.34);
    color: var(--purple-dark);
    box-shadow: 0 12px 28px rgba(62, 47, 91, 0.1);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    color: #fff;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.92), rgba(62, 47, 91, 0.92));
    border-color: rgba(255, 255, 255, 0.38);
}

.btn-light {
    color: var(--purple-dark);
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(255, 255, 255, 0.74);
}

.btn-light:hover,
.btn-light:focus {
    color: var(--purple-dark);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.95);
}

.btn-warning {
    color: #fff;
    background: linear-gradient(135deg, #ff6b82 0%, #e94560 48%, #b92f49 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-warning:hover,
.btn-warning:focus {
    color: #fff;
    background: linear-gradient(135deg, #ff8295 0%, #e94560 50%, #a72740 100%);
}

.btn-success {
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #128c4a);
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-success:hover,
.btn-success:focus {
    color: #fff;
    background: linear-gradient(135deg, #34d977, #0f7d42);
}

.btn-danger,
.btn-outline-danger:hover,
.btn-outline-danger:focus {
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline-danger {
    color: #b91c1c;
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(239, 68, 68, 0.28);
}

.section-title {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-title .eyebrow,
.promo-products-header .eyebrow {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: var(--gold-soft);
    color: #7a520f;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-title h2 {
    font-weight: 850;
    color: var(--black);
}

.section-title p {
    color: var(--muted);
    margin-bottom: 0;
}

.hero-section {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.2), transparent 0 8%, transparent 28%),
        radial-gradient(circle at 22% 72%, rgba(233, 69, 96, 0.24), transparent 0 24%, transparent 44%),
        radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.1), transparent 0 18%, transparent 40%),
        linear-gradient(128deg, #171020 0%, #3e2f5b 58%, #e94560 132%);
    color: #fff;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 16, 32, 0.08) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(23, 16, 32, 0.06) 100%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

.hero-image-layout {
    grid-template-columns: minmax(0, 760px);
}

.hero-clean-layout {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.hero-showcase-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.74fr);
}

.hero-content {
    max-width: 680px;
    padding: 5rem 0 5.4rem;
}

.hero-content-centered {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered p {
    margin-left: auto;
    margin-right: auto;
}

.hero-content-centered .hero-actions,
.hero-content-centered .hero-stat {
    justify-content: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.42rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 34px rgba(23, 16, 32, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-kicker i {
    color: #ffb9c6;
}

.hero-content h1 {
    font-size: clamp(2.45rem, 4.8vw, 4.55rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.hero-stat {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.15rem;
}

.hero-stat span {
    min-width: 132px;
    padding: 0.92rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 36px rgba(23, 16, 32, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-stat strong {
    display: block;
    font-size: 1.38rem;
    color: #fff;
}

.hero-stat small {
    color: rgba(255, 255, 255, 0.78);
}

.home-page {
    background: #120b1d;
}

.home-page main > .container.pt-3 {
    padding-top: 0 !important;
}

.home-page .app-navbar {
    background: rgba(13, 8, 21, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.home-page .navbar-brand span,
.home-page .navbar .nav-link {
    color: rgba(255, 255, 255, 0.92);
}

.home-page .navbar-brand span {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.home-page .navbar-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.home-page .navbar .nav-link.active,
.home-page .navbar .nav-link:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.42), rgba(255, 255, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 24px rgba(0, 0, 0, 0.18);
}

.home-page .theme-toggle,
.home-page .navbar .btn-outline-primary,
.home-page .navbar .btn-outline-dark,
.home-page .navbar .btn-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.home-page .navbar .btn-primary {
    background: linear-gradient(135deg, #e94560 0%, #8b3f68 52%, #3e2f5b 100%);
}

.home-page .theme-toggle:hover,
.home-page .theme-toggle:focus,
.home-page .navbar .btn:hover,
.home-page .navbar .btn:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
}

.home-page .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.18);
}

.home-page .navbar-toggler-icon {
    filter: invert(1) grayscale(1);
}

.home-page .dropdown-menu {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(21, 14, 31, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.home-page .dropdown-item {
    color: rgba(255, 255, 255, 0.86);
}

.home-page .dropdown-item:hover,
.home-page .dropdown-item:focus {
    color: #fff;
    background: rgba(233, 69, 96, 0.22);
}

.home-page .hero-section {
    min-height: min(690px, calc(100vh - 72px));
    padding: 4.8rem 0 4.4rem;
    background:
        linear-gradient(90deg, rgba(18, 11, 29, 0.86) 0%, rgba(18, 11, 29, 0.64) 34%, rgba(18, 11, 29, 0.16) 66%, rgba(18, 11, 29, 0.04) 100%),
        linear-gradient(0deg, rgba(18, 11, 29, 0.34), rgba(18, 11, 29, 0.12)),
        url("../images/home-graduation-bear-bg.jpeg") center center / cover no-repeat;
    isolation: isolate;
}

.home-page .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 52%),
        linear-gradient(180deg, transparent 0%, rgba(18, 11, 29, 0.32) 100%);
    opacity: 0.72;
    pointer-events: none;
}

.home-page .hero-section::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 5, 14, 0.2), transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(248, 239, 246, 0.16) 100%);
}

.home-page .hero-clean-layout {
    grid-template-columns: minmax(0, 640px) minmax(280px, 0.72fr);
    justify-content: start;
}

.home-page .hero-content {
    max-width: 640px;
    padding: 2.8rem 0 1.2rem;
}

.home-page .hero-content-centered {
    max-width: 640px;
    margin: 0;
    text-align: left;
}

.home-page .hero-content-centered p {
    margin-left: 0;
    margin-right: 0;
}

.home-page .hero-content-centered .hero-actions,
.home-page .hero-content-centered .hero-stat {
    justify-content: flex-start;
}

.home-page .hero-kicker {
    margin-bottom: 2.8rem;
    padding: 0.38rem 0.82rem;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.075);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.86rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 16px 34px rgba(0, 0, 0, 0.18);
}

.home-page .hero-kicker i {
    color: #ffdbe2;
}

.home-page .hero-content h1 {
    max-width: 640px;
    margin: 0 0 2rem;
    font-size: clamp(2.85rem, 5.1vw, 4.65rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.home-page .hero-content p {
    max-width: 560px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.home-page .hero-actions {
    gap: 0.9rem;
    margin-top: 1.55rem;
}

.home-page .hero-actions .btn {
    min-width: 184px;
    min-height: 50px;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 18px 34px rgba(0, 0, 0, 0.22);
}

.home-page .hero-actions .btn-primary {
    background: linear-gradient(135deg, #ff6f86 0%, #e94560 38%, #4b315e 100%);
}

.home-page .hero-actions .btn-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.home-page .hero-actions .btn-light:hover,
.home-page .hero-actions .btn-light:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
}

.home-page .hero-stat {
    gap: 0.72rem;
    margin-top: 1.8rem;
}

.home-page .hero-stat span {
    min-width: 118px;
    padding: 0.78rem 0.88rem;
    border-color: rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 16px 34px rgba(0, 0, 0, 0.18);
}

.home-page .hero-stat strong {
    font-size: 1.15rem;
    line-height: 1.1;
}

.home-page .hero-stat small {
    display: block;
    margin-top: 0.28rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 800;
}

.home-promo-banner-section {
    position: relative;
    z-index: 3;
    margin-top: -2.1rem;
    padding: 0 0 3.25rem;
}

.home-promo-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1rem;
}

.home-promo-banner {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 1.1rem;
    align-items: center;
    min-height: 154px;
    padding: 0.78rem;
    color: var(--black);
    text-decoration: none;
    background: rgba(255, 250, 253, 0.94);
    border: 1px solid rgba(233, 69, 96, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(62, 47, 91, 0.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-promo-banner:hover,
.home-promo-banner:focus {
    color: var(--black);
    border-color: rgba(233, 69, 96, 0.28);
    box-shadow: 0 24px 54px rgba(62, 47, 91, 0.18);
    transform: translateY(-2px);
}

.home-promo-banner-media {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    background: var(--gold-soft);
}

.home-promo-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-promo-banner-copy {
    display: grid;
    gap: 0.48rem;
    min-width: 0;
}

.home-promo-banner-copy .eyebrow {
    width: fit-content;
    margin-bottom: 0.08rem;
    font-size: 0.78rem;
}

.home-promo-banner-copy strong {
    color: var(--black);
    font-size: 1.28rem;
    line-height: 1.15;
    font-weight: 900;
}

.home-promo-banner-copy > span:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.45;
}

.home-promo-banner-copy em {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.12rem;
    color: var(--accent);
    font-style: normal;
    font-weight: 900;
}

.promo-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: grid;
    place-items: center;
    padding: 1.2rem;
    background: rgba(18, 11, 29, 0.56);
    backdrop-filter: blur(18px) saturate(1.08);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.promo-popup-open {
    overflow: hidden;
}

.promo-popup-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.promo-popup-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
    gap: 1.45rem;
    width: min(100%, 850px);
    max-height: min(88vh, 640px);
    overflow: auto;
    padding: 1.05rem;
    color: var(--black);
    background: rgba(255, 250, 253, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 28px;
    box-shadow: 0 34px 86px rgba(18, 11, 29, 0.32);
    transform: translateY(14px) scale(0.97);
    transition: transform 0.22s ease;
    backdrop-filter: blur(24px) saturate(1.12);
    -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.promo-popup-backdrop.is-visible .promo-popup-card {
    transform: translateY(0) scale(1);
}

.promo-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(233, 69, 96, 0.14);
    border-radius: 999px;
    color: rgba(23, 16, 32, 0.76);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(62, 47, 91, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.18s ease, background 0.18s ease;
}

.promo-popup-close:hover,
.promo-popup-close:focus {
    background: rgba(255, 255, 255, 0.96);
    transform: scale(1.03);
}

.promo-popup-media {
    overflow: hidden;
    min-height: 330px;
    border-radius: 22px;
    background: var(--gold-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.promo-popup-media img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.promo-popup-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
    padding: 1.15rem 1rem 1.15rem 0;
}

.promo-popup-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(23, 16, 32, 0.78);
    font-size: 1rem;
    font-weight: 700;
}

.promo-popup-copy h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1;
    font-weight: 900;
}

.promo-popup-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.58;
}

.promo-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.82rem;
    margin-top: 0.45rem;
}

.promo-popup-actions .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-radius: 999px;
    font-weight: 900;
}

.promo-popup-actions .btn-primary {
    background: linear-gradient(135deg, #f0698a 0%, #8d3f73 100%);
    border-color: rgba(233, 69, 96, 0.48);
    box-shadow: 0 14px 28px rgba(141, 63, 115, 0.22);
}

.promo-popup-actions .btn-outline-secondary {
    color: rgba(23, 16, 32, 0.86);
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(233, 69, 96, 0.24);
}

.home-guide-section {
    background:
        linear-gradient(135deg, rgba(233, 69, 96, 0.08), transparent 34%),
        linear-gradient(180deg, #fff7fb 0%, #f8eff6 100%);
}

.guide-step-card {
    position: relative;
    height: 100%;
    padding: 1.3rem;
    border: 1px solid rgba(233, 69, 96, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(62, 47, 91, 0.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.guide-step-card span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #e94560, #3e2f5b);
    color: #fff;
    font-weight: 900;
}

.guide-step-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: var(--gold-soft);
    color: var(--accent);
    font-size: 1.45rem;
}

.guide-step-card h3 {
    color: var(--black);
    font-size: 1.08rem;
    font-weight: 900;
}

.guide-step-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.hero-logo-panel {
    position: relative;
    justify-self: end;
    width: min(100%, 480px);
}

.hero-logo-panel::before {
    content: none;
}

.hero-logo-card {
    position: relative;
    overflow: visible;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-align: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-logo-card::after {
    content: none;
}

.hero-logo-card img {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 150px;
    padding: 0.75rem;
    border-radius: 32px;
    background: rgba(255, 250, 253, 0.96);
    box-shadow: 0 22px 44px rgba(23, 16, 32, 0.22);
}

.hero-logo-card img.hero-logo-full {
    width: min(100%, 430px);
    height: auto;
    max-height: 470px;
    object-fit: contain;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 28px 34px rgba(23, 16, 32, 0.34));
}

.hero-logo-card div {
    position: relative;
    z-index: 1;
}

.hero-logo-card span {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.hero-logo-card small {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 750;
}

.hero-product-panel {
    position: relative;
    justify-self: end;
    width: min(100%, 470px);
}

.hero-product-panel::before {
    content: "";
    position: absolute;
    inset: 12% -10% -2% 2%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(233, 69, 96, 0.16) 42%, transparent 74%);
    filter: blur(9px);
}

.hero-product-visual {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    isolation: isolate;
    filter: drop-shadow(0 30px 54px rgba(23, 16, 32, 0.34));
}

.hero-product-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(62, 47, 91, 0.34), transparent 32%),
        linear-gradient(180deg, transparent 58%, rgba(23, 16, 32, 0.26));
    pointer-events: none;
    mix-blend-mode: multiply;
}

.hero-product-visual::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(62, 47, 91, 0.34), transparent 24%, transparent 78%, rgba(233, 69, 96, 0.16)),
        linear-gradient(180deg, rgba(62, 47, 91, 0.18), transparent 30%, rgba(23, 16, 32, 0.18));
    pointer-events: none;
}

.hero-product-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 86%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 86%, transparent 100%);
}

.hero-product-cutout {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 34px 40px rgba(23, 16, 32, 0.42));
}

.auth-logo-full {
    width: auto;
    max-width: 180px;
    height: 128px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(62, 47, 91, 0.18);
}

.promo-poster-card {
    position: relative;
    overflow: hidden;
    width: min(100%, 520px);
    justify-self: end;
    padding: 1.25rem;
    background:
        radial-gradient(circle at 88% 4%, rgba(217, 164, 65, 0.42), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 236, 255, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.27);
    color: var(--black);
}

.promo-poster-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -78px;
    top: -88px;
    border-radius: 50%;
    background: rgba(124, 77, 255, 0.12);
}

.promo-poster-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.promo-poster-header span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    background: var(--gold-soft);
    color: #7a520f;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
}

.promo-poster-header strong {
    color: var(--purple-dark);
    font-weight: 900;
}

.promo-poster-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.promo-discount {
    display: inline-flex;
    margin-bottom: 0.65rem;
    padding: 0.32rem 0.62rem;
    background: var(--purple-soft);
    color: var(--purple-dark);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.promo-poster-hero h2 {
    margin-bottom: 0.45rem;
    color: var(--black);
    font-size: 1.55rem;
    line-height: 1.1;
    font-weight: 900;
}

.promo-poster-hero p {
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.promo-price {
    color: var(--purple-dark);
    font-size: 1.4rem;
    font-weight: 900;
}

.promo-product-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-soft);
    border-radius: 8px;
}

.promo-product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0.9rem 0;
}

.promo-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.55rem 0.75rem;
    background: rgba(74, 47, 134, 0.09);
    color: var(--purple-dark);
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 900;
}

.promo-deal-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.promo-deal-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.7rem;
    color: var(--black);
    border-bottom: 1px solid var(--border);
}

.promo-deal-item:last-child {
    border-bottom: 0;
}

.promo-deal-item:hover {
    background: #fbfaff;
}

.promo-deal-item img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
}

.promo-deal-item strong {
    display: block;
    overflow: hidden;
    color: var(--black);
    font-size: 0.92rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promo-deal-item small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.promo-deal-item b {
    color: var(--purple-dark);
    font-size: 0.9rem;
    white-space: nowrap;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(62, 47, 91, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(62, 47, 91, 0.18);
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5ecf6;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.favorite-floating {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
}

.product-body {
    padding: 1rem;
}

.product-title {
    min-height: 48px;
    font-size: 1.04rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--black);
}

.product-price {
    color: var(--accent);
    font-weight: 900;
    font-size: 1.16rem;
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.stock-pill.available {
    background: #e9f8ef;
    color: #1c7b3c;
}

.stock-pill.empty {
    background: #fff0f0;
    color: #b32525;
}

.rating-stars {
    color: var(--accent);
    display: inline-flex;
    gap: 0.08rem;
}

.category-tile,
.feature-tile,
.contact-tile,
.stat-card,
.table-card,
.auth-panel,
.checkout-panel,
.cart-row,
.review-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(54, 39, 98, 0.07);
}

.category-tile {
    padding: 1.25rem;
    height: 100%;
    color: var(--black);
    transition: transform 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-3px);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--purple-soft);
    color: var(--purple-dark);
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
}

.home-category-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(62, 47, 91, 0.11), transparent 34%),
        linear-gradient(180deg, #fff8fb 0%, #f4e9f3 100%);
}

.home-category-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0%, transparent 52%, rgba(233, 69, 96, 0.13) 52%, rgba(233, 69, 96, 0.13) 68%, transparent 68%),
        linear-gradient(24deg, transparent 0%, transparent 72%, rgba(74, 47, 134, 0.08) 72%, rgba(74, 47, 134, 0.08) 88%, transparent 88%);
    pointer-events: none;
}

.home-category-section .container {
    position: relative;
    z-index: 1;
}

.home-category-section .category-tile {
    position: relative;
    min-height: 224px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 1.45rem;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 44px rgba(54, 39, 98, 0.11);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-category-section .category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 42%);
    pointer-events: none;
}

.home-category-section .category-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 69, 96, 0.28);
    box-shadow: 0 26px 58px rgba(54, 39, 98, 0.16);
}

.home-category-section .category-icon,
.home-category-section .category-copy,
.home-category-section .category-card-action {
    position: relative;
    z-index: 1;
}

.home-category-section .category-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(233, 69, 96, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 22px rgba(74, 47, 134, 0.1);
    backdrop-filter: blur(10px);
}

.home-category-section .category-copy h3 {
    margin-bottom: 0.55rem;
    color: #1f2115;
}

.home-category-section .category-copy p {
    color: #6f705f;
    margin-bottom: 1.1rem;
}

.category-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: fit-content;
    min-height: 40px;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 26px rgba(74, 47, 134, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-category-section .category-tile:hover .category-card-action {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.95), rgba(62, 47, 91, 0.95));
    color: #fff;
    transform: translateX(2px);
}

.home-bestseller-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 14%, rgba(233, 69, 96, 0.1), transparent 28%),
        radial-gradient(circle at 92% 24%, rgba(62, 47, 91, 0.12), transparent 30%),
        #fff7fb;
}

.home-bestseller-section::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.08), transparent);
    pointer-events: none;
}

.home-bestseller-section .container {
    position: relative;
    z-index: 1;
}

.featured-product-wrap {
    position: relative;
    height: 100%;
}

.featured-badge {
    position: absolute;
    z-index: 4;
    top: 0.85rem;
    left: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    padding: 0.34rem 0.68rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #e94560, #3e2f5b);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(23, 16, 32, 0.22);
}

.custom-gift-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(128deg, #21162f 0%, #3e2f5b 56%, #e94560 128%);
}

.custom-gift-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0%, transparent 58%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.08) 74%, transparent 74%);
    pointer-events: none;
}

.custom-gift-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 58px rgba(23, 16, 32, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.custom-gift-copy .eyebrow {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
}

.custom-gift-copy h2 {
    max-width: 720px;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 900;
}

.custom-gift-copy p {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.custom-gift-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.home-review-section {
    background:
        linear-gradient(135deg, rgba(62, 47, 91, 0.08), transparent 34%),
        linear-gradient(180deg, #fff7fb 0%, #f6edf5 100%);
}

.home-review-card {
    height: 100%;
    padding: 1.35rem;
    border: 1px solid rgba(233, 69, 96, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 18px 42px rgba(62, 47, 91, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.home-review-card p {
    color: var(--black);
    font-size: 1rem;
    line-height: 1.65;
}

.home-review-card strong {
    color: var(--purple-dark);
    font-weight: 900;
}

.review-product-name {
    max-width: 145px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feature-tile {
    padding: 1.25rem;
    height: 100%;
}

.feature-tile i {
    color: var(--gold);
    font-size: 1.6rem;
}

.contact-link {
    color: var(--black);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus {
    color: var(--black);
    transform: translateY(-4px);
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 22px 50px rgba(62, 47, 91, 0.15);
}

.page-header {
    padding: 3rem 0 1.5rem;
}

.page-header h1 {
    font-weight: 900;
}

.custom-page-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 12%, rgba(233, 69, 96, 0.12), transparent 28%),
        linear-gradient(180deg, #fff7fb 0%, #f5eaf4 100%);
}

.custom-builder-section {
    background:
        linear-gradient(135deg, rgba(62, 47, 91, 0.08), transparent 36%),
        linear-gradient(180deg, #f5eaf4 0%, #fff7fb 100%);
}

.custom-builder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
    gap: 1.5rem;
    align-items: start;
}

.custom-form-card,
.custom-preview-card {
    border: 1px solid rgba(233, 69, 96, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 48px rgba(62, 47, 91, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.custom-form-card {
    padding: 1.35rem;
}

.custom-form-heading {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.custom-form-heading > span {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.16), rgba(62, 47, 91, 0.12));
    color: var(--accent);
    font-size: 1.45rem;
}

.custom-form-heading h2 {
    color: var(--black);
    font-weight: 900;
}

.custom-form-heading p {
    color: var(--muted);
}

.custom-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

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

.custom-option {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--black);
    font-weight: 850;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-option:hover {
    transform: translateY(-2px);
    border-color: rgba(233, 69, 96, 0.34);
    box-shadow: 0 14px 28px rgba(62, 47, 91, 0.1);
}

.custom-option input {
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.custom-color {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 1px rgba(62, 47, 91, 0.16);
}

.custom-color.royal-purple {
    background: linear-gradient(135deg, #3e2f5b, #e94560);
}

.custom-color.soft-pink {
    background: linear-gradient(135deg, #ffd1df, #e94560);
}

.custom-color.gold-white {
    background: linear-gradient(135deg, #fff8e8, #d4a440);
}

.custom-color.black-purple {
    background: linear-gradient(135deg, #171020, #6d3bb6);
}

.custom-color.lavender-dream {
    background: linear-gradient(135deg, #f3e8ff, #a78bfa);
}

.custom-color.rose-gold {
    background: linear-gradient(135deg, #f7c6c7, #b76e79);
}

.custom-color.burgundy {
    background: linear-gradient(135deg, #7f1d1d, #e94560);
}

.custom-color.navy-gold {
    background: linear-gradient(135deg, #111827, #d4a440);
}

.custom-color.sage-green {
    background: linear-gradient(135deg, #dfead7, #6b8f71);
}

.custom-color.champagne {
    background: linear-gradient(135deg, #fff7df, #d6b56d);
}

.custom-color.maroon-gold {
    background: linear-gradient(135deg, #4a0f20, #c9973f);
}

.custom-color.baby-blue {
    background: linear-gradient(135deg, #dbeafe, #60a5fa);
}

.custom-color.lilac-white {
    background: linear-gradient(135deg, #ffffff, #c4b5fd);
}

.custom-color.emerald-gold {
    background: linear-gradient(135deg, #047857, #f2c94c);
}

.custom-color.peach-cream {
    background: linear-gradient(135deg, #ffe7d1, #fb7185);
}

.custom-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.custom-preview-card {
    position: sticky;
    top: 104px;
    overflow: hidden;
    padding: 1.25rem;
}

.custom-preview-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 900;
}

.custom-preview-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.76), transparent 0 28%, transparent 62%),
        linear-gradient(135deg, rgba(62, 47, 91, 0.12), rgba(233, 69, 96, 0.12));
}

.custom-preview-visual img {
    position: relative;
    width: min(92%, 320px);
    filter: drop-shadow(0 26px 34px rgba(23, 16, 32, 0.22));
}

.custom-preview-visual img.custom-preview-photo {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
    filter: none;
}

.custom-preview-copy {
    padding-top: 1rem;
}

.custom-preview-copy h2 {
    color: var(--black);
    font-size: 1.55rem;
    font-weight: 900;
}

.custom-preview-copy p {
    color: var(--muted);
}

.custom-preview-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0;
}

.custom-preview-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(233, 69, 96, 0.1);
    color: var(--purple-dark);
    font-size: 0.88rem;
    font-weight: 900;
}

.custom-preview-message {
    margin-bottom: 0;
    padding: 0.85rem;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.56);
}

.category-page-header {
    background:
        radial-gradient(circle at 18% 0%, rgba(233, 69, 96, 0.13), transparent 32%),
        linear-gradient(180deg, #fff7fb 0%, #f4e8f2 100%);
}

.category-page-section {
    background: #f4e8f2;
}

.category-filter-tile {
    position: relative;
    overflow: hidden;
    min-height: 156px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.44)),
        linear-gradient(135deg, rgba(62, 47, 91, 0.07), rgba(233, 69, 96, 0.08));
    border: 1px solid rgba(233, 69, 96, 0.18);
    color: var(--purple-dark);
    box-shadow: 0 18px 42px rgba(62, 47, 91, 0.11);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.category-filter-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 44%);
    pointer-events: none;
}

.category-filter-tile .category-icon,
.category-filter-tile strong {
    position: relative;
    z-index: 1;
}

.category-filter-tile .category-icon {
    margin-bottom: 0;
    background: rgba(233, 69, 96, 0.12);
    color: var(--purple-dark);
    border: 1px solid rgba(233, 69, 96, 0.16);
}

.category-filter-tile strong {
    color: var(--black);
}

.category-filter-tile:hover,
.category-filter-tile.active {
    color: #fff;
    background: linear-gradient(135deg, #3e2f5b 0%, #7b365d 52%, #e94560 120%);
    border-color: rgba(255, 255, 255, 0.44);
    transform: translateY(-5px);
}

.category-filter-tile:hover .category-icon,
.category-filter-tile.active .category-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
}

.category-filter-tile:hover strong,
.category-filter-tile.active strong {
    color: #fff;
}

.filter-bar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 14px 34px rgba(54, 39, 98, 0.06);
}

.order-history-filter,
.checkout-custom-box,
.order-history-card,
.custom-history-card,
.order-detail-panel {
    border: 1px solid rgba(233, 69, 96, 0.15);
    border-radius: 8px;
    background: rgba(255, 250, 253, 0.9);
    box-shadow: 0 16px 38px rgba(62, 47, 91, 0.08);
}

.order-history-filter,
.checkout-custom-box,
.order-detail-panel {
    padding: 1rem;
}

.checkout-custom-heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.checkout-custom-heading i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #e94560, #3e2f5b);
}

.checkout-custom-heading strong,
.order-history-side strong,
.order-detail-heading h2 {
    color: var(--black);
}

.checkout-custom-heading span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.order-history-list {
    display: grid;
    gap: 1rem;
}

.order-history-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
    gap: 1rem;
    padding: 1rem;
}

.order-history-main {
    display: flex;
    gap: 1rem;
    min-width: 0;
}

.order-product-thumb {
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    overflow: hidden;
    border-radius: 8px;
    background: #f7eafd;
}

.order-product-thumb img,
.order-detail-item img,
.custom-order-detail-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.order-history-copy {
    min-width: 0;
}

.order-history-topline,
.order-history-meta,
.order-history-badges,
.order-detail-actions,
.order-status-stack {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.order-history-topline {
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.9rem;
}

.order-history-topline strong {
    color: var(--purple-dark);
}

.order-history-copy h2 {
    margin: 0.35rem 0 0.25rem;
    color: var(--black);
    font-size: 1.12rem;
    font-weight: 900;
}

.order-history-copy p,
.order-history-side span,
.order-history-side small,
.order-detail-heading span,
.order-detail-item span,
.order-info-list dt,
.tracking-box p,
.custom-history-card p,
.custom-history-card small {
    color: var(--muted);
}

.order-history-meta {
    margin-top: 0.7rem;
    font-size: 0.88rem;
}

.order-history-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.order-history-side {
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 0.22rem;
    text-align: right;
}

.order-history-side strong {
    font-size: 1.25rem;
    font-weight: 900;
}

.order-history-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(233, 69, 96, 0.12);
}

.order-history-actions form,
.order-detail-actions form {
    display: inline-flex;
}

.custom-history-card {
    height: 100%;
    padding: 1rem;
}

.custom-history-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.custom-history-card h3 {
    color: var(--black);
    font-size: 1.05rem;
    font-weight: 900;
}

.order-detail-actions {
    justify-content: flex-start;
}

.order-detail-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-detail-heading h2 {
    margin: 0.2rem 0 0;
    font-size: 1.25rem;
    font-weight: 900;
}

.order-detail-heading > strong {
    color: var(--accent);
}

.order-detail-items {
    display: grid;
    gap: 0.75rem;
}

.order-detail-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid rgba(233, 69, 96, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
}

.order-detail-item img {
    width: 76px;
    height: 76px;
    border-radius: 8px;
}

.order-detail-item strong,
.order-detail-item b,
.tracking-box strong {
    color: var(--black);
}

.order-detail-item span,
.order-detail-item a {
    display: block;
    margin-top: 0.15rem;
}

.order-detail-total {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(233, 69, 96, 0.13);
}

.order-detail-total span {
    color: var(--muted);
}

.order-detail-total strong:last-child {
    color: var(--accent);
    font-size: 1.22rem;
}

.custom-order-detail-grid {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 1rem;
}

.custom-order-detail-grid img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
}

.custom-order-detail-grid dl,
.order-info-list {
    margin: 0;
}

.custom-order-detail-grid dt,
.order-info-list dt {
    font-weight: 850;
}

.custom-order-detail-grid dd,
.order-info-list dd {
    margin-bottom: 0.75rem;
    color: var(--black);
}

.order-status-stack {
    margin-bottom: 1rem;
}

.tracking-box {
    margin-top: 1rem;
    padding: 0.95rem;
    border-radius: 8px;
    background: rgba(233, 69, 96, 0.08);
}

.tracking-box span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-weight: 850;
}

.tracking-box strong {
    display: block;
    margin-top: 0.35rem;
}

.promo-products-section {
    margin-bottom: 1.5rem;
    padding: 1.15rem;
    border: 1px solid rgba(233, 69, 96, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 251, 0.74)),
        linear-gradient(135deg, rgba(233, 69, 96, 0.09), rgba(62, 47, 91, 0.06));
}

.promo-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.promo-products-header h2 {
    max-width: 680px;
    margin: 0.45rem 0 0.3rem;
    color: var(--black);
    font-size: 1.6rem;
    font-weight: 900;
}

.promo-products-header p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
}

.promo-product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(233, 69, 96, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 34px rgba(62, 47, 91, 0.08);
}

.promo-product-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    color: #fff;
    background: #f7eafd;
}

.promo-product-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.promo-product-card:hover .promo-product-media img {
    transform: scale(1.035);
}

.promo-product-media span {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 30px;
    padding: 0.32rem 0.62rem;
    border-radius: 999px;
    color: #fff;
    background: rgba(23, 16, 32, 0.72);
    font-size: 0.78rem;
    font-weight: 850;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.promo-product-body {
    display: grid;
    gap: 0.62rem;
    padding: 0.95rem;
}

.promo-product-body small {
    color: var(--accent);
    font-weight: 850;
}

.promo-product-body h3 {
    min-height: 46px;
    margin: 0;
    color: var(--black);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.28;
}

.promo-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.promo-product-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(62, 47, 91, 0.06);
    font-size: 0.78rem;
    font-weight: 750;
}

.promo-product-price {
    color: var(--accent);
    font-size: 1.08rem;
    font-weight: 900;
}

.promo-product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    align-items: center;
}

.promo-product-actions .btn,
.promo-product-actions form {
    width: 100%;
}

.promo-product-actions .btn {
    white-space: nowrap;
}

.filter-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.filter-summary span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(233, 69, 96, 0.08);
    color: var(--muted);
    font-size: 0.9rem;
}

.filter-summary strong {
    color: var(--purple-dark);
}

.empty-state {
    max-width: 640px;
    margin: 0 auto;
    padding: 2.2rem 1.4rem;
    text-align: center;
    border: 1px solid rgba(233, 69, 96, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 42px rgba(62, 47, 91, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.empty-state > i {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--accent);
    font-size: 1.65rem;
}

.empty-state h2 {
    color: var(--black);
    font-size: 1.45rem;
    font-weight: 900;
}

.empty-state p {
    color: var(--muted);
}

.detail-image {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.detail-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.35rem;
    box-shadow: 0 14px 34px rgba(54, 39, 98, 0.07);
}

.quantity-input {
    width: 92px;
}

.cart-row {
    padding: 1rem;
}

.cart-thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.auth-section {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-panel {
    padding: 1.5rem;
}

.password-field {
    position: relative;
}

.password-field .form-control {
    padding-right: 3.15rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    transform: translateY(-50%);
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.password-toggle:hover,
.password-toggle:focus {
    color: var(--accent);
    background: rgba(252, 163, 17, 0.12);
}

.password-toggle:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.24);
}

.floating-actions {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 1040;
    display: grid;
    gap: 0.65rem;
}

.floating-action {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #e94560, #3e2f5b);
    box-shadow: 0 16px 36px rgba(23, 16, 32, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.floating-action:hover,
.floating-action:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(23, 16, 32, 0.3);
}

.floating-action.whatsapp {
    background: linear-gradient(135deg, #22c55e, #128c4a);
}

.floating-action.scroll-top {
    opacity: 0;
    pointer-events: none;
}

.floating-action.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.site-footer {
    background: linear-gradient(135deg, #171020 0%, #3e2f5b 74%, #2b1f40 100%);
    color: #fff;
    padding: 3rem 0 1.2rem;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.45rem;
}

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

.site-footer h6 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2rem;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.58);
}

.admin-body {
    background:
        linear-gradient(135deg, rgba(233, 69, 96, 0.07), transparent 36%),
        #f8eff6;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background: linear-gradient(180deg, #171020 0%, #3e2f5b 100%);
    color: #fff;
    padding: 1.2rem;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
    font-weight: 850;
    margin-bottom: 1.4rem;
}

.admin-sidebar nav {
    display: grid;
    gap: 0.35rem;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.72);
    padding: 0.72rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: rgba(233, 69, 96, 0.22);
    color: #fff;
}

.admin-content {
    padding: 1.5rem;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.admin-topbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-topbar h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
}

.admin-user {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    font-weight: 800;
}

.stat-card {
    padding: 1.1rem;
    height: 100%;
}

.stat-card .icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--purple-soft);
    color: var(--purple-dark);
    font-size: 1.25rem;
}

.stat-card strong {
    display: block;
    font-size: 1.45rem;
    margin-top: 0.8rem;
}

.table-card {
    padding: 1rem;
}

.table img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.owner-sidebar {
    background: linear-gradient(180deg, #0f1720 0%, #164044 100%);
}

.owner-sidebar nav a:hover,
.owner-sidebar nav a.active {
    background: rgba(52, 211, 153, 0.18);
    color: #fff;
}

.owner-topbar h1 {
    color: #102a2d;
}

.stock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.66);
}

.stock-row strong,
.mini-metric strong,
.business-preview strong {
    display: block;
}

.stock-row span:not(.badge) {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
}

.bar-list {
    display: grid;
    gap: 0.9rem;
}

.bar-item {
    display: grid;
    grid-template-columns: 70px minmax(120px, 1fr) minmax(110px, auto);
    align-items: center;
    gap: 0.8rem;
}

.bar-item > span {
    color: var(--muted);
    font-weight: 700;
}

.bar-item > strong {
    text-align: right;
    font-size: 0.95rem;
}

.bar-track {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(23, 16, 32, 0.08);
}

.bar-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #e94560, #20a58f);
}

.mini-metric {
    height: 100%;
    padding: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
}

.mini-metric span {
    color: var(--muted);
    font-weight: 700;
}

.mini-metric strong {
    margin-top: 0.35rem;
    font-size: 1.2rem;
}

.business-preview {
    display: grid;
    gap: 0.85rem;
}

.business-preview img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    padding: 0.7rem;
}

.business-preview span {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--muted);
}

[data-theme="dark"] .bg-white {
    background-color: #171020 !important;
}

[data-theme="dark"] .app-navbar {
    background: rgba(23, 16, 32, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .navbar-brand span,
[data-theme="dark"] .navbar .nav-link,
[data-theme="dark"] .section-title h2,
[data-theme="dark"] .page-header h1,
[data-theme="dark"] .product-title,
[data-theme="dark"] .category-copy h3,
[data-theme="dark"] .category-filter-tile strong,
[data-theme="dark"] .promo-poster-header strong,
[data-theme="dark"] .promo-poster-hero h2,
[data-theme="dark"] .custom-form-heading h2,
[data-theme="dark"] .custom-preview-copy h2,
[data-theme="dark"] .guide-step-card h3,
[data-theme="dark"] .empty-state h2,
[data-theme="dark"] .admin-topbar h1 {
    color: var(--black);
}

[data-theme="dark"] .navbar .nav-link.active,
[data-theme="dark"] .navbar .nav-link:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.28), rgba(188, 167, 255, 0.16));
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .btn-outline-primary,
[data-theme="dark"] .btn-outline-dark,
[data-theme="dark"] .btn-outline-secondary,
[data-theme="dark"] .btn-light {
    color: var(--black);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .btn-light:hover,
[data-theme="dark"] .btn-light:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.18);
}

[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1) grayscale(1);
}

[data-theme="dark"] .btn-close {
    filter: invert(1) grayscale(1);
}

[data-theme="dark"] .text-muted,
[data-theme="dark"] .section-title p,
[data-theme="dark"] .promo-poster-hero p,
[data-theme="dark"] .promo-deal-item small,
[data-theme="dark"] .category-copy p,
[data-theme="dark"] .home-category-section .category-copy p {
    color: var(--muted) !important;
}

[data-theme="dark"] .text-bg-light {
    color: #fff !important;
    background-color: rgba(188, 167, 255, 0.16) !important;
}

[data-theme="dark"] .section-title .eyebrow,
[data-theme="dark"] .promo-poster-header span {
    color: #ffd9e1;
    background: rgba(233, 69, 96, 0.18);
}

[data-theme="dark"] .product-card,
[data-theme="dark"] .category-tile,
[data-theme="dark"] .feature-tile,
[data-theme="dark"] .guide-step-card,
[data-theme="dark"] .empty-state,
[data-theme="dark"] .contact-tile,
[data-theme="dark"] .custom-form-card,
[data-theme="dark"] .custom-preview-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .table-card,
[data-theme="dark"] .auth-panel,
[data-theme="dark"] .checkout-panel,
[data-theme="dark"] .cart-row,
[data-theme="dark"] .review-item,
[data-theme="dark"] .filter-bar,
[data-theme="dark"] .detail-panel,
[data-theme="dark"] .admin-user {
    background: rgba(28, 20, 38, 0.92);
    border-color: var(--border);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .product-image-wrap,
[data-theme="dark"] .detail-image,
[data-theme="dark"] .promo-product-visual,
[data-theme="dark"] .custom-preview-visual {
    background: #251b32;
    border-color: var(--border);
}

[data-theme="dark"] .home-category-section,
[data-theme="dark"] .home-bestseller-section,
[data-theme="dark"] .home-review-section,
[data-theme="dark"] .home-guide-section,
[data-theme="dark"] .custom-page-header,
[data-theme="dark"] .custom-builder-section,
[data-theme="dark"] .category-page-header,
[data-theme="dark"] .category-page-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(233, 69, 96, 0.12), transparent 32%),
        linear-gradient(180deg, #171020 0%, #120d1a 100%);
}

[data-theme="dark"] .home-category-section .category-tile,
[data-theme="dark"] .category-filter-tile {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        linear-gradient(135deg, rgba(188, 167, 255, 0.08), rgba(233, 69, 96, 0.08));
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .home-category-section .category-tile::before,
[data-theme="dark"] .category-filter-tile::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 44%);
}

[data-theme="dark"] .category-icon,
[data-theme="dark"] .home-category-section .category-icon,
[data-theme="dark"] .category-filter-tile .category-icon,
[data-theme="dark"] .stat-card .icon {
    color: #fff;
    background: rgba(188, 167, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .category-card-action {
    color: #ffd9e1;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .home-review-card,
[data-theme="dark"] .custom-gift-panel {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .home-review-card p,
[data-theme="dark"] .home-review-card strong {
    color: var(--black);
}

[data-theme="dark"] .custom-option,
[data-theme="dark"] .custom-preview-message {
    color: var(--black);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--border);
}

[data-theme="dark"] .filter-summary span {
    color: var(--muted);
    background: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .filter-summary strong {
    color: var(--black);
}

[data-theme="dark"] .custom-preview-pills span {
    color: #ffd9e1;
    background: rgba(233, 69, 96, 0.14);
}

[data-theme="dark"] .promo-poster-card,
[data-theme="dark"] .promo-poster-hero,
[data-theme="dark"] .promo-deal-list,
[data-theme="dark"] .promo-deal-item {
    color: var(--black);
    background: rgba(28, 20, 38, 0.94);
    border-color: var(--border);
}

[data-theme="dark"] .promo-deal-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select,
[data-theme="dark"] textarea,
[data-theme="dark"] input,
[data-theme="dark"] select {
    color: var(--black);
    background-color: #15101e;
    border-color: rgba(255, 255, 255, 0.16);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    color: var(--black);
    background-color: #1d1628;
    border-color: rgba(255, 111, 134, 0.6);
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.18);
}

[data-theme="dark"] .form-control::placeholder {
    color: rgba(255, 248, 252, 0.48);
}

[data-theme="dark"] .dropdown-menu {
    background: #1c1426;
    border-color: var(--border);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .dropdown-item {
    color: var(--black);
}

[data-theme="dark"] .dropdown-item:hover,
[data-theme="dark"] .dropdown-item:focus {
    color: #fff;
    background: rgba(233, 69, 96, 0.18);
}

[data-theme="dark"] .table {
    --bs-table-color: var(--black);
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--border);
    color: var(--black);
}

[data-theme="dark"] .table > :not(caption) > * > * {
    color: var(--black);
    background-color: transparent;
    border-color: var(--border);
}

[data-theme="dark"] .alert-info,
[data-theme="dark"] .alert-warning,
[data-theme="dark"] .alert-success,
[data-theme="dark"] .alert-danger {
    color: var(--black);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border);
}

[data-theme="dark"] .stock-pill.available {
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
}

[data-theme="dark"] .stock-pill.empty {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
}

[data-theme="dark"] .contact-link {
    color: var(--black);
}

[data-theme="dark"] .admin-body {
    background:
        radial-gradient(circle at 12% 0%, rgba(233, 69, 96, 0.12), transparent 34%),
        #0f0b16;
}

[data-theme="dark"] .admin-content {
    background: transparent;
}

[data-theme="dark"] .admin-sidebar {
    background: linear-gradient(180deg, #0b0710 0%, #241733 100%);
}

[data-theme="dark"] .owner-sidebar {
    background: linear-gradient(180deg, #071316 0%, #123034 100%);
}

[data-theme="dark"] .stock-row,
[data-theme="dark"] .mini-metric {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .bar-track {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .business-preview img {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .site-footer {
    background: linear-gradient(135deg, #0b0710 0%, #1d1428 74%, #120d1a 100%);
}

@media (max-width: 991.98px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-product-panel {
        justify-self: center;
        width: min(100%, 390px);
        margin-bottom: 4rem;
    }

    .hero-product-image {
        mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
    }

    .hero-logo-panel {
        justify-self: stretch;
        width: 100%;
        margin-bottom: 4rem;
    }

    .hero-logo-card {
        min-height: 260px;
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

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

    .hero-section {
        min-height: 0;
    }

    .custom-gift-panel {
        grid-template-columns: 1fr;
    }

    .custom-gift-actions {
        justify-content: flex-start;
    }

    .custom-builder-grid {
        grid-template-columns: 1fr;
    }

    .custom-preview-card {
        position: static;
    }

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

    .promo-products-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-history-card {
        grid-template-columns: 1fr;
    }

    .order-history-side {
        justify-items: start;
        text-align: left;
    }

    .custom-order-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 3.2rem 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .hero-stat span {
        min-width: 0;
    }

    .hero-product-panel {
        width: min(100%, 280px);
        margin-bottom: 3rem;
    }

    .hero-product-visual {
        border-radius: 22px;
    }

    .hero-logo-panel {
        margin-bottom: 3rem;
    }

    .hero-logo-card {
        min-height: 220px;
        padding: 1.5rem;
    }

    .hero-logo-card img {
        width: 112px;
        height: 112px;
    }

    .hero-logo-card img.hero-logo-full {
        width: min(100%, 280px);
        height: auto;
        max-height: 310px;
    }

    .hero-logo-card span {
        font-size: 1.6rem;
    }

    .admin-content {
        padding: 1rem;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-topbar-actions {
        justify-content: flex-start;
    }

    .bar-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .bar-item > strong {
        text-align: left;
    }

    .custom-gift-panel {
        padding: 1.25rem;
    }

    .custom-gift-actions .btn {
        width: 100%;
    }

    .custom-form-card,
    .custom-preview-card {
        padding: 1rem;
    }

    .custom-form-heading {
        align-items: flex-start;
    }

    .custom-choice-grid,
    .custom-check-grid {
        grid-template-columns: 1fr;
    }

    .custom-form-actions .btn {
        width: 100%;
    }

    .custom-preview-visual {
        min-height: 220px;
    }

    .floating-actions {
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .floating-action {
        width: 44px;
        height: 44px;
    }

    .promo-products-section {
        padding: 0.9rem;
    }

    .promo-products-header h2 {
        font-size: 1.32rem;
    }

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

    .order-history-main,
    .checkout-custom-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-product-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        flex-basis: auto;
    }

    .order-history-actions,
    .order-detail-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .order-history-actions .btn,
    .order-history-actions form,
    .order-detail-actions .btn,
    .order-detail-actions form {
        width: 100%;
    }

    .order-detail-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .order-detail-item b {
        grid-column: 2;
    }

    .order-detail-item img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 991.98px) {
    .home-page .app-navbar {
        background: rgba(13, 8, 21, 0.94);
    }

    .home-page .navbar-collapse {
        margin-top: 0.85rem;
        padding: 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        background: rgba(18, 11, 29, 0.94);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    }

    .home-page .hero-section {
        min-height: auto;
        padding: 4.2rem 0 3.8rem;
        background:
            linear-gradient(90deg, rgba(18, 11, 29, 0.82) 0%, rgba(18, 11, 29, 0.58) 48%, rgba(18, 11, 29, 0.18) 100%),
            linear-gradient(0deg, rgba(18, 11, 29, 0.38), rgba(18, 11, 29, 0.16)),
            url("../images/home-graduation-bear-bg.jpeg") 58% center / cover no-repeat;
    }

    .home-page .hero-content {
        padding: 0;
    }

    .home-page .hero-clean-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-page .hero-kicker {
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .home-page .hero-section {
        padding: 3.5rem 0 3rem;
        background:
            linear-gradient(0deg, rgba(18, 11, 29, 0.76), rgba(18, 11, 29, 0.46)),
            url("../images/home-graduation-bear-bg.jpeg") 52% center / cover no-repeat;
    }

    .home-page .hero-content-centered {
        margin: 0 auto;
        text-align: center;
    }

    .home-page .hero-content-centered p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-page .hero-content-centered .hero-actions,
    .home-page .hero-content-centered .hero-stat {
        justify-content: center;
    }

    .home-page .hero-content h1 {
        font-size: 2.45rem;
        line-height: 1.08;
        margin-bottom: 1.35rem;
    }

    .home-page .hero-content p {
        font-size: 0.95rem;
        font-weight: 750;
    }

    .home-page .hero-actions {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-page .hero-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .home-page .hero-stat {
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-promo-banner-section {
        margin-top: -1.4rem;
        padding-bottom: 2.5rem;
    }

    .home-promo-banner {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 0.82rem;
        min-height: 118px;
        padding: 0.65rem;
    }

    .home-promo-banner-copy strong {
        font-size: 1rem;
    }

    .home-promo-banner-copy > span:not(.eyebrow) {
        font-size: 0.88rem;
    }

    .promo-popup-backdrop {
        padding: 0.8rem;
    }

    .promo-popup-card {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        width: min(100%, 430px);
        padding: 0.72rem;
        border-radius: 26px;
    }

    .promo-popup-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-radius: 20px;
    }

    .promo-popup-media img {
        min-height: 0;
    }

    .promo-popup-copy {
        padding: 0.35rem 0.45rem 0.5rem;
        text-align: center;
    }

    .promo-popup-label {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .promo-popup-copy h2 {
        font-size: 1.85rem;
        line-height: 1.06;
    }

    .promo-popup-copy p {
        font-size: 0.95rem;
    }

    .promo-popup-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .promo-popup-close {
        top: 0.9rem;
        right: 0.9rem;
        width: 40px;
        height: 40px;
    }
}

.section-title .eyebrow,
.page-header .eyebrow,
.custom-gift-copy .eyebrow,
.custom-form-heading .eyebrow {
    background: var(--gold-soft);
    color: #7a2440;
}

.product-card,
.category-tile,
.feature-tile,
.contact-tile,
.stat-card,
.table-card,
.auth-panel,
.checkout-panel,
.cart-row,
.review-item,
.custom-form-card,
.custom-preview-card,
.empty-state,
.guide-step-card {
    border-color: rgba(233, 69, 96, 0.15);
    background-color: rgba(255, 250, 253, 0.88);
    box-shadow: 0 18px 42px rgba(62, 47, 91, 0.1);
}

.product-image-wrap,
.custom-preview-visual {
    background:
        radial-gradient(circle at 20% 16%, rgba(233, 69, 96, 0.16), transparent 34%),
        linear-gradient(135deg, #f7eafd, #fff0f5);
}

.product-price,
.rating-stars,
.category-card-action,
.custom-preview-total,
.text-primary,
.text-warning {
    color: var(--accent) !important;
}

.featured-badge,
.custom-form-step,
.empty-state > i {
    background: linear-gradient(135deg, #e94560, #3e2f5b);
    color: #fff;
}

.floating-action.whatsapp {
    color: #fff;
    background: #25d366;
    border-color: rgba(37, 211, 102, 0.42);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.26);
}

.floating-action.whatsapp:hover,
.floating-action.whatsapp:focus {
    color: #fff;
    background: #1ebe5d;
    box-shadow: 0 20px 44px rgba(37, 211, 102, 0.34);
}

.contact-link .bi-whatsapp {
    color: #25d366 !important;
}

.page-header {
    background:
        radial-gradient(circle at 8% 0%, rgba(233, 69, 96, 0.12), transparent 32%),
        linear-gradient(180deg, #fff7fb 0%, #f8eff6 100%);
}

.filter-card,
.custom-order-card,
.admin-card,
.dashboard-card {
    border-color: rgba(233, 69, 96, 0.16);
}

.site-footer {
    background: linear-gradient(135deg, #171020 0%, #3e2f5b 74%, #2b1f40 100%);
}

[data-theme="dark"] .section-title .eyebrow,
[data-theme="dark"] .page-header .eyebrow,
[data-theme="dark"] .custom-gift-copy .eyebrow,
[data-theme="dark"] .custom-form-heading .eyebrow {
    color: #ffdbe2;
    background: rgba(233, 69, 96, 0.18);
}

[data-theme="dark"] .product-card,
[data-theme="dark"] .category-tile,
[data-theme="dark"] .feature-tile,
[data-theme="dark"] .contact-tile,
[data-theme="dark"] .home-promo-banner,
[data-theme="dark"] .promo-products-section,
[data-theme="dark"] .promo-product-card,
[data-theme="dark"] .order-history-filter,
[data-theme="dark"] .checkout-custom-box,
[data-theme="dark"] .order-history-card,
[data-theme="dark"] .custom-history-card,
[data-theme="dark"] .order-detail-panel,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .table-card,
[data-theme="dark"] .auth-panel,
[data-theme="dark"] .checkout-panel,
[data-theme="dark"] .cart-row,
[data-theme="dark"] .review-item,
[data-theme="dark"] .custom-form-card,
[data-theme="dark"] .custom-preview-card,
[data-theme="dark"] .empty-state,
[data-theme="dark"] .guide-step-card {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: rgba(28, 20, 38, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

/* Dark mode contrast guard: keep page headers and common UI readable. */
[data-theme="dark"] .page-header,
[data-theme="dark"] .custom-page-header,
[data-theme="dark"] .category-page-header {
    color: #fff8fc;
    background:
        radial-gradient(circle at 12% 0%, rgba(233, 69, 96, 0.18), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(188, 167, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #171020 0%, #120d1a 100%) !important;
}

[data-theme="dark"] .page-header h1,
[data-theme="dark"] .custom-page-header h1,
[data-theme="dark"] .category-page-header h1 {
    color: #fff8fc !important;
    text-shadow: none;
}

[data-theme="dark"] .page-header p,
[data-theme="dark"] .page-header .lead,
[data-theme="dark"] .page-header .text-muted,
[data-theme="dark"] .custom-page-header p,
[data-theme="dark"] .custom-page-header .text-muted,
[data-theme="dark"] .category-page-header p,
[data-theme="dark"] .category-page-header .text-muted {
    color: #d8c8df !important;
}

[data-theme="dark"] .page-header .eyebrow,
[data-theme="dark"] .custom-page-header .eyebrow,
[data-theme="dark"] .category-page-header .eyebrow,
[data-theme="dark"] .section-title .eyebrow,
[data-theme="dark"] .promo-products-header .eyebrow {
    color: #ffdbe2 !important;
    background: rgba(233, 69, 96, 0.22) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .form-label,
[data-theme="dark"] label,
[data-theme="dark"] .form-check-label,
[data-theme="dark"] .form-text,
[data-theme="dark"] .small,
[data-theme="dark"] small {
    color: #d8c8df;
}

[data-theme="dark"] .text-dark,
[data-theme="dark"] .text-body,
[data-theme="dark"] .text-secondary {
    color: #fff8fc !important;
}

[data-theme="dark"] .text-muted {
    color: #cdbfd4 !important;
}

[data-theme="dark"] .text-bg-light,
[data-theme="dark"] .badge.text-bg-light {
    color: #fff8fc !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .filter-card,
[data-theme="dark"] .custom-order-card,
[data-theme="dark"] .admin-card,
[data-theme="dark"] .dashboard-card,
[data-theme="dark"] .filter-bar,
[data-theme="dark"] .detail-panel,
[data-theme="dark"] .auth-panel,
[data-theme="dark"] .checkout-panel {
    color: #fff8fc;
    background: rgba(28, 20, 38, 0.94);
    border-color: rgba(255, 255, 255, 0.13);
}

[data-theme="dark"] .table,
[data-theme="dark"] .table td,
[data-theme="dark"] .table th,
[data-theme="dark"] .table tbody,
[data-theme="dark"] .table thead {
    color: #fff8fc !important;
}

[data-theme="dark"] .table-light,
[data-theme="dark"] .table-light > :not(caption) > * > * {
    color: #fff8fc !important;
    background-color: rgba(255, 255, 255, 0.07) !important;
}

[data-theme="dark"] .home-promo-banner,
[data-theme="dark"] .home-promo-banner-copy strong {
    color: #fff8fc;
}

[data-theme="dark"] .home-promo-banner-copy > span:not(.eyebrow) {
    color: #cdbfd4;
}

[data-theme="dark"] .promo-popup-card {
    color: #fff8fc;
    background: rgba(28, 20, 38, 0.97);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .promo-popup-close {
    color: #fff8fc;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .promo-popup-label {
    color: #d8c8df;
}

[data-theme="dark"] .promo-popup-copy h2 {
    color: #fff8fc;
}

[data-theme="dark"] .promo-popup-copy p {
    color: #cdbfd4;
}

[data-theme="dark"] .promo-products-section {
    color: #fff8fc;
    background:
        radial-gradient(circle at 10% 0%, rgba(233, 69, 96, 0.16), transparent 32%),
        radial-gradient(circle at 96% 12%, rgba(188, 167, 255, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(28, 20, 38, 0.98), rgba(17, 12, 24, 0.96)) !important;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

[data-theme="dark"] .promo-products-header h2,
[data-theme="dark"] .promo-product-body h3 {
    color: #fff8fc;
}

[data-theme="dark"] .promo-products-header p {
    color: #d8c8df;
}

[data-theme="dark"] .promo-product-card {
    background: rgba(28, 20, 38, 0.96);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .promo-product-body small {
    color: #ffdbe2;
}

[data-theme="dark"] .promo-product-meta span {
    color: #d8c8df;
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .promo-product-media {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .order-detail-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .tracking-box,
[data-theme="dark"] .order-product-thumb {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .alert,
[data-theme="dark"] .alert-info,
[data-theme="dark"] .alert-warning,
[data-theme="dark"] .alert-success,
[data-theme="dark"] .alert-danger {
    color: #fff8fc;
    background: rgba(28, 20, 38, 0.94);
    border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .contact-link h2,
[data-theme="dark"] .contact-link h3,
[data-theme="dark"] .contact-link h4,
[data-theme="dark"] .contact-link p,
[data-theme="dark"] .contact-link span {
    color: #fff8fc;
}

[data-theme="dark"] .contact-link p.text-muted {
    color: #cdbfd4 !important;
}

/* Clean professional palette inspired by the requested reference. */
body {
    background:
        radial-gradient(circle at 8% 0%, rgba(115, 87, 230, 0.08), transparent 30%),
        linear-gradient(180deg, #f8f7fc 0%, #f4f2f8 100%);
}

.bg-white {
    background-color: #ffffff !important;
}

.app-navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(236, 233, 243, 0.9);
    box-shadow: 0 16px 40px rgba(31, 27, 45, 0.07);
}

.navbar .nav-link {
    color: #4c465d;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #7357e6, #8b63f2);
    box-shadow: 0 12px 26px rgba(115, 87, 230, 0.22);
}

.theme-toggle,
.btn-outline-primary,
.btn-outline-dark,
.btn-outline-secondary,
.btn-light {
    border-color: rgba(115, 87, 230, 0.16);
    background: rgba(255, 255, 255, 0.82);
    color: var(--purple-dark);
    box-shadow: 0 12px 28px rgba(31, 27, 45, 0.08);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #7357e6 0%, #8b63f2 58%, #ff6f93 125%);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 16px 34px rgba(115, 87, 230, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, #6448d8 0%, #7f59ed 58%, #ff638a 125%);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    color: #fff;
    background: linear-gradient(135deg, #7357e6, #8b63f2);
    border-color: rgba(255, 255, 255, 0.36);
}

.btn-warning,
.text-bg-warning,
.cart-badge {
    color: #fff !important;
    background: linear-gradient(135deg, #ff5d7d, #ff7b97) !important;
}

.text-primary,
.rating-stars,
.category-card-action,
.custom-preview-total {
    color: var(--accent) !important;
}

.product-price,
.promo-product-price {
    color: #ff5d7d !important;
}

.page-header,
.category-page-header,
.custom-page-header {
    background:
        radial-gradient(circle at 10% 0%, rgba(115, 87, 230, 0.1), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f5fb 100%) !important;
}

.hero-section {
    background:
        linear-gradient(90deg, rgba(31, 27, 45, 0.72) 0%, rgba(31, 27, 45, 0.42) 46%, rgba(31, 27, 45, 0.08) 100%),
        url("../images/home-graduation-bear-bg.jpeg") center / cover no-repeat;
}

.hero-kicker,
.section-title .eyebrow,
.page-header .eyebrow,
.custom-gift-copy .eyebrow,
.custom-form-heading .eyebrow,
.promo-products-header .eyebrow {
    color: #5d43cf !important;
    background: #f0edff !important;
    border: 1px solid rgba(115, 87, 230, 0.12);
}

.product-card,
.category-tile,
.feature-tile,
.contact-tile,
.home-promo-banner,
.stat-card,
.table-card,
.auth-panel,
.checkout-panel,
.cart-row,
.review-item,
.custom-form-card,
.custom-preview-card,
.empty-state,
.guide-step-card,
.filter-bar,
.detail-panel,
.promo-products-section,
.promo-product-card,
.order-history-card,
.order-history-filter,
.custom-history-card,
.order-detail-panel,
.checkout-custom-box {
    border-color: rgba(236, 233, 243, 0.95);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(31, 27, 45, 0.08);
}

.product-image-wrap,
.detail-image,
.promo-product-media,
.custom-preview-visual,
.order-product-thumb,
.tracking-box {
    background:
        radial-gradient(circle at 20% 16%, rgba(115, 87, 230, 0.12), transparent 34%),
        linear-gradient(135deg, #f3f0ff, #fff4f7);
}

.category-icon,
.feature-tile > i,
.stat-card .icon,
.empty-state > i,
.custom-form-step,
.checkout-custom-heading i,
.tracking-box span i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #7357e6;
    background: #f0edff;
    border: 1px solid rgba(115, 87, 230, 0.12);
    box-shadow: 0 12px 26px rgba(115, 87, 230, 0.12);
}

.category-icon i,
.feature-tile > i,
.stat-card .icon i,
.empty-state > i,
.custom-form-step,
.checkout-custom-heading i,
.tracking-box span i {
    font-size: 1.25rem;
}

.favorite-floating .btn,
.promo-product-media span,
.stock-pill,
.filter-summary span,
.promo-product-meta span,
.badge.text-bg-light {
    border: 1px solid rgba(115, 87, 230, 0.1);
    background: #f7f5ff !important;
    color: #514568 !important;
}

.stock-pill.available {
    color: #15803d !important;
    background: #eaf8f0 !important;
}

.stock-pill.empty {
    color: #b42335 !important;
    background: #fff0f3 !important;
}

.home-promo-banner,
.promo-products-section {
    background:
        radial-gradient(circle at 94% 10%, rgba(255, 111, 147, 0.14), transparent 28%),
        linear-gradient(135deg, #ffffff, #f7f4ff) !important;
}

.custom-gift-panel,
.site-footer {
    background: linear-gradient(135deg, #7357e6 0%, #8b63f2 60%, #ff6f93 125%) !important;
}

.admin-sidebar,
.owner-sidebar {
    background: linear-gradient(180deg, #1f1b2d 0%, #2a2142 100%);
}

.admin-sidebar nav a,
.owner-sidebar nav a {
    border-radius: 8px;
}

.admin-sidebar nav a i,
.owner-sidebar nav a i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #cfc6ff;
    background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover,
.owner-sidebar nav a.active,
.owner-sidebar nav a:hover {
    color: #fff;
    background: linear-gradient(135deg, #7357e6, #8b63f2);
}

.admin-sidebar nav a.active i,
.admin-sidebar nav a:hover i,
.owner-sidebar nav a.active i,
.owner-sidebar nav a:hover i {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

[data-theme="dark"] body {
    background:
        radial-gradient(circle at 12% 0%, rgba(115, 87, 230, 0.16), transparent 30%),
        radial-gradient(circle at 86% 8%, rgba(255, 111, 147, 0.1), transparent 34%),
        linear-gradient(180deg, #0f0b16 0%, #171020 100%);
}

[data-theme="dark"] .app-navbar,
[data-theme="dark"] .product-card,
[data-theme="dark"] .category-tile,
[data-theme="dark"] .feature-tile,
[data-theme="dark"] .contact-tile,
[data-theme="dark"] .home-promo-banner,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .table-card,
[data-theme="dark"] .auth-panel,
[data-theme="dark"] .checkout-panel,
[data-theme="dark"] .cart-row,
[data-theme="dark"] .review-item,
[data-theme="dark"] .custom-form-card,
[data-theme="dark"] .custom-preview-card,
[data-theme="dark"] .empty-state,
[data-theme="dark"] .guide-step-card,
[data-theme="dark"] .filter-bar,
[data-theme="dark"] .detail-panel,
[data-theme="dark"] .promo-products-section,
[data-theme="dark"] .promo-product-card,
[data-theme="dark"] .order-history-card,
[data-theme="dark"] .order-history-filter,
[data-theme="dark"] .custom-history-card,
[data-theme="dark"] .order-detail-panel,
[data-theme="dark"] .checkout-custom-box {
    color: #fff8fc;
    background: rgba(28, 20, 38, 0.94) !important;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .category-icon,
[data-theme="dark"] .feature-tile > i,
[data-theme="dark"] .stat-card .icon,
[data-theme="dark"] .empty-state > i,
[data-theme="dark"] .custom-form-step,
[data-theme="dark"] .checkout-custom-heading i,
[data-theme="dark"] .tracking-box span i {
    color: #c8bcff;
    background: rgba(156, 130, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

[data-theme="dark"] .hero-kicker,
[data-theme="dark"] .section-title .eyebrow,
[data-theme="dark"] .page-header .eyebrow,
[data-theme="dark"] .custom-gift-copy .eyebrow,
[data-theme="dark"] .custom-form-heading .eyebrow,
[data-theme="dark"] .promo-products-header .eyebrow {
    color: #ded8ff !important;
    background: rgba(156, 130, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Global clean background request: white day mode, charcoal night mode. */
:root {
    --body: #ffffff;
    --surface: #ffffff;
}

[data-theme="dark"] {
    --body: #171719;
    --surface: #242428;
    --border: rgba(255, 255, 255, 0.12);
}

body,
.bg-white,
.home-category-section,
.home-bestseller-section,
.home-review-section,
.home-guide-section,
.custom-builder-section,
.category-page-section,
.page-header,
.category-page-header,
.custom-page-header {
    background: #ffffff !important;
}

[data-theme="dark"] body,
[data-theme="dark"] .bg-white,
[data-theme="dark"] .home-category-section,
[data-theme="dark"] .home-bestseller-section,
[data-theme="dark"] .home-review-section,
[data-theme="dark"] .home-guide-section,
[data-theme="dark"] .custom-builder-section,
[data-theme="dark"] .category-page-section,
[data-theme="dark"] .page-header,
[data-theme="dark"] .category-page-header,
[data-theme="dark"] .custom-page-header {
    background: #171719 !important;
}

[data-theme="dark"] .app-navbar,
[data-theme="dark"] .product-card,
[data-theme="dark"] .category-tile,
[data-theme="dark"] .feature-tile,
[data-theme="dark"] .contact-tile,
[data-theme="dark"] .home-promo-banner,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .table-card,
[data-theme="dark"] .auth-panel,
[data-theme="dark"] .checkout-panel,
[data-theme="dark"] .cart-row,
[data-theme="dark"] .review-item,
[data-theme="dark"] .custom-form-card,
[data-theme="dark"] .custom-preview-card,
[data-theme="dark"] .empty-state,
[data-theme="dark"] .guide-step-card,
[data-theme="dark"] .filter-bar,
[data-theme="dark"] .detail-panel,
[data-theme="dark"] .promo-products-section,
[data-theme="dark"] .promo-product-card,
[data-theme="dark"] .order-history-card,
[data-theme="dark"] .order-history-filter,
[data-theme="dark"] .custom-history-card,
[data-theme="dark"] .order-detail-panel,
[data-theme="dark"] .checkout-custom-box {
    background: #242428 !important;
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

/* Black and Gold Elegance palette request. */
:root {
    --purple: #14213d;
    --purple-dark: #000000;
    --purple-soft: #e5e5e5;
    --gold: #fca311;
    --gold-soft: rgba(252, 163, 17, 0.13);
    --accent: #fca311;
    --accent-dark: #d88a00;
    --black: #000000;
    --muted: #5f6470;
    --border: #e5e5e5;
    --surface: #ffffff;
    --body: #ffffff;
}

[data-theme="dark"] {
    --purple: #fca311;
    --purple-dark: #ffffff;
    --purple-soft: rgba(252, 163, 17, 0.14);
    --gold: #fca311;
    --gold-soft: rgba(252, 163, 17, 0.18);
    --accent: #fca311;
    --accent-dark: #ffc45c;
    --black: #ffffff;
    --muted: #d7d7d7;
    --border: rgba(229, 229, 229, 0.16);
    --surface: #14213d;
    --body: #000000;
}

body,
.bg-white,
.home-category-section,
.home-bestseller-section,
.home-review-section,
.home-guide-section,
.custom-builder-section,
.category-page-section,
.page-header,
.category-page-header,
.custom-page-header {
    background: #ffffff !important;
}

.app-navbar,
.product-card,
.category-tile,
.feature-tile,
.contact-tile,
.home-promo-banner,
.stat-card,
.table-card,
.auth-panel,
.checkout-panel,
.cart-row,
.review-item,
.custom-form-card,
.custom-preview-card,
.empty-state,
.guide-step-card,
.filter-bar,
.detail-panel,
.promo-products-section,
.promo-product-card,
.order-history-card,
.order-history-filter,
.custom-history-card,
.order-detail-panel,
.checkout-custom-box {
    background: #ffffff !important;
    border-color: #e5e5e5;
    box-shadow: 0 18px 42px rgba(20, 33, 61, 0.08);
}

.navbar-brand span,
.navbar .nav-link,
.section-title h2,
.page-header h1,
.product-title,
.category-copy h3,
.feature-tile h3,
.table-card h2,
.empty-state h2,
.order-history-copy h2,
.order-detail-heading h2 {
    color: #000000 !important;
}

.navbar .nav-link.active,
.navbar .nav-link:hover,
.btn-primary,
.admin-sidebar nav a.active,
.admin-sidebar nav a:hover,
.owner-sidebar nav a.active,
.owner-sidebar nav a:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #14213d 0%, #000000 100%) !important;
    border-color: rgba(252, 163, 17, 0.4);
}

.btn-primary {
    box-shadow: 0 16px 34px rgba(20, 33, 61, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #000000 0%, #14213d 100%) !important;
}

.btn-outline-primary,
.btn-outline-dark,
.btn-outline-secondary,
.btn-light,
.theme-toggle {
    color: #14213d !important;
    background: #ffffff !important;
    border-color: #e5e5e5;
    box-shadow: 0 12px 28px rgba(20, 33, 61, 0.08);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    color: #000000 !important;
    background: #fca311 !important;
    border-color: #fca311;
}

.btn-warning,
.text-bg-warning,
.cart-badge,
.featured-badge,
.custom-form-step {
    color: #000000 !important;
    background: #fca311 !important;
}

.text-primary,
.text-warning,
.rating-stars,
.category-card-action,
.custom-preview-total,
.product-price,
.promo-product-price {
    color: #fca311 !important;
}

.hero-section {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(20, 33, 61, 0.52) 48%, rgba(20, 33, 61, 0.1) 100%),
        url("../images/home-graduation-bear-bg.jpeg") center / cover no-repeat !important;
}

.hero-kicker,
.section-title .eyebrow,
.page-header .eyebrow,
.custom-gift-copy .eyebrow,
.custom-form-heading .eyebrow,
.promo-products-header .eyebrow {
    color: #14213d !important;
    background: rgba(252, 163, 17, 0.14) !important;
    border: 1px solid rgba(252, 163, 17, 0.28);
}

.category-icon,
.feature-tile > i,
.stat-card .icon,
.empty-state > i,
.checkout-custom-heading i,
.tracking-box span i,
.admin-sidebar nav a i,
.owner-sidebar nav a i {
    color: #000000 !important;
    background: #fca311 !important;
    border-color: rgba(252, 163, 17, 0.38);
    box-shadow: 0 12px 26px rgba(252, 163, 17, 0.18);
}

.favorite-floating .btn,
.stock-pill,
.filter-summary span,
.promo-product-meta span,
.badge.text-bg-light {
    color: #14213d !important;
    background: #e5e5e5 !important;
    border: 1px solid rgba(20, 33, 61, 0.08);
}

.home-promo-banner,
.promo-products-section {
    background:
        radial-gradient(circle at 94% 10%, rgba(252, 163, 17, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff, #f7f7f7) !important;
}

.custom-gift-panel,
.site-footer {
    background: linear-gradient(135deg, #000000 0%, #14213d 72%, #fca311 155%) !important;
}

.admin-sidebar,
.owner-sidebar {
    background: linear-gradient(180deg, #000000 0%, #14213d 100%) !important;
}

[data-theme="dark"] body,
[data-theme="dark"] .bg-white,
[data-theme="dark"] .home-category-section,
[data-theme="dark"] .home-bestseller-section,
[data-theme="dark"] .home-review-section,
[data-theme="dark"] .home-guide-section,
[data-theme="dark"] .custom-builder-section,
[data-theme="dark"] .category-page-section,
[data-theme="dark"] .page-header,
[data-theme="dark"] .category-page-header,
[data-theme="dark"] .custom-page-header {
    background: #000000 !important;
}

[data-theme="dark"] .app-navbar,
[data-theme="dark"] .product-card,
[data-theme="dark"] .category-tile,
[data-theme="dark"] .feature-tile,
[data-theme="dark"] .contact-tile,
[data-theme="dark"] .home-promo-banner,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .table-card,
[data-theme="dark"] .auth-panel,
[data-theme="dark"] .checkout-panel,
[data-theme="dark"] .cart-row,
[data-theme="dark"] .review-item,
[data-theme="dark"] .custom-form-card,
[data-theme="dark"] .custom-preview-card,
[data-theme="dark"] .empty-state,
[data-theme="dark"] .guide-step-card,
[data-theme="dark"] .filter-bar,
[data-theme="dark"] .detail-panel,
[data-theme="dark"] .promo-products-section,
[data-theme="dark"] .promo-product-card,
[data-theme="dark"] .order-history-card,
[data-theme="dark"] .order-history-filter,
[data-theme="dark"] .custom-history-card,
[data-theme="dark"] .order-detail-panel,
[data-theme="dark"] .checkout-custom-box {
    color: #ffffff;
    background: #14213d !important;
    border-color: rgba(229, 229, 229, 0.16);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .navbar-brand span,
[data-theme="dark"] .navbar .nav-link,
[data-theme="dark"] .section-title h2,
[data-theme="dark"] .page-header h1,
[data-theme="dark"] .product-title,
[data-theme="dark"] .category-copy h3,
[data-theme="dark"] .feature-tile h3,
[data-theme="dark"] .table-card h2,
[data-theme="dark"] .empty-state h2,
[data-theme="dark"] .order-history-copy h2,
[data-theme="dark"] .order-detail-heading h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .hero-kicker,
[data-theme="dark"] .section-title .eyebrow,
[data-theme="dark"] .page-header .eyebrow,
[data-theme="dark"] .custom-gift-copy .eyebrow,
[data-theme="dark"] .custom-form-heading .eyebrow,
[data-theme="dark"] .promo-products-header .eyebrow {
    color: #fca311 !important;
    background: rgba(252, 163, 17, 0.13) !important;
    border-color: rgba(252, 163, 17, 0.28);
}

.custom-gift-panel .custom-gift-copy .eyebrow {
    color: #fca311 !important;
    background: rgba(252, 163, 17, 0.16) !important;
    border-color: rgba(252, 163, 17, 0.46) !important;
    box-shadow: 0 10px 24px rgba(252, 163, 17, 0.12);
}

.custom-gift-panel .custom-gift-copy .eyebrow i {
    color: #fca311 !important;
}

.custom-gift-panel .custom-gift-copy h2 {
    color: #ffffff !important;
}

.custom-gift-panel .custom-gift-copy p {
    color: rgba(255, 255, 255, 0.84) !important;
}

[data-theme="dark"] .btn-outline-primary,
[data-theme="dark"] .btn-outline-dark,
[data-theme="dark"] .btn-outline-secondary,
[data-theme="dark"] .btn-light,
[data-theme="dark"] .theme-toggle {
    color: #ffffff !important;
    background: #14213d !important;
    border-color: rgba(229, 229, 229, 0.18);
}
