@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;

  /* Brand Colors */
  --color-jet-black: hsl(0 0% 4%);
  --color-royal-gold: hsl(42 87% 63%);
  --color-antique-gold: hsl(40 67% 55%);
  --color-soft-ivory: hsl(36 33% 94%);
  --color-cocoa-brown: hsl(17 26% 34%);
  --color-champagne: hsl(38 60% 75%);
  --color-champagne-dark: hsl(37, 17%, 29%);
  --color-charcoal: hsl(0 0% 10%);
  --color-gold-dust: hsl(30 17% 13%);
  --color-soft-glow: hsl(43 100% 73%);
  
  --color-background: var(--color-jet-black);
  --color-foreground: var(--color-soft-ivory);
  
  --color-primary: var(--color-royal-gold);
  --color-primary-foreground: var(--color-jet-black);
  
  --color-secondary: var(--color-antique-gold);
  --color-secondary-foreground: var(--color-jet-black);
  
  --color-accent: var(--color-royal-gold);
  --color-accent-foreground: var(--color-jet-black);
  
  --color-muted: var(--color-charcoal);
  --color-muted-foreground: var(--color-soft-ivory);
  
  --color-card: var(--color-charcoal);
  --color-card-foreground: var(--color-soft-ivory);
  
  --color-border: var(--color-gold-dust);
  --color-input: var(--color-gold-dust);
  --color-ring: var(--color-royal-gold);
  
  --color-error: red;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --reel-max-height: 65vh;   /* desktop */
  --reel-aspect: 9 / 16;    /* vertical video */
}

/* === Main CSS === */
html {
    scroll-behavior: smooth;
}

.text-success-cm {
    color: #ade069;
}

body {
    position: relative;
    min-height: 100vh;
    min-width: 100vw;
    background: var(--color-background);
    font-family: var(--font-sans);
    color: var(--color-foreground);
    overflow-x: hidden;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-royal-gold);
    font-weight: 600; 
    letter-spacing: 0.025em;
}

a {
    text-decoration: none !important;
}

.disabled > a {
  pointer-events: none !important;  /* Prevents clicks */
  cursor: not-allowed !important;   /* Show disabled cursor */
  text-decoration: none !important; /* Optional */
  opacity: 0.6 !important;
}


.text-balance {
    text-wrap: balance;
}

.glass-card {
    background: rgba(26, 26, 26, 0.5); /* charcoal */
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.premium-transition {
    transition: all 0.5s ease-out;
}

.gold-glow {
    text-shadow: 0 0 20px rgba(242, 193, 78, 0.3);
}

.text-gold {
    color: var(--color-royal-gold);
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none; 
  -ms-user-select: none; 
  user-select: none;
}

.hero-section .gs-hero-eyebrow,
.hero-section .gs-hero-title,
.hero-section .gs-hero-text,
.hero-section .gs-hero-actions {
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
}

.page-content-main {
    padding: 8rem 0 0 0;
}

.page-content-main-shop {
    padding: 2.5rem 0;
}

/* === Toast === */

/* Container */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

/* Toast */
.toast-item {
    pointer-events: auto;
    min-width: 280px;
    max-width: 360px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: hsl(0 0% 10%);
    color: var(--color-soft-ivory);
    border-left: 3px solid var(--color-royal-gold);

    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* Variants */
.toast-item.success { border-color: hsl(140 55% 45%); }
.toast-item.danger  { border-color: hsl(0 70% 55%); }
.toast-item.warning { border-color: hsl(38 90% 55%); }
.toast-item.default { border-color: var(--color-royal-gold); }

/* Close button */
.toast-item button {
    background: none;
    border: none;
    color: inherit;
    opacity: .6;
    cursor: pointer;
}

/* Animations */
.toast-enter {
    transition: all .25s ease;
}
.toast-enter-start {
    opacity: 0;
    transform: translateY(-10px) scale(.96);
}
.toast-enter-end {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast-leave {
    transition: all .2s ease;
}
.toast-leave-start {
    opacity: 1;
}
.toast-leave-end {
    opacity: 0;
    transform: translateY(-6px);
}


/* === Toast End === */

/* === SCROLLBAR === */

/* WebKit Browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-jet-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.12) var(--color-jet-black);
}

/* === Header CSS === */

.main-header {
    background: transparent;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(11, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
}

.header-icon {
    color: var(--color-soft-ivory);
    transition: color 0.2s ease;
}

.header-icon:hover {
    color: var(--color-royal-gold);
}

.nav-link-custom {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-soft-ivory);
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-link-custom.active,
.nav-link-custom:hover {
    color: var(--color-royal-gold);
}

.btn-gold {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.btn-gold:hover {
    background: var(--color-antique-gold);
    color: var(--color-jet-black);
}

.btn-gold:disabled {
    background: var(--color-royal-gold) !important;
    opacity: 0.3 !important;
}

.btn-gold:disabled.atc {
    opacity: 1 !important;
}

/* Mobile menu */

.mobile-menu {
    background: var(--color-jet-black);
    border-right: 1px solid var(--color-border);
}

/* header */

.mobile-menu-header {
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
}

.mobile-menu-logo img {
    display: block;
}

/* nav */

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.mobile-nav-links a {
    color: var(--color-soft-ivory);
    text-decoration: none;
    transition: color 0.25s ease;
}

.mobile-nav-links a:hover {
    color: var(--color-royal-gold);
}

/* footer */

.mobile-menu-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

/* === Header CSS End === */


/* === Hero Section */

.hero-section {
    height: 100vh;
    background: var(--color-jet-black);
    position: relative;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .hero-bg img {
        object-position: center;
    }
}

/* overlays */

.hero-overlay-horizontal {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(11, 10, 10, 0.85),
        rgba(11, 10, 10, 0.45),
        transparent
    );
}

.hero-overlay-vertical {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 10, 10, 0.9),
        transparent
    );
}

/* content */

.hero-content {
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-royal-gold);
    border-left: 2px solid var(--color-royal-gold);
    padding-left: 1rem;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--color-soft-ivory);
    margin-bottom: 1.25rem;
}

.hero-description {
    max-width: 520px;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-soft-ivory);
    opacity: 0.80;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* buttons */

.btn-gold-lg {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    padding: 0.9rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.2);
}

.btn-gold-lg:hover {
    background: var(--color-antique-gold);
    color: var(--color-jet-black);
}

.btn-outline-gold-lg {
    border: 1px solid var(--color-royal-gold);
    color: var(--color-royal-gold);
    padding: 0.9rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.btn-outline-gold-lg:hover {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
}


/* === Hero Section End === */

/* === Video Section Start === */

.video-section {
    background: var(--color-jet-black);
    border-bottom: 2px solid var(--color-border);
}

/* Video */

.video-frame {
    position: relative;
}

.video-border {
    position: absolute;
    inset: -1rem;
    border: 1px solid rgba(217, 164, 65, 0.3);
    transition: border-color 0.7s ease;
    z-index: 0;
}

.video-frame:hover .video-border {
    border-color: rgba(242, 193, 78, 0.3);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.7s ease;
}

.video-frame:hover video {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 10, 10, 0.4),
        transparent
    );
    pointer-events: none;
}

/* Content */

.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-royal-gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    color: var(--color-soft-ivory);
    margin-bottom: 1rem;
}

.section-divider {
    width: 5rem;
    height: 1px;
    background: var(--color-royal-gold);
    margin-bottom: 1.5rem;
}

.section-description {
    max-width: 560px;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.7);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Watch label */

.watch-line {
    width: 3rem;
    height: 1px;
    background: var(--color-border);
}

.watch-text {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(247, 242, 234, 0.4);
}

/* === Video Section End === */

/* === Category Section Start === */

.collections-section {
    background: var(--color-jet-black);
    border-bottom: 1px solid var(--color-border);
}

/* Card */

