@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --pure-gold: #e2b627;
    --pure-gold-light: #f7d85d;
    --pure-gold-dark: #9a6d07;
    --pure-gold-soft: rgba(226, 182, 39, 0.12);
    --pure-gold-glow: rgba(247, 216, 93, 0.18);
    --pure-black: #050403;
    --pure-darker: #0b0906;
    --pure-dark: #14110c;
    --pure-surface: #1d1710;
    --pure-ivory: #f7f1e6;
    --pure-ivory-dark: #efe4d0;
    --pure-white: #ffffff;
    --pure-text: #2c2419;
    --pure-text-muted: #7c705f;
    --pure-border: rgba(154, 109, 7, 0.16);
    --pure-shadow: 0 24px 50px rgba(12, 9, 6, 0.08);
    --pure-shadow-soft: 0 14px 30px rgba(12, 9, 6, 0.06);
    --header-height: 94px;
    --header-height-stuck: 78px;
    --footer-bg: #090705;
    --premium-font: 'Cormorant Garamond', serif;
    --body-font: 'Manrope', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, rgba(247, 216, 93, 0.08), transparent 28%),
        linear-gradient(180deg, #f9f4ea 0%, #f4ede1 32%, #f7f1e6 100%);
    color: var(--pure-text);
    font-family: var(--body-font);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--pure-text);
    font-family: var(--premium-font);
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

a:hover {
    color: var(--pure-gold-dark);
}

img {
    max-width: 100%;
}

.main-content {
    min-height: 100vh;
}

.page-content {
    position: relative;
}

.page-content > *:not(.hero-slider):not(.header-top-bar):not(.header-main):not(.footer) {
    position: relative;
    z-index: 1;
}

.text-gold { color: var(--pure-gold) !important; }
.bg-gold { background-color: var(--pure-gold) !important; }
.bg-pure-dark { background-color: var(--pure-dark) !important; }
.border-gold { border-color: var(--pure-gold) !important; }