.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

/* overlays */

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 10, 10, 0.4);
    transition: background 0.5s ease;
    z-index: 1;
}

.category-card:hover .category-overlay {
    background: rgba(11, 10, 10, 0.2);
}

/* content */

.category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(11, 10, 10, 0.85),
        transparent
    );
    z-index: 2;
}

.category-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-royal-gold);
    margin-bottom: 0.5rem;
    transform: translateY(8px);
    transition: transform 0.5s ease;
}

.category-card:hover h3 {
    transform: translateY(0);
}

.category-content p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.7);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.5s ease;
    transition-delay: 0.075s;
}

.category-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.category-line {
    width: 3rem;
    height: 1px;
    background: var(--color-royal-gold);
    margin-top: 1rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.category-card:hover .category-line {
    transform: scaleX(1);
}


/* === Category Section End === */

/* === Features Section === */

.features-section {
    background: var(--color-charcoal);
}

/* feature card */

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* icon */

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-jet-black);
    color: var(--color-royal-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
}

/* text */

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-soft-ivory);
    margin-top: 0.5rem;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.6);
    max-width: 200px;
    line-height: 1.6;
}

/* === Features Section End === */

/* === Product Section Start === */

.products-section {
    background: var(--color-jet-black);
}

/* header link */

.view-all-link {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-royal-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.25s ease;
}

.view-all-link i {
    transition: transform 0.25s ease;
}

.view-all-link:hover {
    color: var(--color-soft-ivory);
}

.view-all-link:hover i {
    transform: translateX(4px);
}

/* product card */

.product-card {
    cursor: pointer;
}

.product-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.product-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* tag */

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    z-index: 2;
}

/* action */

.product-action {
    position: absolute;
    /* inset-x: 0; */
    bottom: 0;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-action {
    transform: translateY(0);
}

/* title & price */

.product-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-soft-ivory);
    margin-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--color-royal-gold);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
}

.price-original {
    font-size: 0.8rem;
    color: rgba(247, 242, 234, 0.45);
    text-decoration: line-through;
}

.price-sale {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-royal-gold);
}

/* === Product Section End === */

/* === Story Section Start === */

.story-section {
    background: var(--color-charcoal);
    color: var(--color-soft-ivory);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* content */

.story-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.story-text {
    max-width: 520px;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.7);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* stats */

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.story-stats h4 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-royal-gold);
    margin-bottom: 0.25rem;
}

.story-stats p {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
}

/* image */

.story-image {
    position: relative;
    height: 600px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 1s ease;
}

.story-image:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.story-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 10, 10, 0.3);
    z-index: 1;
}

/* frames */

.story-frame {
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid var(--color-border);
    z-index: 0;
}

.frame-left {
    bottom: -2rem;
    left: -2rem;
}

.frame-right {
    top: -2rem;
    right: -2rem;
}

/* === Story Section End === */

/* === Testimonials Section Start === */

.testimonials-section {
    background: var(--color-jet-black);
}

/* card */

.testimonial-card {
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    position: relative;
    height: 100%;
    transition: border-color 0.5s ease;
}

.testimonial-card:hover {
    border-color: var(--color-royal-gold);
}

/* quote icon */

.quote-icon {
    font-size: 2.2rem;
    color: var(--color-royal-gold);
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.2;
}

/* text */

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(247, 242, 234, 0.8);
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

/* footer */

.testimonial-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
    transition: border-color 0.5s ease;
}

.testimonial-card:hover .testimonial-footer {
    border-color: var(--color-royal-gold);
}

.testimonial-footer h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    margin-bottom: 0.2rem;
}

.testimonial-footer span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.4);
}

/* === Testimonials Section End === */

/* === CTA Section === */

.cta-section {
    background: var(--color-jet-black);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* subtle radial glow */

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(242, 193, 78, 0.05) 0%,
        transparent 70%
    );
}

/* text */

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--color-soft-ivory);
}

.cta-text {
    max-width: 640px;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.6);
    line-height: 1.7;
}

/* button */

.btn-gold-cta {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    padding: 1.1rem 3.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.btn-gold-cta:hover {
    background: var(--color-antique-gold);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(242, 193, 78, 0.2);
}

/* === CTA Section End === */

/* === Footer Section Start === */

.footer-section {
    background: var(--color-jet-black);
    color: var(--color-soft-ivory);
    border-top: 1px solid var(--color-border);
}

/* brand */

.footer-brand {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.5);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 1.5rem;
}

/* socials */

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    font-size: 1.1rem;
    color: rgba(247, 242, 234, 0.4);
    transition: color 0.25s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--color-royal-gold);
}

/* titles */

.footer-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    margin-bottom: 2rem;
}

/* links */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-royal-gold);
}

/* newsletter */

.footer-form {
    display: flex;
    gap: 0.5rem;
}

.footer-form input {
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    padding: 0.75rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-soft-ivory);
    width: 100%;
}

.footer-form input::placeholder {
    color: rgba(247, 242, 234, 0.25);
}

.footer-form input:focus {
    outline: none;
    border-color: var(--color-royal-gold);
}

.footer-form button {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    padding: 0.75rem 1.25rem;
    border: none;
    transition: background 0.25s ease;
}

.footer-form button:hover {
    background: var(--color-antique-gold);
}

/* bottom */

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(247, 242, 234, 0.3);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-legal a {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(247, 242, 234, 0.3);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--color-royal-gold);
}

/* responsive */

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}


/* === Footer Section Stop === */

/* ============================= */
/* AUTH MODAL (FRONTEND) */
/* ============================= */

.auth-modal-content {
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* left image */

.auth-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); */
    opacity: 0.7;
}

/* right content */
.auth-modal-dismiss {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--color-royal-gold);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.auth-modal-dismiss:hover {
    transform: rotate(90deg);
}

.auth-modal-body {
    padding: 2.5rem;
}

.auth-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-soft-ivory);
    margin-bottom: 0.5rem;
}

.auth-subtext {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.55);
    margin-bottom: 1.5rem;
}

/* inputs */

.auth-modal .form-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.6);
}

.auth-modal .form-control {
    background: hsl(0 0% 6%);
    border: 1px solid var(--color-border);
    color: var(--color-soft-ivory);
    font-size: 0.85rem;
    padding: 0.50rem;
}

.form-control.err {
    border: 1px solid var(--color-error) !important;
}

.inp-error {
    font-size: 0.80rem;
    color: var(--color-error);
    font-weight: 400;
    opacity: 0.8;
}

.auth-modal .form-control::placeholder {
    color: rgba(247, 242, 234, 0.25);
}

.auth-modal .form-control:focus {
    border-color: var(--color-royal-gold);
    box-shadow: 0 0 0 2px rgba(242, 193, 78, 0.2);
}

/* button */

.btn-gold {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
}

.btn-gold:hover {
    background: var(--color-antique-gold);
}

/* links */

.auth-link {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    text-decoration: none;
}

.auth-link:hover {
    color: var(--color-soft-ivory);
}

/* divider */

.auth-divider {
    border-color: rgba(247, 242, 234, 0.6);
    margin: 1.5rem 0;
}

/* footer */

.auth-footer-text {
    font-size: 0.7rem;
    color: rgba(247, 242, 234, 0.6);
    text-align: center;
}

/* ============================= */
/* AUTH MODAL END (FRONTEND) */
/* ============================= */

/* =================== */
/*      Page       */
/* =================== */

.collections-hero {
    position: relative;
    min-height: 20vh;
    padding-top: 88px;
    overflow: hidden;
    background: var(--color-jet-black);
    border-bottom: 1px solid var(--color-gold-dust);
}

/* dark overlay */
.collections-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* image itself */

.collections-hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
}

/* dark overlay on top of image */

.collections-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.75)
    );
    z-index: 1;
}


/* content */

.collections-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* breadcrumb */

.collections-breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.6);
    margin-bottom: 1rem;
}

.collections-breadcrumb a {
    color: rgba(247, 242, 234, 0.6);
    text-decoration: none;
}

.collections-breadcrumb a:hover {
    color: var(--color-royal-gold);
}

.collections-breadcrumb span {
    margin: 0 0.5rem;
}

.collections-breadcrumb .active {
    color: var(--color-royal-gold);
}

/* title */

.collections-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 3rem);
    font-weight: 600;
    color: var(--color-soft-ivory);
    letter-spacing: 0.05em;
}

/* ============================= */
/* MOBILE REFINEMENT */
/* ============================= */

@media (max-width: 767px) {
    .collections-hero {
        min-height: 50vh;
    }

    .collections-title {
        font-size: 2.5rem;
    }
}

/* ============================= */
/* COLLECTION BLOCK */
/* ============================= */

.collection-block {
    margin-bottom: 6rem;
}

/* image */

.collection-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    opacity: 0.75;
    transition: all 0.8s ease;
}

.collection-image img:hover {
    opacity: 1;
}

/* content */

.collection-content {
    padding-left: 3rem;
    padding-right: 3rem;
}

.collection-content-inner {
    border-left: 2px solid var(--color-royal-gold);
    padding-left: 1rem;
}

.collection-eyebrow {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    margin-bottom: 0.75rem;
}

.collection-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-soft-ivory);
    margin-bottom: 1rem;
}

.collection-description {
    max-width: 520px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(247, 242, 234, 0.7);
    margin-bottom: 2rem;
}

/* CTA */
.collection-more {
    color: var(--color-royal-gold);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.collection-more:hover {
    letter-spacing: 0.3em;
}

/* ============================= */
/* REVERSED VARIANT */
/* ============================= */

.collection-block.is-reversed .row {
    flex-direction: row-reverse;
}

.collection-block.is-reversed .collection-content {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* ============================= */
/* MOBILE REFINEMENT */
/* ============================= */

@media (max-width: 767px) {

    .collection-image img {
        height: 360px;
    }

    .collection-block.is-reversed .collection-content,
    .collection-content {
        padding: 0 1rem;
        text-align: left;
    }

    .collection-block.is-reversed .row {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .collection-block.is-reversed .collection-content-inner {
        border-left: none;
        border-right: 2px solid var(--color-royal-gold);
        padding-left: 0;
        padding-right: 1rem;
        text-align: right;
    }
}

/* ============ */
/* Shop Page */
/* ============ */

.shop-wrapper {
    min-height: 100vh;
    width: 100%;
    padding-top: 8rem;
}

/* ============================= */
/* SHOP PAGE LAYOUT */
/* ============================= */

.shop-filters-sticky {
    position: sticky;
    top: 8rem; /* matches header + breathing space */
}

/* ============================= */
/* SHOP TOOLBAR */
/* ============================= */

.shop-toolbar {
    border-bottom: 1px solid var(--color-border);
}

/* mobile filter button */

.btn-outline-gold {
    border: 1px solid var(--color-border);
    color: var(--color-soft-ivory);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0;
    background: transparent;
}

.btn-outline-gold:hover {
    border-color: var(--color-royal-gold);
    color: var(--color-royal-gold);
}

/* view toggle */

.shop-view-toggle i {
    font-size: 1rem;
    color: rgba(247, 242, 234, 0.4);
    cursor: pointer;
    transition: color 0.2s ease;
}

.shop-view-toggle i.active,
.shop-view-toggle i:hover {
    color: var(--color-royal-gold);
}

/* sort label */

.shop-sort-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.4);
    font-weight: 600;
}

/* sort select */

.shop-sort-select {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-soft-ivory);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0.5rem 0.75rem;
}

.shop-sort-select:focus {
    border-color: var(--color-royal-gold);
    box-shadow: 0 0 0 2px rgba(242, 193, 78, 0.2);
}

select.shop-sort-select option {
  background-color: var(--color-jet-black);
  font-size: 12px;
  letter-spacing: 0.15em;
  /* font-weight: 600; */
  padding: 8px 3px;
  color: #bebebe;
}

/* ============================= */
/* PRODUCT GRID */
/* ============================= */


/* ============================= */
/* PRODUCT CARD */
/* ============================= */

.product-card {
    cursor: pointer;
}

/* image wrapper with aspect ratio */

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

/* image */

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 1s ease, opacity 0.6s ease;
}

/* hover image */

.product-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* hover CTA */
.product-hover-icons {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    transform: translateX(120%);
    opacity: 0;

    transition: transform 0.5s ease, opacity 0.3s ease;
}

/* reveal on hover */

.product-card:hover .product-hover-icons {
    transform: translateX(0);
    opacity: 1;
}

/* icon button */

.icon-btn {
    width: 38px;
    height: 38px;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.25s ease;
}

.icon-btn i {
    font-size: 1rem;
    color: rgb(241, 241, 241);
}

.icon-btn i.wishlisted {
    color: red;
}


/* hover state */

.icon-btn:hover {
    background: var(--color-charcoal);
    border-color: var(--color-charcoal);
}

/* CTA button */

/* .btn-gold {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    height: 3rem;
} */

/* ============================= */
/* PRODUCT META */
/* ============================= */

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-category {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    font-weight: 700;
    margin-bottom: 4px;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-soft-ivory);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--color-royal-gold);
}

/* ============================= */
/* PAGINATION */
/* ============================= */

.shop-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.shop-pagination .line {
    width: 3rem;
    height: 1px;
    background: var(--color-border);
}

.shop-load-more {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(247, 242, 234, 0.4);
    text-decoration: none;
}

.shop-load-more:hover {
    color: var(--color-royal-gold);
}

/* ============================= */
/* DESKTOP FILTERS */
/* ============================= */

.shop-filters-sticky {
    position: sticky;
    top: 8rem;
}

.shop-filters {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.filter-title {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-royal-gold);
    margin-bottom: 1rem;
}

/* ============================= */
/* MOBILE FILTER BOTTOM SHEET */
/* ============================= */

.mobile-filters-sheet {
    height: 85vh;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.mobile-filters-sheet .offcanvas-header {
    border-bottom: 1px solid var(--color-border);
}

.mobile-filters-sheet .offcanvas-title {
    font-family: var(--font-serif);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
}

.mobile-filters-sheet .offcanvas-body {
    overflow-y: auto;
    padding-bottom: 6rem;
}

.mobile-filters-sheet .offcanvas-footer {
    position: sticky;
    bottom: 0;
    padding: 1rem;
    background: var(--color-jet-black);
    border-top: 1px solid var(--color-border);
}


/* ============================= */
/* FILTER CHECKBOXES */
/* ============================= */

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(247, 242, 234, 0.7);
    user-select: none;
}

/* hide native checkbox */
.filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* checked state */
.filter-option input:checked + span::before {
    content: "✓";
}

/* checked visual */
.filter-option input:checked ~ span {
    color: var(--color-soft-ivory);
}

/* gold fill */
.filter-option input:checked ~ span::after {
    content: "";
}

/* hover */
.filter-option:hover {
    color: var(--color-soft-ivory);
}

/* checkbox box using pseudo on span */
.filter-option span {
    position: relative;
    padding-left: 1.75rem;
}

.filter-option span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-border);
}

.filter-option input:checked + span::before {
    background: var(--color-royal-gold);
    border-color: var(--color-royal-gold);
}

/* ============================= */
/* PRICE RANGE – CUSTOM STYLE */
/* ============================= */

.price-range {
    padding-top: 0.5rem;
}

.price-range-input {
    /* -webkit-appearance: none; */
    /* appearance: none; */
    width: 100%;
    height: 4px;
    border: none;
    background: rgba(247, 242, 234, 0.15);
    outline: none;
    cursor: pointer;
    accent-color: var(--color-royal-gold);
}