.error,
.help-block,
small.text-danger {
    color: #bf2f27 !important;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-theme-primary {
    background: linear-gradient(135deg, var(--pure-gold-light) 0%, var(--pure-gold) 55%, #c89512 100%) !important;
    border: 1px solid rgba(154, 109, 7, 0.3) !important;
    box-shadow: 0 14px 24px rgba(154, 109, 7, 0.16);
    color: var(--pure-black) !important;
}

.btn-theme-primary:hover,
.btn-theme-primary:focus {
    background: linear-gradient(135deg, #ffe17d 0%, var(--pure-gold-light) 50%, var(--pure-gold) 100%) !important;
    border-color: rgba(154, 109, 7, 0.42) !important;
    box-shadow: 0 18px 34px rgba(154, 109, 7, 0.22);
    color: var(--pure-black) !important;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(131, 107, 73, 0.18);
    border-radius: 18px;
    color: var(--pure-text);
    padding: 0.95rem 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--pure-white);
    border-color: rgba(226, 182, 39, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(226, 182, 39, 0.12);
    color: var(--pure-text);
}

.badge {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.banner-section,
.page-hero {
    background:
        radial-gradient(circle at top center, rgba(247, 216, 93, 0.35), transparent 26%),
        linear-gradient(135deg, #1d1710 0%, #090705 55%, #15110d 100%);
    border-bottom: 1px solid rgba(247, 216, 93, 0.14);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    color: var(--pure-white);
    overflow: hidden;
    position: relative;
}

.banner-section::before,
.page-hero::before {
    background: linear-gradient(90deg, transparent 0%, rgba(247, 216, 93, 0.22) 48%, transparent 100%);
    content: "";
    height: 1px;
    left: 10%;
    position: absolute;
    right: 10%;
    top: 22px;
}

.banner-section::after,
.page-hero::after {
    border: 1px solid rgba(247, 216, 93, 0.09);
    border-radius: 999px;
    content: "";
    height: 240px;
    position: absolute;
    right: -80px;
    top: -120px;
    width: 240px;
}

.banner-section .display-4,
.page-hero-title {
    color: var(--pure-white);
    font-family: var(--premium-font);
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.banner-section .lead,
.page-hero-subtitle {
    color: rgba(255, 247, 229, 0.82) !important;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title {
    color: var(--pure-text);
    font-family: var(--premium-font);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.section-title::after {
    background: linear-gradient(90deg, transparent, var(--pure-gold), transparent);
    content: "";
    display: block;
    height: 1px;
    margin: 0.9rem auto 0;
    max-width: 180px;
}

.surface-card,
.card,
.contact-info-box,
.auth-info-box,
.contact-form-box,
.auth-form-box,
.privacy-policy-content,
.terms-conditions-content,
.testimonial-item {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(154, 109, 7, 0.12);
    border-radius: 28px;
    box-shadow: var(--pure-shadow-soft);
}

.card {
    overflow: hidden;
}

.theme-panel {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(154, 109, 7, 0.12);
    border-radius: 28px;
    box-shadow: var(--pure-shadow-soft);
}

.header-top-bar {
    background: linear-gradient(90deg, rgba(5, 4, 3, 0.98), rgba(20, 17, 12, 0.98));
    border-bottom: 1px solid rgba(247, 216, 93, 0.12);
    color: rgba(247, 241, 230, 0.78);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 0.65rem 0;
    text-transform: uppercase;
}

.header-top-bar a {
    color: rgba(247, 241, 230, 0.76);
    text-decoration: none;
}

.header-top-bar a:hover {
    color: var(--pure-gold-light);
}

.promo-ticker-wrapper {
    max-width: 640px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.promo-ticker-content {
    animation: ticker-animation 25s linear infinite;
    color: rgba(247, 241, 230, 0.9);
    display: inline-block;
    font-weight: 600;
    padding-left: 0;
}

@keyframes ticker-animation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.promo-ticker-content:hover {
    animation-play-state: paused;
}

.header-main {
    background: rgba(9, 7, 5, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(247, 216, 93, 0.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    height: var(--header-height);
    transition: height 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.header-main.stuck {
    background: rgba(9, 7, 5, 0.97);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    height: var(--header-height-stuck);
}

.logo-wrapper img,
.site-logo {
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
    max-height: 88px;
    transition: max-height 0.35s ease, transform 0.35s ease;
}

.header-main.stuck .logo-wrapper img,
.header-main.stuck .site-logo {
    max-height: 72px;
}

.nav-link-custom {
    color: rgba(247, 241, 230, 0.84) !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 0.8rem 1rem !important;
    position: relative;
    text-transform: uppercase;
}

.nav-link-custom::after {
    background: linear-gradient(90deg, transparent, var(--pure-gold-light), transparent);
    bottom: 0.35rem;
    content: "";
    height: 1px;
    left: 0.95rem;
    opacity: 0;
    position: absolute;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease, width 0.25s ease;
    width: calc(100% - 1.9rem);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--pure-gold-light) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    opacity: 1;
    transform: translateY(0);
}

.header-actions {
    gap: 0.35rem;
}

.header-action-icon {
    align-items: center;
    background: rgba(247, 216, 93, 0.05);
    border: 1px solid rgba(247, 216, 93, 0.08);
    border-radius: 999px;
    color: var(--pure-gold-light);
    display: inline-flex;
    height: 48px;
    justify-content: center;
    position: relative;
    width: 48px;
}

.header-action-icon:hover {
    background: rgba(247, 216, 93, 0.12);
    border-color: rgba(247, 216, 93, 0.18);
    color: var(--pure-white);
}

.cart-count-badge {
    align-items: center;
    background: linear-gradient(135deg, var(--pure-gold-light), var(--pure-gold));
    border: 2px solid var(--pure-black);
    border-radius: 999px;
    color: var(--pure-black);
    display: inline-flex;
    font-size: 10px;
    font-weight: 800;
    justify-content: center;
    min-width: 20px;
    padding: 0 6px;
    position: absolute;
    right: -2px;
    top: -2px;
}

.search-container {
    position: relative;
}

.search-input-wrapper {
    background: rgba(20, 17, 12, 0.98);
    border: 1px solid rgba(247, 216, 93, 0.12);
    border-radius: 24px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
    display: none;
    margin-top: 12px;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 100%;
    width: 320px;
    z-index: 1060;
}

.search-input-wrapper.active {
    animation: slideDown 0.25s ease-out;
    display: block;
}

.search-input-wrapper .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 216, 93, 0.12);
    color: var(--pure-white);
}

.search-input-wrapper .form-control::placeholder {
    color: rgba(247, 241, 230, 0.56);
}

.search-input-wrapper .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--pure-white);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-toggler,
.mobile-drawer-close {
    align-items: center;
    background: transparent;
    border: none;
    color: var(--pure-gold-light);
    display: none;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.mobile-drawer {
    background: linear-gradient(180deg, #120e08 0%, #090705 100%);
    box-shadow: -18px 0 50px rgba(0, 0, 0, 0.26);
    height: 100%;
    padding: 5rem 1.5rem 1.5rem;
    position: fixed;
    right: -100%;
    top: 0;
    transition: right 0.3s ease;
    width: min(320px, calc(100vw - 36px));
    z-index: 2000;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-overlay {
    background: rgba(0, 0, 0, 0.68);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1999;
}

.mobile-drawer-overlay.active {
    display: block;
}

.mobile-nav-link {
    border-bottom: 1px solid rgba(247, 216, 93, 0.1);
    color: rgba(247, 241, 230, 0.82);
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 1rem 0.3rem;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--pure-gold-light);
}

.hero-wrap {
    position: relative;
}

.hero-slider {
    background: #000;
    margin-bottom: 0;
    position: relative;
}

.hero-slider .slick-slide img {
    display: block;
    height: min(78vh, 760px);
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.hero-wrap::after {
    background: linear-gradient(180deg, rgba(5, 4, 3, 0.05) 0%, rgba(5, 4, 3, 0.3) 50%, rgba(5, 4, 3, 0.78) 100%);
    bottom: 0;
    content: "";
    height: 70%;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    z-index: 1;
}

.hero-overlay {
    bottom: 0;
    color: var(--pure-white);
    left: 0;
    padding: 4rem 1rem 5rem;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 2;
}

.hero-overlay .container {
    pointer-events: auto;
}

.hero-eyebrow {
    color: var(--pure-gold-light);
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-headline {
    color: var(--pure-white);
    font-family: var(--premium-font);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
}

.hero-subhead {
    color: rgba(247, 241, 230, 0.88);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    margin: 0 auto 2rem;
    max-width: 620px;
}

.btn-hero-cta {
    align-items: center;
    display: inline-flex;
    font-size: 0.88rem;
    gap: 0.6rem;
    padding: 1rem 2.1rem;
}

.btn-hero-cta i {
    transition: transform 0.25s ease;
}

.btn-hero-cta:hover i {
    transform: translateX(4px);
}

.eyebrow-label {
    color: var(--pure-gold-dark);
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.classic-banner {
    background:
        radial-gradient(circle at top, rgba(247, 216, 93, 0.08), transparent 35%),
        linear-gradient(180deg, rgba(247, 241, 230, 0.92), rgba(255, 255, 255, 0.95));
    margin-bottom: 0;
    padding: 5rem 0;
    position: relative;
}

.classic-banner::before {
    background: linear-gradient(90deg, transparent, rgba(226, 182, 39, 0.26), transparent);
    content: "";
    height: 1px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: 2rem;
}

.products-section,
.product-grid,
.category-grid,
.testimonials-section,
.privacy-policy-container,
.terms-conditions-container,
.contact-container,
.auth-container {
    padding: 5rem 0;
}

.products-section,
.category-grid,
.product-grid,
.privacy-policy-container,
.terms-conditions-container {
    background: transparent;
}

.category-box,
.category-card,
.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 230, 0.92));
    border: 1px solid rgba(154, 109, 7, 0.12);
    border-radius: 28px;
    box-shadow: var(--pure-shadow-soft);
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-box:hover,
.category-card:hover,
.product-card:hover {
    border-color: rgba(226, 182, 39, 0.28);
    box-shadow: 0 26px 56px rgba(20, 14, 8, 0.12);
    transform: translateY(-10px);
}

.category-box {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 1.75rem;
    width: 100%;
}

.category-box img,
.category-card .card-img-top {
    background: linear-gradient(180deg, rgba(247, 241, 230, 0.2), rgba(226, 182, 39, 0.08));
    border-radius: 20px;
    object-fit: cover;
}

.category-box img {
    height: 200px;
    margin-bottom: 1.25rem;
    width: 100%;
}

.category-box h4,
.category-card .card-title {
    color: var(--pure-text);
    font-family: var(--premium-font);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
}

.category-box .category-cta {
    align-items: center;
    color: var(--pure-gold-dark);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 800;
    gap: 0.35rem;
    justify-content: center;
    letter-spacing: 0.2em;
    margin-top: 0.65rem;
    text-transform: uppercase;
    transition: gap 0.25s ease;
}

.category-box:hover .category-cta {
    gap: 0.55rem;
}

.category-card .card-body {
    padding: 1.75rem 1.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.product-card-media {
    border-radius: 20px;
    display: block;
    overflow: hidden;
    position: relative;
}

.product-card img,
.product-card .card-img-top,
.product-detail-img {
    background: linear-gradient(180deg, rgba(247, 241, 230, 0.3), rgba(226, 182, 39, 0.08));
    border-radius: 20px;
}

.product-card img,
.product-card .card-img-top {
    display: block;
    height: 300px;
    object-fit: cover;
    transition: transform 0.45s ease;
    width: 100%;
}

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

.product-card-placeholder {
    align-items: center;
    background: linear-gradient(180deg, rgba(247, 241, 230, 0.6), rgba(226, 182, 39, 0.1));
    border-radius: 20px;
    color: var(--pure-gold-dark);
    display: flex;
    height: 300px;
    justify-content: center;
    width: 100%;
}

.product-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.2rem 0.5rem 0.5rem;
}

.product-card .cat-name,
.brand-badge {
    color: var(--pure-gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.product-card h5,
.product-card .card-title {
    color: var(--pure-text) !important;
    font-family: var(--premium-font);
    font-size: 1.4rem;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.product-card .price,
.price-tag {
    color: var(--pure-gold-dark);
    font-family: var(--premium-font);
    font-weight: 700;
}

.product-card .price {
    font-size: 1.9rem;
}

.price-tag {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.btn-cart {
    padding: 0.95rem 1rem;
}

.qty-label {
    color: var(--pure-text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.quantity-selector {
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(154, 109, 7, 0.14);
    border-radius: 999px;
    display: inline-flex;
    gap: 0.2rem;
    padding: 0.3rem;
}

.btn-qty {
    align-items: center;
    background: linear-gradient(180deg, #ffffff, #f9f2e2);
    border: 1px solid rgba(154, 109, 7, 0.14);
    border-radius: 999px;
    color: var(--pure-text);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 700;
    height: 34px;
    justify-content: center;
    transition: all 0.25s ease;
    width: 34px;
}

.btn-qty:hover {
    background: linear-gradient(180deg, #fff8de, #f4db85);
    border-color: rgba(154, 109, 7, 0.28);
    color: var(--pure-gold-dark);
}

.qty-input {
    -moz-appearance: textfield;
    background: transparent;
    border: none;
    color: var(--pure-text);
    font-weight: 700;
    text-align: center;
    width: 42px;
}

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

.testimonials-section {
    background:
        radial-gradient(circle at top, rgba(247, 216, 93, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(247, 241, 230, 0.8), rgba(255, 255, 255, 0.95));
}

.testimonial-item {
    border-radius: 30px;
    margin: 0 0.8rem;
    padding: 2.6rem 2.2rem 2.2rem;
    position: relative;
    text-align: center;
}

.testimonial-item::before {
    color: rgba(226, 182, 39, 0.28);
    content: "\201C";
    font-family: var(--premium-font);
    font-size: 5rem;
    font-weight: 700;
    left: 50%;
    line-height: 1;
    position: absolute;
    top: -0.3rem;
    transform: translateX(-50%);
}

.testimonial-item p {
    color: var(--pure-text-muted);
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    min-height: 9.5rem;
}

.testimonial-divider {
    background: linear-gradient(90deg, transparent, var(--pure-gold), transparent);
    display: block;
    height: 1px;
    margin: 0 auto 1rem;
    max-width: 60px;
}

.testimonial-author {
    color: var(--pure-text);
    display: block;
    font-family: var(--premium-font);
    font-size: 1.55rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

.testimonial-location {
    color: var(--pure-gold-dark);
    display: block;
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-top: 0.35rem;
    text-transform: uppercase;
}

.slick-dots li button:before {
    color: rgba(154, 109, 7, 0.4);
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    color: var(--pure-gold);
}

.contact-container,
.auth-container {
    min-height: 70vh;
}

.contact-info-box,
.auth-info-box,
.contact-form-box,
.auth-form-box,
.privacy-policy-content,
.terms-conditions-content {
    padding: 2.4rem;
}

.contact-info-box h3,
.auth-info-box h3,
.form-title,
.privacy-policy-content h1,
.terms-conditions-content h1 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.theme-link,
.theme-link-sm {
    color: var(--pure-gold-dark);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.theme-link:hover,
.theme-link-sm:hover {
    color: var(--pure-gold);
}

.contact-details,
footer .social_icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-details li {
    align-items: flex-start;
    color: var(--pure-text-muted);
    display: flex;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.contact-icon {
    color: var(--pure-gold-dark);
    min-width: 24px;
}

.privacy-policy-content h3,
.terms-conditions-content h3 {
    color: var(--pure-text);
    font-family: var(--premium-font);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin: 2rem 0 0.8rem;
}

.privacy-policy-content p,
.privacy-policy-content li,
.terms-conditions-content p,
.terms-conditions-content li {
    color: var(--pure-text-muted);
    font-size: 1rem;
}

.privacy-policy-content ul,
.terms-conditions-content ul {
    padding-left: 1.3rem;
}

.account-shell .card,
.account-avatar-card,
.account-nav-card,
.cart-shell .card,
.checkout-shell .card {
    border-radius: 28px;
}

.account-avatar {
    border: 4px solid rgba(226, 182, 39, 0.18);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
    height: 132px;
    object-fit: cover;
    width: 132px;
}

.account-name {
    font-family: var(--premium-font);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.account-nav .list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(154, 109, 7, 0.08);
    color: var(--pure-text-muted);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
}

.account-nav .list-group-item.active {
    background: rgba(226, 182, 39, 0.1) !important;
    color: var(--pure-gold-dark) !important;
}

.account-nav .list-group-item:last-child {
    border-bottom: none;
}

.account-nav .list-group-item:hover {
    background: rgba(226, 182, 39, 0.06);
    color: var(--pure-text);
}

.cropper-modal-dialog {
    max-width: 640px;
}

.cropper-modal-content {
    background:
        radial-gradient(circle at top, rgba(247, 216, 93, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(247, 241, 230, 0.98) 100%);
    border: 1px solid rgba(154, 109, 7, 0.18);
    border-radius: 30px;
    box-shadow: 0 26px 50px rgba(12, 9, 6, 0.22);
    overflow: hidden;
}

.cropper-modal-header {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 251, 241, 0.95) 0%, rgba(247, 241, 230, 0.9) 100%);
    border-bottom: 1px solid rgba(154, 109, 7, 0.12);
    padding: 1.2rem 1.5rem 1rem;
}

.cropper-modal-title {
    color: var(--pure-text);
    font-family: var(--premium-font);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin: 0;
}

.cropper-close {
    opacity: 0.7;
}

.cropper-close:hover,
.cropper-close:focus {
    opacity: 1;
}

.cropper-modal-body {
    padding: 1.6rem 1.5rem 1.5rem;
}

.cropper-stage {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 1.4rem;
    min-height: 370px;
    position: relative;
}

.loader_modal {
    color: var(--pure-gold-dark);
}

.loader_modal .spinner-border {
    color: var(--pure-gold);
    height: 3rem;
    width: 3rem;
}

.croppie_area {
    width: 100%;
}

#image_demo {
    margin: 0 auto;
}

#image_demo .cr-boundary {
    background: rgba(44, 36, 25, 0.08);
    border-radius: 28px;
}

#image_demo .cr-viewport {
    border: 2px solid rgba(247, 216, 93, 0.75);
    box-shadow: 0 0 0 2000px rgba(5, 4, 3, 0.38);
}

#image_demo .cr-slider-wrap {
    margin: 1.15rem auto 0;
    width: min(88%, 340px);
}

#image_demo .cr-slider {
    accent-color: var(--pure-gold);
}

.cropper-modal-copy {
    align-items: end;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) auto;
}

.cropper-modal-kicker {
    color: var(--pure-gold-dark);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin: 0 0 0.4rem;
    text-transform: uppercase;
}

.cropper-modal-note {
    color: var(--pure-text-muted);
    margin: 0;
}

.cropper-submit-btn {
    min-width: 220px;
}

@media (max-width: 575.98px) {
    .cropper-modal-dialog {
        margin: 1rem;
    }

    .cropper-modal-header,
    .cropper-modal-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cropper-stage {
        min-height: 290px;
    }

    .cropper-modal-copy {
        grid-template-columns: 1fr;
    }

    .cropper-submit-btn {
        min-width: 100%;
        width: 100%;
    }
}

.product-detail-img {
    max-height: 520px;
    object-fit: contain;
    width: 100%;
}

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

.checkout-payment-option {
    border: 1px solid rgba(154, 109, 7, 0.14);
    border-radius: 22px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.checkout-payment-option .form-check-input {
    accent-color: var(--pure-gold);
    border-color: rgba(154, 109, 7, 0.42);
    box-shadow: none;
    margin-top: 0.2rem;
}

.checkout-payment-option .form-check-input:checked {
    background-color: var(--pure-gold);
    border-color: var(--pure-gold);
}

.checkout-payment-option .form-check-input:focus {
    border-color: var(--pure-gold);
    box-shadow: 0 0 0 0.22rem rgba(226, 182, 39, 0.22);
}

.checkout-payment-option .form-check-label {
    color: var(--pure-text);
}

.checkout-payment-option:hover {
    border-color: rgba(226, 182, 39, 0.28);
    box-shadow: var(--pure-shadow-soft);
    transform: translateY(-4px);
}

.checkout-payment-option.is-active {
    border-left: 4px solid var(--pure-gold) !important;
}

.checkout-payment-option.is-disabled {
    cursor: not-allowed;
    opacity: 0.68;
}

.checkout-payment-option.is-disabled:hover {
    border-color: rgba(154, 109, 7, 0.14);
    box-shadow: none;
    transform: none;
}

.footer {
    background:
        radial-gradient(circle at top, rgba(247, 216, 93, 0.09), transparent 26%),
        linear-gradient(180deg, #130f0a 0%, #090705 100%);
    border-top: 1px solid rgba(247, 216, 93, 0.12);
    color: rgba(247, 241, 230, 0.84);
    position: relative;
}

.footer::before {
    background: linear-gradient(90deg, transparent, rgba(247, 216, 93, 0.24), transparent);
    content: "";
    height: 1px;
    left: 12%;
    position: absolute;
    right: 12%;
    top: 26px;
}

.footer-logo {
    max-width: 280px;
}

.footer-title {
    color: var(--pure-gold-light);
    font-family: var(--premium-font);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-links a,
.contact-info-list span,
.footer-bottom {
    color: rgba(247, 241, 230, 0.7) !important;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--pure-gold-light) !important;
}

footer .social_icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    align-items: center;
    background: rgba(247, 216, 93, 0.06);
    border: 1px solid rgba(247, 216, 93, 0.1);
    border-radius: 999px;
    color: rgba(247, 241, 230, 0.82) !important;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.footer-social:hover {
    background: rgba(247, 216, 93, 0.14);
    color: var(--pure-gold-light) !important;
}

.contact-info-list li {
    color: rgba(247, 241, 230, 0.72);
}

.contact-info-list i {
    color: var(--pure-gold-light) !important;
}

.alert-premium {
    align-items: center;
    border: 1px solid rgba(154, 109, 7, 0.12);
    border-left: 4px solid #ccc;
    border-radius: 22px;
    box-shadow: var(--pure-shadow-soft);
    color: var(--pure-text);
    display: flex;
    font-weight: 600;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
}

.alert-premium-success {
    background: rgba(255, 250, 233, 0.96);
    border-left-color: var(--pure-gold);
}

.alert-premium-danger {
    background: rgba(255, 244, 243, 0.96);
    border-left-color: #bf2f27;
}

.alert-premium-warning {
    background: rgba(255, 249, 232, 0.96);
    border-left-color: #c89a19;
}

.alert-icon {
    flex-shrink: 0;
    height: 22px;
    width: 22px;
}

.alert-premium-success .alert-icon {
    color: var(--pure-gold-dark);
}

.alert-premium-danger .alert-icon {
    color: #bf2f27;
}

.alert-premium-warning .alert-icon {
    color: #c89a19;
}

.premium-toast {
    background: rgba(22, 18, 12, 0.9) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    border-left: 4px solid var(--pure-gold) !important;
    border-radius: 18px !important;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26) !important;
    padding: 0.9rem 1.1rem !important;
}

.swal2-title {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.swal2-timer-progress-bar {
    background: linear-gradient(90deg, var(--pure-gold), var(--pure-gold-light)) !important;
    height: 3px !important;
}

.back-to-top {
    align-items: center;
    background: linear-gradient(135deg, var(--pure-gold-light), var(--pure-gold));
    border: none;
    border-radius: 999px;
    bottom: 40px;
    box-shadow: 0 18px 30px rgba(154, 109, 7, 0.24);
    color: var(--pure-black) !important;
    cursor: pointer;
    display: flex;
    height: 52px;
    justify-content: center;
    opacity: 0;
    position: fixed;
    right: 30px;
    transition: all 0.3s ease;
    visibility: hidden;
    width: 52px;
    z-index: 1000;
}

.back-to-top.show {
    bottom: 28px;
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    box-shadow: 0 22px 36px rgba(154, 109, 7, 0.28);
}

.pure-loader-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.pure-spinner {
    animation: pure-spin 1s linear infinite;
    border: 3px solid rgba(247, 216, 93, 0.12);
    border-radius: 50%;
    border-top-color: var(--pure-gold);
    height: 60px;
    margin-bottom: 18px;
    width: 60px;
}

.pure-loader-text {
    color: var(--pure-gold-light);
    font-family: var(--premium-font);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

@keyframes pure-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.blockOverlay {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

@media (max-width: 1199px) {
    .hero-slider .slick-slide img {
        height: 62vh;
    }
}

@media (max-width: 991px) {
    .mobile-toggler,
    .mobile-drawer-close {
        display: inline-flex;
    }

    .nav-links-wrapper {
        display: none !important;
    }

    .header-top-bar .social-links {
        display: none !important;
    }

    .search-input-wrapper {
        right: -58px;
        width: 280px;
    }

    .order-summary-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .banner-section,
    .page-hero,
    .classic-banner,
    .products-section,
    .product-grid,
    .category-grid,
    .testimonials-section,
    .privacy-policy-container,
    .terms-conditions-container,
    .contact-container,
    .auth-container {
        padding: 3.75rem 0;
    }

    .hero-slider .slick-slide img {
        height: 420px;
    }

    .hero-overlay {
        padding: 2.5rem 1rem 3rem;
    }

    .hero-headline {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
    }

    .hero-subhead {
        font-size: 0.95rem;
    }

    .category-box img {
        height: 170px;
    }

    .product-card img,
    .product-card .card-img-top,
    .product-card-placeholder {
        height: 240px;
    }

    .contact-info-box,
    .auth-info-box,
    .contact-form-box,
    .auth-form-box,
    .privacy-policy-content,
    .terms-conditions-content,
    .testimonial-item {
        border-radius: 22px;
        padding: 1.6rem;
    }

    .testimonial-item p {
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .header-main {
        height: 84px;
    }

    .logo-wrapper img,
    .site-logo {
        max-height: 68px;
    }

    .search-input-wrapper {
        max-width: calc(100vw - 40px);
        right: -16px;
        width: calc(100vw - 40px);
    }

    .back-to-top {
        bottom: 22px;
        height: 48px;
        right: 18px;
        width: 48px;
    }
}