.price-range-input::-moz-range-track {
    height: 4px;
    background: rgba(247, 242, 234, 0.15);
}

.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--color-royal-gold);
    border-radius: 50%;
    margin-top: -2px;
    box-shadow: 0 0 0 4px rgba(242, 193, 78, 0.25);
    transition: transform 0.2s ease;
}

.price-range-input::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--color-royal-gold);
    border-radius: 50%;
    border: none;
}

/* hover feedback */
.price-range-input:hover::-webkit-slider-thumb {
    transform: scale(1.1);
}

/* values */
.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(247, 242, 234, 0.5);
}

.rating-filter span {
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

/* ============================= */
/* PRODUCT BREADCRUMB */
/* ============================= */

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.4);
}

.product-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-breadcrumb a:hover {
    color: var(--color-royal-gold);
}

.product-breadcrumb .separator {
    opacity: 0.5;
}

.product-breadcrumb .active {
    color: var(--color-royal-gold);
}

/* .product-page {
    padding-bottom: 6rem;
} */

/* .single-product  .product-main {
    margin-top: 2rem;
} */

.single-product  .product-gallery {
    display: flex;
    gap: 1.5rem;
    max-height: 500px;
    align-items: flex-start;
    column-gap: 1.75rem;
    position: sticky;
    top: 7.5rem;
}

@media (max-width: 991.98px) {
    .single-product .product-gallery {
        position: static;
        top: auto;
        max-height: none;
    }
}

.single-product  .product-image-main {
    position: relative;
    /* aspect-ratio: 5 / 5; */
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    overflow: hidden;
    flex: 1;
    max-height: 520px;
}

.single-product .product-image-main .product-wishlist-holder {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.product-wishlist-holder .heart-wishlist {
    border: 1px solid transparent;
    padding: 0.3rem 0.58rem;
    font-size: 20px;
    border-radius: 50%;
    color: var(--color-royal-gold);
    background-color: rgba(26, 25, 25, 0.575);
    backdrop-filter: blur(1px);
}

.product-wishlist-holder .heart-wishlist:hover {
    background-color: rgba(66, 64, 64, 0.575);
}

.product-wishlist-holder .heart-wishlist .wishlisted {
    color: rgb(255, 65, 65) !important;
}

.single-product  .product-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: transform 0.6s ease;
}

.single-product  .product-image-main:hover img {
    transform: scale(1.08);
}

/* Thumbnails */
.single-product  .product-thumbs {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
    width: 72px;
}

.single-product  .product-thumbs .thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-border);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
    width: 72px;
    opacity: 0.4;
}

.single-product  .product-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product  .product-thumbs .thumb.active,
.single-product  .product-thumbs .thumb:hover {
    opacity: 1;
    border-color: var(--color-royal-gold);
}

.single-product  .product-summary-inner {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    /* gap: 1.75rem; */
}

/* .single-product  .product-category {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-royal-gold);
} */

.single-product  .product-title {
    font-family: var(--font-serif);
    font-size: clamp(0.8rem, 4vw, 1.3rem);
    line-height: 1.15;
    letter-spacing: 0.1ch;
    color: var(--color-soft-ivory);
    margin-bottom: 8px;
}

.single-product  .product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.5);
    margin-bottom: 10px;
}

.single-product  .product-rating .rate-block {
    background: var(--color-royal-gold);
    padding: 1px 3px;
    border-radius: 2px;
    color: var(--color-jet-black);
    text-align: center;
    font-weight: 700;
}

.single-product  .product-rating span {
    font-size: 10px;
}

.single-product  .product-price .price-sale {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--color-royal-gold);
}

.single-product  .product-price .price-discount {
    font-size: 0.85rem;
    color: #ade069;
    font-weight: 600;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin: 1.3rem 0;
}

.product-attributes {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.attribute-group label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.6);
    font-weight: 700;
}

/* Colors */

.color-options {
    display: flex;
    gap: 0.75rem;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    transition: all 0.25s ease;
}

.color-swatch:hover,
.color-swatch.active {
    border-color: var(--color-royal-gold);
    transform: scale(1.05);
}

/* Variants */

.variant-options {
    display: flex;
    gap: 0.75rem;
}

.variant-options label {
    cursor: pointer;
}

.variant-options input {
    display: none;
}

.variant-options span {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    color: rgba(247, 242, 234, 0.6);
    transition: all 0.25s ease;
}

.variant-options input:checked + span,
.variant-options span:hover {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    border-color: var(--color-royal-gold);
}

.quantity-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
}

.quantity-box button {
    padding: 0.5rem 0.75rem;
    background: transparent;
    color: rgba(247, 242, 234, 0.6);
    border: none;
    transition: color 0.2s ease;
}

.quantity-box button:hover {
    color: var(--color-royal-gold);
}

.quantity-box span {
    width: 48px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-gold {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    border: none;
    padding: 1.25rem;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 800;
}

.btn-outline-gold {
    border: 1px solid var(--color-border);
    color: var(--color-soft-ivory);
    padding: 1rem;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.btn-outline-gold:hover {
    border-color: var(--color-royal-gold);
    color: var(--color-royal-gold);
}

.btn-outline-gold-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-soft-ivory);
}

.btn-outline-gold-icon:hover {
    border-color: var(--color-royal-gold);
    color: var(--color-royal-gold);
}

.product-trust {
    margin-top: 2.5rem;
}

.trust-item svg {
    width: 34px;
    color: var(--color-royal-gold);
    stroke-width: 0.5;
}

.trust-title {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-royal-gold);
}

.trust-text {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 242, 234, 0.4);
}

.product-details {
    margin-top: 8rem;
}

/* ============================= */
/* PRODUCT DETAIL TABS */
/* ============================= */

.product-tabs {
    display: flex;
    gap: 3rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.product-tabs li {
    list-style: none;
}

.product-tabs button {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(247, 242, 234, 0.45);
    position: relative;
    transition: color 0.3s ease;
}

/* Hover (subtle, not gold-heavy) */
.product-tabs button:hover {
    color: rgba(247, 242, 234, 0.75);
}

/* Active state */
.product-tabs button.active {
    color: var(--color-royal-gold);
}

/* Active underline */
.product-tabs button.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.75rem;
    width: 100%;
    height: 2px;
    background: var(--color-royal-gold);
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    background-color: var(--color-secondary);
}

.attr-color .swatch {
    width: 32px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: inline-block;
    transition: all 0.25s ease;
}

.attr-color input:checked + .swatch {
    border-color: var(--color-royal-gold);
    box-shadow: 0 0 0 2px rgba(242,193,78,0.4);
}

.attr-image .image-swatch {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.attr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attr-image input:checked + .image-swatch {
    border-color: var(--color-royal-gold);
    box-shadow: 0 0 0 2px rgba(242,193,78,0.4);
}

.attr-option input:disabled + .swatch,
.attr-option input:disabled + .image-swatch,
.attr-option input:disabled + .text-label {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.variant-options .attr-option input:disabled {
    cursor: not-allowed !important;
}

.attr-option {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.attr-option input:disabled + * {
    filter: grayscale(100%);
}

/* ===== Reviews Empty State ===== */
.reviews-empty-icon i {
    font-size: 48px;
    color: var(--color-royal-gold);
    opacity: 0.6;
}

.reviews-empty-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-soft-ivory);
    margin-bottom: 0.5rem;
}

.reviews-empty-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    max-width: 420px;
    margin: 0 auto;
}


/* ===== Reviews Filled State ===== */
.reviews-wrapper {
    max-width: 900px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.reviews-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-soft-ivory);
}

.reviews-summary {
    text-align: right;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-royal-gold);
    margin-right: 0.5rem;
}

.rating-stars {
    color: var(--color-royal-gold);
    letter-spacing: 2px;
}

.rating-count {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
}


/* ===== Review Item ===== */
.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-royal-gold);
}

.review-location {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
}

.review-rating {
    font-size: 0.85rem;
    color: var(--color-royal-gold);
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
}

.review-date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
}

/* About Page */

.story-hero {
    height: 60vh;
}

.story-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.story-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%);
}

.story-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4),
        var(--color-jet-black)
    );
}

.story-breadcrumb {
    font-size: 10px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    font-weight: 700;
}

.story-hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-family: var(--font-serif);
    line-height: 1.15;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
}

.story-eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-heading {
    font-size: 2.2rem;
    font-family: var(--font-serif);
}

.story-text {
    font-size: 1.05rem;
    font-style: italic;
    font-family: var(--font-serif);
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

.value-title {
    color: var(--color-royal-gold);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.value-text {
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    line-height: 1.7;
}

.stat-value {
    font-size: 2.6rem;
    font-family: var(--font-serif);
    color: var(--color-royal-gold);
}

.stat-label {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    font-weight: 700;
}

.closing-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.closing-quote {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
}

.closing-line {
    width: 80px;
    height: 1px;
    background: var(--color-royal-gold);
    margin: auto;
}

/* Skeleton Card */
.product-skeleton {
    background: var(--color-charcoal);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

/* Image placeholder */
.skeleton-image {
    aspect-ratio: 3 / 4;
    background: linear-gradient(
        110deg,
        var(--color-charcoal) 30%,
        rgba(242,193,78,0.08) 45%,
        var(--color-charcoal) 60%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

/* Content area */
.skeleton-content {
    padding: 12px;
}

.skeleton-line {
    height: 10px;
    margin-bottom: 8px;
    background: linear-gradient(
        110deg,
        var(--color-charcoal) 30%,
        rgba(242,193,78,0.08) 45%,
        var(--color-charcoal) 60%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-line.price {
    width: 30%;
    height: 12px;
    margin-top: 10px;
}

/* Shimmer Animation */
@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.btn-sm {
    padding: 10px !important;
}

/* === Contact Grid ==== */

/* GRID TWEAK */
.contact-grid {
    margin-top: 2rem;
}

/* LEFT CONTENT */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-royal-gold);
}

.contact-highlight {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(245,245,245,0.7);
    line-height: 1.6;
}

.contact-text-lg {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(245,245,245,0.7);
}

.contact-text-sm {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: rgba(245,245,245,0.7);
}

.contact-note {
    border-top: 1px solid rgba(242,193,78,0.2);
    padding-top: 1.5rem;
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(245,245,245,0.4);
}

/* FORM */
.contact-form-wrapper {
    position: relative;
    background: rgba(30,30,30,0.4);
    border: 1px solid rgba(242,193,78,0.2);
    padding: 2.5rem;
}

.form-corner-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-top: 1px solid rgba(242,193,78,0.4);
    border-right: 1px solid rgba(242,193,78,0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-form label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(245,245,245,0.6);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
    color: var(--color-soft-ivory);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-form textarea {
    min-height: 150px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-royal-gold);
}

/* MAP */
.contact-map {
    position: relative;
    height: 450px;
    background: rgba(30,30,30,0.4);
    border: 1px solid rgba(242,193,78,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.map-placeholder-text {
    font-size: 0.875rem;
    color: rgba(245,245,245,0.4);
}

.contact-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(242,193,78,0.05), transparent 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.contact-map:hover::after {
    opacity: 1;
}

/* === Contact Grid === */

/* Container */
.filter-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

/* Individual Facet */
.cloud-facet {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.45rem 0.75rem;
    border: 1px solid var(--color-gold-dust);
    background: transparent;

    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-soft-ivory);

    transition: all 0.25s ease;
}

/* Label */
.cloud-facet span {
    line-height: 1;
    white-space: nowrap;
}

/* Remove Icon */
.cloud-facet .facet-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;
    cursor: pointer;

    color: var(--color-soft-ivory);
    opacity: 0.6;

    transition: all 0.2s ease;
}

.cloud-facet .facet-remove svg {
    width: 14px;
    height: 14px;
}

/* Hover Effects */
.cloud-facet:hover {
    border-color: var(--color-royal-gold);
}

.cloud-facet:hover .facet-remove {
    color: var(--color-royal-gold);
    opacity: 1;
    transform: rotate(90deg);
}

/* Optional: subtle active glow */
.cloud-facet:hover {
    box-shadow: 0 0 0 1px rgba(242, 193, 78, 0.25);
}

.btn-loader {
    animation: rotate 2s linear infinite;
}

/* Animation */
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* === User Drop Down === */

/* Trigger */
.user-trigger {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-soft-ivory);
    cursor: pointer;
    /* border: 1px solid var(--color-royal-gold);
    border-radius: 50%;
    width: 32px;
    height: 32px; */
}

.user-trigger:hover {
    color: var(--color-royal-gold) !important;
}

/* Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 200px;

    background: var(--color-jet-black);
    border: 1px solid var(--color-gold-dust);
    box-shadow: 0 25px 50px rgba(0,0,0,.45);

    display: flex;
    flex-direction: column;
    padding: 10px 0;

    z-index: 1000;
}

.user-dropdown a,
.user-dropdown button {
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;

    color: var(--color-soft-ivory);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;

    transition: background .3s ease, color .3s ease;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
    background: rgba(242,193,78,.08);
    color: var(--color-royal-gold);
}

.dropdown-divider {
    height: 1px;
    background: var(--color-gold-dust);
    margin: 6px 0;
}

.logout-btn {
    width: 100%;
}

/* === User Drop Down === */

/* === Cart Icon === */

.cart-active-icon {
    position: relative;
}

.cart-active-icon .cart-count {
    background-color: red;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Offcanvas shell */
.cart-offcanvas {
    background: var(--color-jet-black);
    color: var(--color-soft-ivory);
    width: 380px;
    border-left: 1px solid var(--color-gold-dust) !important;
}

/* Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-gold-dust);
}

.cart-header h5 {
    font-family: var(--font-serif);
    color: var(--color-royal-gold);
    letter-spacing: 0.15em;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: var(--color-soft-ivory);
    font-size: 22px;
    opacity: 0.7;
}

.cart-close:hover {
    opacity: 1;
    color: var(--color-royal-gold);
}

/* Body */
.cart-body {
    padding: 2rem 1.5rem;
    flex: 1;
    overflow-y: auto;
}

/* Empty State */
.cart-empty {
    margin-top: 4rem;
}

.cart-empty i {
    font-size: 48px;
    color: var(--color-gold-dust);
    display: block;
    margin-bottom: 1rem;
}

.cart-empty p {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.cart-empty span {
    font-size: 12px;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

.cart-items-offcanvas.out-of-stock {
    background-color: rgba(204, 204, 204, 0.4);
}

.cart-items-offcanvas .cart-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.cart-items-offcanvas .cart-item .cart-item-image {
    max-width: 94px;
    max-height: 123px;
    overflow: hidden;
}

.cart-items-offcanvas .cart-item .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-items-offcanvas .cart-item .cart-item-info {
    font-size: 14px;
    color: var(--color-soft-ivory);
}

.cart-items-offcanvas .cart-item .cart-item-info small {
    color: rgb(158, 157, 157)
}

.cart-items-offcanvas .cart-item .cart-item-actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-items-offcanvas .cart-item .cart-item-actions .cart-item-quantity {
    padding: 4px 16px;
    font-size: 12px;
    color: var(--color-soft-ivory);
    border-radius: 18px;
    background-color: var(--color-gold-dust);
}

.cart-items-offcanvas .cart-item .cart-item-actions a {
    font-size: 10px;
    color: rgb(163, 163, 163);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
    text-decoration: none;
}

.cart-items-offcanvas .cart-item .cart-item-actions a:hover {
    color: rgb(252, 89, 89);
}

/* Footer */
.cart-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-gold-dust);
}

/* === Cart Icon End === */

/* === User Dashboard === */

.user-dashboard .page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.7rem, 6vw, 2.7rem);
    font-weight: 600;
    color: var(--color-soft-ivory);
    letter-spacing: 0.05em;
}

.user-dashboard .page-desc {
    font-size: 1.13rem;
    font-style: italic;
    color: var(--color-soft-ivory);
    opacity: 0.6;
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
}

/* Account Layout */
.account-layout {
    position: relative;
    margin-top: 6px;
}

/* Sidebar */
.account-sidebar {
    border-right: 1px solid rgba(242, 193, 78, 0.1);
}

@media (max-width: 991px) {
    .account-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(242, 193, 78, 0.1);
        padding-bottom: 1.5rem;
    }
}

/* Navigation */
.account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.account-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;

    padding: 0.75rem 0.75rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    color: rgba(245, 245, 245, 0.55);
    text-decoration: none;

    transition: color 0.3s ease, background-color 0.3s ease;
}

.account-nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--color-soft-ivory);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s ease;
}

.account-nav-link i {
    font-size: 18px;
    opacity: 0.7;
    transition: opacity .25s ease, color .25s ease;
}

.account-nav-link:hover {
    color: var(--color-royal-gold);
}

.account-nav-item i,
.account-nav-item.active i.chev {
    font-size: 16px;
    color: var(--color-royal-gold);
}

.account-nav-item i.chev {
    color: var(--color-champagne-dark);
}

/* Hover */
.account-nav-item:hover {
    color: var(--color-soft-ivory);
}

/* Active */
.account-nav-item.active {
    color: var(--color-royal-gold);
    border-right: 2px solid var(--color-royal-gold);
}

/* Divider */
.account-nav-divider {
    height: 1px;
    background: rgba(242, 193, 78, 0.1);
    margin: 1.125rem 0;
}

/* Logout */
.account-nav-logout {
    color: rgba(245, 245, 245, 0.4);
}

.account-nav-logout:hover {
    color: #ff6b6b;
}

/* Dashboard Wrapper */
.account-dashboard {
    animation: fadeUp 0.5s ease forwards;
}

/* Stats */
.dashboard-stat {
    background: rgba(28, 28, 28, 0.2);
    border: 1px solid rgba(242, 193, 78, 0.2);
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--color-royal-gold);
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.4);
}

/* Section Title */
.dashboard-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    border-bottom: 1px solid rgba(242, 193, 78, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Activity Item */
.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1rem;
    background: rgba(28, 28, 28, 0.1);
    border: 1px solid rgba(242, 193, 78, 0.1);

    transition: border-color 0.3s ease;
    cursor: pointer;
}

.activity-item:hover {
    border-color: rgba(242, 193, 78, 0.35);
}

/* Left */
.activity-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.activity-icon {
    font-size: 16px;
    color: var(--color-royal-gold);
    opacity: 0.5;
}

.activity-order {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-soft-ivory);
}

.activity-date {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.4);
}

/* Right */
.activity-right {
    text-align: right;
}

.activity-status {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-royal-gold);
}

.activity-total {
    font-size: 10px;
    color: rgba(245, 245, 245, 0.6);
}

/* View All */
.activity-view-all {
    display: inline-block;
    margin-top: 1.5rem;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    text-decoration: none;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.account-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-royal-gold);
}

/* Table base */
.account-orders-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-soft-ivory);
}

/* Head */
.account-orders-table thead th {
    padding: 1rem 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(242, 193, 78, 0.2);
}

/* Rows */
.account-orders-table tbody tr {
    border-bottom: 1px solid rgba(242, 193, 78, 0.1);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.account-orders-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Cells */
.account-orders-table td {
    padding: 1.5rem 0;
    vertical-align: middle;
}

/* Order ID */
.order-id {
    font-weight: 700;
    letter-spacing: 0.12em;
}

.order-id a {
    color: var(--color-soft-ivory);
    text-decoration: none !important;
}

.order-id:hover a {
    color: var(--color-royal-gold);
}

/* Date */
.order-date {
    color: rgba(255, 255, 255, 0.6);
}

/* Total */
.order-total {
    font-weight: 700;
    color: var(--color-royal-gold);
}

/* Status badge */
.order-status {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(242, 193, 78, 0.25);
    color: var(--color-royal-gold);
    display: inline-block;
}

.account-orders-table,
.account-orders-table thead,
.account-orders-table tbody,
.account-orders-table tr,
.account-orders-table th,
.account-orders-table td {
    background-color: transparent !important;
    color: var(--color-soft-ivory);
}

/* Override Bootstrap CSS variable */
.account-orders-table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: transparent;
}

.account-orders-table tbody tr {
    background-color: rgba(255, 255, 255, 0.015);
}

/* === User Dashboard End === */


/* === Form Inputs === */

/* Wrapper */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Label */
.form-label-muted {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.6);
}

.form-label-underline.required::after,
.form-label-muted.required::after {
    content: "*";
    color: red;
    margin-left: 0.25rem;
}

/* Input */
.form-input-underline {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(242, 193, 78, 0.35);
    border-radius: 0;

    padding: 0.75rem 0;

    font-size: 13px;
    letter-spacing: 0.15em;
    color: var(--color-soft-ivory);

    transition: border-color 0.3s ease;
}

.form-input-underline::placeholder {
    color: rgba(245, 245, 245, 0.15);
    letter-spacing: 0.2em;
}

.form-input-underline:focus {
    outline: none;
    border-bottom-color: var(--color-royal-gold);
}

.form-field {
    display: flex;
    flex-direction: column;
    /* gap: 0.5rem; */
}

.search-modal-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(242, 193, 78, 0.35);
    transition: border-color 0.3s ease;
}

.search-modal-field:focus-within {
    border-bottom-color: var(--color-royal-gold);
}

.search-modal-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.72);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.search-modal-submit:hover,
.search-modal-submit:focus {
    color: var(--color-royal-gold);
}

.search-modal-input {
    flex: 1;
    border-bottom: 0;
    padding-left: 0;
}

.trending-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.trending-item {
    margin: 0;
}

.trending-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.3s ease;
}

.trending-link:hover {
    color: var(--color-royal-gold);
}

.trending-link span,
.trending-empty {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.trending-empty {
    color: rgba(255, 255, 255, 0.5);
}

/* Label */
.form-label-underline {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* Wrapper */
.select-underline {
    position: relative;
}

/* Select */
.form-select-underline {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-gold-dust);
    padding: 0.75rem 1.5rem 0.75rem 0;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-soft-ivory);
    appearance: none;
    cursor: pointer;
}

/* Focus */
.form-select-underline:focus {
    outline: none;
    border-bottom-color: var(--color-royal-gold);
}

/* Chevron */
.select-chevron {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-soft-ivory);
    opacity: 0.6;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover / Focus */
.form-select-underline:hover + .select-chevron,
.form-select-underline:focus + .select-chevron {
    color: var(--color-royal-gold);
    transform: translateY(-50%) rotate(180deg);
}

select:-webkit-autofill {
    -webkit-text-fill-color: var(--color-soft-ivory);
    box-shadow: 0 0 0 1000px transparent inset;
}

.form-select-underline:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-bottom-style: dashed;
}

.form-field.has-error .form-select-underline {
    border-bottom-color: #da3330;
}

.form-field.has-error .form-label-underline {
    color: #da3330;
}

select.form-select-underline option {
    background-color: #0b0b0b; /* jet black */
    color: #e8e6e3;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* Remove Chrome autofill background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: var(--color-soft-ivory) !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 9999s ease-in-out 0s !important;
}

/* === Form Inputs End === */

/* === Address Card === */

.address-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-gold-dust);
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.address-card:hover {
    border-color: var(--color-royal-gold);
    transform: translateY(-2px);
}

/* Header */
.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.address-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-soft-ivory);
    margin-right: 0.5rem;
}

/* Address Type Badge */
.address-type {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--color-royal-gold);
    color: var(--color-royal-gold);
}

.badge-home {
    background: rgba(242, 193, 78, 0.08);
}

/* Actions */
.address-actions {
    display: flex;
    gap: 0.5rem;
}

.address-action-btn {
    background: transparent;
    border: 1px solid var(--color-gold-dust);
    color: var(--color-soft-ivory);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.address-action-btn:hover {
    border-color: var(--color-royal-gold);
    color: var(--color-royal-gold);
}

.address-action-btn.danger:hover {
    border-color: #b84c4c;
    color: #b84c4c;
}

/* Body */
.address-card-body {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.address-line {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.address-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

/* === Address Card End === */


/* === Modal Overrides === */

/* Modal Backdrop */
.address-modal .modal-backdrop,
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.75);
}

/* Modal Container */
.address-modal-content {
    background: var(--color-charcoal);
    border: 1px solid var(--color-gold-dust);
    border-radius: 0;
    box-shadow: 0 30px 80px rgba(235, 219, 0, 0.068);
}

/* Header */
.address-modal-header {
    border-bottom: 1px solid var(--color-gold-dust);
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-modal-header .modal-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: var(--color-royal-gold);
    text-transform: uppercase;
}

/* Close Button */
.address-modal-close {
    background: transparent;
    border: 1px solid var(--color-gold-dust);
    color: var(--color-soft-ivory);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.address-modal-close:hover {
    border-color: var(--color-royal-gold);
    color: var(--color-royal-gold);
}

/* Body */
.address-modal-body {
    padding: 2rem 1.75rem;
    color: var(--color-soft-ivory);
}

/* Footer */
.address-modal-footer {
    border-top: 1px solid var(--color-gold-dust);
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Remove Bootstrap rounded look */
.modal-content,
.modal-header,
.modal-footer {
    border-radius: 0;
}

/* === Modal Overrides End === */


/* ==== Order Summary === */


/* Layout */
.empty-cart-wrapper {
    min-height: 70vh;
}

/* Icon */
.empty-cart-icon {
    font-size: 96px;
    color: var(--gold-dust);
    opacity: 0.2;
    position: relative;
    z-index: 2;
}

/* Radial glow behind icon */
.gold-radial-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(
        circle at center,
        rgba(242, 193, 78, 0.12) 0%,
        transparent 70%
    );
}

/* Title */
.empty-cart-title {
    font-size: 2.25rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

/* Subtitle */
.empty-cart-subtitle {
    max-width: 380px;
    font-weight: 300;
    color: rgba(255, 255, 240, 0.4);
}

/* CTA Button */
.btn-royal-gold {
    background-color: var(--color-royal-gold);
    color: var(--jet-black);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
}

.btn-royal-gold:hover {
    background-color: var(--antique-gold);
    color: var(--jet-black);
}

/* Gold glow effect */
.gold-glow {
    text-shadow:
        0 0 10px rgba(242, 193, 78, 0.35),
        0 0 30px rgba(242, 193, 78, 0.15);
}

/* Animation */
.animate-zoom-in {
    animation: zoomFadeIn 0.7s ease forwards;
}

@keyframes zoomFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header */
.cart-title {
    font-family: var(--font-serif);
    font-size: 3rem;
}

.cart-count {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,240,0.4);
}

/* Cart Item */
.cart-item {
    border-bottom: 1px solid rgba(242,193,78,0.2);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-image {
    width: 128px;
    height: 160px;
    background: var(--charcoal);
    border: 1px solid rgba(242,193,78,0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.cart-item-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.cart-item:hover .cart-item-title {
    color: var(--royal-gold);
}

.cart-item-attrs {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,240,0.4);
    margin-top: 6px;
}

.cart-item-price-regular,
.cart-item-price-off {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: right;
    text-wrap: nowrap;
}

.cart-item-price-off {
    color: #ade069;
}

.cart-item-price {
    font-weight: 700;
    color: var(--royal-gold);
    max-width: 250px;
    min-width: 120px;
    text-align: right;
}

.cart-item-selling-price {
    margin-top: 8px;
    letter-spacing: 0.07em;
}

/* Quantity */
.quantity-box {
    display: flex;
    align-items: center;
    border: 1px solid rgba(242,193,78,0.4);
    height: 40px;
}

.qty-btn {
    background: none;
    border: none;
    padding: 0 12px;
    color: inherit;
    transition: color 0.3s ease;
}

.qty-btn:hover {
    color: var(--royal-gold);
}

.qty-value {
    width: 32px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

/* Actions */
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}


.btn-icon-danger {
    background: none;
    border: none;
    color: rgba(255,255,240,0.2);
    font-size: 1.1rem;
}

.btn-icon-danger:hover {
    color: var(--bs-danger);
}


/* Summary */
.order-summary {
    background: var(--color-charcoal);
    border: 1px solid rgba(242,193,78,0.2);
    padding: 2rem;
    top: 8rem;
}

.order-summary-title {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--royal-gold);
    border-bottom: 1px solid rgba(242,193,78,0.2);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.order-summary-lines {
    font-size: 0.9rem;
    font-weight: 300;
}

.summary-divider {
    border-color: rgba(242,193,78,0.2);
    margin: 1.5rem 0;
}

.summary-total-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
}

.summary-total-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--royal-gold);
}

/* Footer */
.summary-footer-text {
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,240,0.3);
    margin-top: 1.5rem;
}


/* ==== Order Summary End === */

/* Checkout */
.items-section {
    border-bottom: 1px solid rgba(242,193,78,0.2);
    margin-bottom: 1.35rem;
}

/* Section spacing */
.payment-section {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

/* Header */

.payment-section-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
}

/* Option Wrapper */
.payment-option {
    display: block;
    cursor: pointer;
    height: 100%;
}

/* Hide radio */
.payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Card UI */
.payment-option-inner {
    padding: 1.5rem;
    border: 1px solid var(--color-gold-dust);
    background: transparent;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all 0.5s ease;
}

.payment-option input:checked + .payment-option-inner i {
    display: block;
}

.payment-option-inner i {
    color: var(--color-royal-gold);
    font-size: 1.23rem;
    display: none;
}

/* Hover */
.payment-option:hover .payment-option-inner {
    border-color: var(--color-royal-gold);
}

/* Checked State */
.payment-option input:checked + .payment-option-inner {
    border-color: var(--color-royal-gold);
    background: rgba(255, 255, 255, 0.03);
}

/* Title */
.payment-option-title {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    margin-bottom: 0.25rem;
}

/* Subtitle */
.payment-option-subtitle {
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.4);
}


.address-select {
    display: block;
    cursor: pointer;
}

/* Hide radio */
.address-select input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Selected state */
.address-select input:checked + .address-card {
    border-color: var(--color-royal-gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

/* Optional subtle background */
.address-select input:checked + .address-card {
    background: rgba(255, 255, 255, 0.03);
}

/* Hover improvement */
.address-select:hover .address-card {
    border-color: var(--color-gold-dust);
}

/* Prevent edit button click from toggling radio */
.address-action-btn {
    position: relative;
    z-index: 2;
}

/* Checkout End */

/* === Order Confirmation === */

/* ================================
   Order Confirmation Page
================================ */

.order-confirmation {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

/* Hero */
.order-confirm-hero {
    animation: fadeUp 0.8s ease forwards;
}

.order-confirm-icon-wrapper {
    position: relative;
    display: inline-block;
}

.order-confirm-icon {
    font-size: 5rem;
    color: var(--color-royal-gold);
    position: relative;
    z-index: 2;
}

.order-confirm-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(242,193,78,0.25) 0%, transparent 70%);
    filter: blur(24px);
    z-index: 1;
}

.order-confirm-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: var(--color-soft-ivory);
    margin-bottom: .5rem;
}

.order-confirm-subtitle {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

/* Info Cards */
.order-info-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 2rem;
    height: 100%;
    animation: fadeIn 0.7s ease forwards;
}

.order-info-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    padding-bottom: .75rem;
    margin-bottom: 1.5rem;
}

.order-info-header i {
    color: var(--color-royal-gold);
    font-size: 1rem;
}

.order-info-header h2 {
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-royal-gold);
    margin: 0;
}

.order-info-body .info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .75rem;
    font-size: .85rem;
}

.order-info-body .info-row span {
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    font-size: .6rem;
    letter-spacing: .2em;
}

.order-info-body strong {
    color: var(--color-royal-gold);
    font-weight: 700;
}

/* Delivery */
.delivery-text {
    font-size: .9rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
}

.delivery-box {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 1rem;
}

.delivery-box span {
    display: block;
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.delivery-box strong {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-royal-gold);
    font-style: italic;
}

/* Actions */
.order-actions {
    /* border-top: 1px solid rgba(212,175,55,0.1); */
    border-bottom: 1px solid rgba(212,175,55,0.1);
    padding: 2rem 0;
}

/* Share */
.order-share {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.order-share button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 700;
    transition: color .3s ease;
}

.order-share button i {
    margin-right: .4rem;
}

.order-share button:hover {
    color: var(--color-royal-gold);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.order-confirm-container {
    max-width: 840px;
    margin: 0 auto;
}

/* === Order Confirmation End === */

/* === Order Details === */

/* ===============================
   Order Detail Page
================================ */

.order-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--color-soft-ivory);
}

.order-meta {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

.order-back-link {
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    font-weight: 700;
}

.order-back-link:hover {
    color: var(--color-royal-gold);
}

/* Cards */
.order-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(212,175,55,.15);
    padding: 2rem;
    position: relative;
}

.order-card-glow {
    position: absolute;
    inset: auto -60px -60px auto;
    width: 180px;
    height: 180px;
    background: rgba(212,175,55,.05);
    filter: blur(50px);
}

/* Section Title */
.order-section-title {
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--color-royal-gold);
    border-bottom: 1px solid rgba(212,175,55,.15);
    padding-bottom: .75rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Timeline */
.order-timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.3);
}

.timeline-item.completed .timeline-dot {
    background: var(--color-royal-gold);
    color: var(--color-jet-black);
    border-color: var(--color-royal-gold);
}

.timeline-status {
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-soft-ivory);
    font-weight: 700;
}

.timeline-date {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

/* Items */
.order-item {
    border: 1px solid rgba(212,175,55,.1);
    padding: 1.25rem;
}

.order-item-image {
    width: 90px;
    height: 120px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.2);
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
}

.order-item-title {
    font-size: 16px;
    font-family: var(--font-serif);
    color: var(--color-soft-ivory);
}

.order-item-attr {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

.order-item-qty {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}

.order-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-royal-gold);
}

/* Address */
.order-address {
    font-size: 14px;
    color: rgba(255,255,255,.75);
}

.address-name {
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.address-pincode {
    letter-spacing: .15em;
}

/* Payment */
.order-payment span {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.order-total {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-royal-gold);
}

/* Support */
.order-support {
    border: 1px solid rgba(212,175,55,.15);
    padding: 2rem;
    color: rgba(255,255,255,.6);
    transition: all .3s ease;
}

.order-support i {
    font-size: 1.6rem;
    color: var(--color-royal-gold);
    opacity: .5;
}

.order-support:hover {
    border-color: var(--color-royal-gold);
    color: var(--color-royal-gold);
}

/* === Order Detaisl End === */

/* === Empty Product State === */

/* ===============================
   Shop Empty State
================================ */

.shop-empty-state {
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255,255,255,.6);
}

.shop-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-empty-icon i {
    font-size: 28px;
    color: var(--color-royal-gold);
    opacity: .7;
}

.shop-empty-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-soft-ivory);
}

.shop-empty-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.45);
}


/* === Empty Product State End === */

/* === Reels === */
/* ==== Reels === */

.reel-card {
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(201, 162, 77, 0.1);
  cursor: pointer;
  background: var(--jet-black);
  overflow: hidden;
}

/* Video */
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transform: scale(1.05);
  transition: opacity 0.5s ease, transform 0.7s ease;
}

/* Hover effects */
.reel-card:hover .reel-video {
  opacity: 1;
  /* transform: scale(1); */
}

/* Overlay */
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 11, 12, 0.85),
    transparent 60%
  );
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.reel-card:hover .reel-overlay {
  opacity: 0.4;
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 234, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.reel-card:hover .play-circle {
  transform: scale(1.1);
}

.play-icon {
  font-size: 22px;
  color: var(--soft-ivory);
  margin-left: 2px;
}

/* Content */
.reel-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  transform: translateY(8px);
  transition: transform 0.5s ease;
}

.reel-content-lap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

.reel-card:hover .reel-content {
  transform: translateY(0);
}

.reel-category {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--royal-gold);
  opacity: 0;
  margin-bottom: 4px;
  transition: opacity 0.4s ease;
}

.reel-card:hover .reel-category {
  opacity: 1;
}

.reel-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--soft-ivory);
  margin: 0;
}

/* Border Glow */
.reel-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 77, 0);
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.reel-card:hover .reel-border {
  border-color: rgba(201, 162, 77, 0.3);
}

.video-js,
.video-js iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vjs-control-bar,
.vjs-big-play-button {
  display: none !important;
}

.reel-card video,
.reel-card .video-js {
    pointer-events: none;
}

/* Decorative overlays must NOT block events */
.reel-overlay,
.reel-content,
.reel-border {
  pointer-events: none;
}

.play-overlay {
  pointer-events: none;
  cursor: pointer;
}

.reel-card.playing .reel-overlay,
.reel-card.playing .play-overlay,
.reel-card.playing .reel-content {
  display: none;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-js {
    background: transparent;
}

.video-js .vjs-big-play-button,
.video-js .vjs-control-bar {
    display: none !important;
}


/* ==== REELS MODAL ===== */

#reelsModal {
    background-color: rgba(0, 0, 0, 0.80);
}

.reels-modal-content,
.reels-modal-body {
    background-color: transparent;
}

.modal-reel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-reel-container {
    max-height: 70vh;
    height: 100%;
}

.reel-card-modal {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: var(--color-jet-black);
    cursor: pointer;
    max-height: 70vh;
    width: 100%;
    margin: auto;
    border-radius: 8px;
}

.reel-card-modal .splide__list {
    display: flex !important;
    flex-direction: row !important;
}

.reel-card-modal  .splide__slide {
    flex: 0 0 100%;
    max-width: 100%;
}

/* modal interference fix */
.reel-card-modal .splide {
    width: 100%;
}

#reelsSplide .splide__arrow {
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    width: 44px;
    height: 44px;
}

#reelsSplide .splide__arrow--prev {
    left: -60px;
    width: 32px;
    height: 32px;
    background-color: white;
}

#reelsSplide .splide__arrow--next {
    right: -60px;
    width: 32px;
    height: 32px;
    background-color: white;
}

#reelsSplide .splide__arrow--prev svg,
#reelsSplide .splide__arrow--next svg {
    width: 12px;
}
 
.reel-card-modal .video-js,
.reel-card-modal .video-js .vjs-tech,
.reel-card-modal .video-js iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.reel-card-modal .video-js {
    position: absolute;
    inset: 0;
}

.reel-actions {
    position: absolute;
    right: 12px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 50;
}

.reel-actions button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(43, 43, 43, 0.548);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-actions a {
    text-decoration: none;
    color: #fff;
}

.modal {
    overscroll-behavior: contain;
}

.small-hint {
    font-size: 8px;
}

.small-head {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .2ch;
}
