/* ============================================================
   AURA LUXURY — MASTER STYLESHEET
   Ultra-Premium E-Commerce Design System
   Pages:
   - index.html
   - products.html
   - cart.html
   - checkout.html

   Theme:
   Obsidian #090e17
   Metallic Gold #d4af37
   Champagne #f3e5ab
   Soft Slate #1e293b
   White #ffffff
   ============================================================ */


/* ============================================================
   01. ROOT DESIGN TOKENS
   ============================================================ */

:root {
    --color-bg: #090e17;
    --color-bg-soft: #0d1420;
    --color-surface: #111927;
    --color-surface-2: #151f2e;
    --color-slate: #1e293b;
    --color-slate-light: #334155;

    --color-gold: #d4af37;
    --color-gold-light: #f3e5ab;
    --color-gold-soft: rgba(212, 175, 55, 0.15);
    --color-gold-glow: rgba(212, 175, 55, 0.28);

    --color-white: #ffffff;
    --color-white-soft: #f8fafc;
    --color-text: #e7e9ed;
    --color-text-muted: #94a3b8;
    --color-text-dark: #111827;

    --color-success: #4ade80;
    --color-danger: #f87171;
    --color-warning: #fbbf24;
    --color-info: #60a5fa;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.35);

    --glass-bg: rgba(15, 23, 35, 0.72);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-blur: blur(18px);

    --shadow-sm: 0 5px 18px rgba(0, 0, 0, 0.20);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.30);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 0 35px rgba(212, 175, 55, 0.16);

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-round: 999px;

    --container: 1320px;
    --container-wide: 1480px;

    --header-height: 82px;
    --transition-fast: 180ms ease;
    --transition: 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.2, 0.8, 0.2, 1);

    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* ============================================================
   02. GLOBAL RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    width: 100%;
    background:
        radial-gradient(
            circle at 15% 5%,
            rgba(212, 175, 55, 0.035),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 45%,
            rgba(30, 41, 59, 0.30),
            transparent 32%
        ),
        var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open,
body.drawer-open {
    overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

::selection {
    background: var(--color-gold);
    color: #080b10;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #070b12;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.45);
    border-radius: var(--radius-round);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

h1 {
    font-size: clamp(3rem, 7vw, 7rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
}

h3 {
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

h4 {
    font-size: 1.45rem;
}

h5 {
    font-size: 1.15rem;
}

h6 {
    font-size: 1rem;
}

p {
    color: var(--color-text-muted);
}

.text-gold {
    color: var(--color-gold);
}

.text-champagne {
    color: var(--color-gold-light);
}

.text-white {
    color: var(--color-white);
}

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

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.uppercase {
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--color-gold);
}

.section-title {
    max-width: 800px;
    margin: 0 auto;
}

.section-description {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--color-text-muted);
    font-size: 1rem;
}


/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container-wide {
    width: min(calc(100% - 40px), var(--container-wide));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-sm {
    padding: 70px 0;
}

.section-header {
    margin-bottom: 55px;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid {
    display: grid;
}

.hidden {
    display: none !important;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}


/* ============================================================
   05. PAGE LOADER
   ============================================================ */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    transition:
        opacity 500ms ease,
        visibility 500ms ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 25px;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.loader-line {
    width: 150px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.loader-line::after {
    content: "";
    display: block;
    width: 45%;
    height: 100%;
    background: var(--color-gold);
    animation: loaderProgress 1.2s infinite ease-in-out;
}

@keyframes loaderProgress {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(340%);
    }
}


/* ============================================================
   06. ANNOUNCEMENT BAR
   ============================================================ */

.announcement-bar {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 20px;
    background: #070b11;
    border-bottom: 1px solid var(--border-light);
    color: var(--color-gold-light);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.announcement-bar i {
    margin-right: 8px;
    color: var(--color-gold);
}


/* ============================================================
   07. HEADER / NAVIGATION
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    min-height: var(--header-height);
    background: rgba(9, 14, 23, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition:
        background var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(7, 11, 18, 0.96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
}

.navbar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    transform: rotate(45deg);
}

.brand-mark span {
    transform: rotate(-45deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--color-gold);
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-action {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.nav-action:hover {
    background: var(--color-gold-soft);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: 1px;
    right: 0;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border: 2px solid var(--color-bg);
    border-radius: 50%;
    background: var(--color-gold);
    color: #090e17;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    color: var(--color-white);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-toggle.active span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}


/* ============================================================
   08. BUTTON SYSTEM
   ============================================================ */

.btn {
    position: relative;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 25px;
    border: 1px solid transparent;
    border-radius: var(--radius-xs);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

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

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

.btn-gold {
    background: var(--color-gold);
    color: #080b10;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.12);
}

.btn-gold:hover {
    background: var(--color-gold-light);
    box-shadow: 0 14px 35px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    border-color: rgba(212, 175, 55, 0.65);
    background: transparent;
    color: var(--color-gold-light);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    background: var(--color-gold-soft);
}

.btn-white {
    background: var(--color-white);
    color: #0b1018;
}

.btn-white:hover {
    background: var(--color-gold-light);
}

.btn-dark {
    background: var(--color-surface-2);
    border-color: var(--border-light);
    color: var(--color-white);
}

.btn-dark:hover {
    border-color: var(--border-gold);
    color: var(--color-gold-light);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    min-height: 56px;
    padding: 16px 32px;
}

.btn-sm {
    min-height: 40px;
    padding: 10px 17px;
    font-size: 0.64rem;
}

.btn-icon {
    width: 46px;
    height: 46px;
    padding: 0;
}

.btn i {
    font-size: 0.85rem;
}


/* ============================================================
   09. HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.78);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(9, 14, 23, 0.96) 0%,
            rgba(9, 14, 23, 0.78) 38%,
            rgba(9, 14, 23, 0.28) 75%,
            rgba(9, 14, 23, 0.55) 100%
        );
}

.hero::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -30%;
    z-index: -1;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    filter: blur(100px);
}

.hero-content {
    max-width: 750px;
    padding: 100px 0;
}

.hero-title {
    margin-bottom: 28px;
    color: var(--color-white);
    font-size: clamp(3.3rem, 7.5vw, 7.4rem);
    font-weight: 500;
}

.hero-title span {
    display: block;
    color: var(--color-gold-light);
    font-style: italic;
}

.hero-description {
    max-width: 570px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-scroll {
    position: absolute;
    right: 40px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll::before {
    content: "";
    width: 1px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-gold)
    );
}


/* ============================================================
   10. PROMO / VALUE STRIP
   ============================================================ */

.value-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: rgba(12, 18, 28, 0.94);
}

.value-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.value-item {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-right: 1px solid var(--border-light);
}

.value-item:last-child {
    border-right: 0;
}

.value-icon {
    color: var(--color-gold);
    font-size: 1.35rem;
}

.value-content strong {
    display: block;
    color: var(--color-white);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.value-content span {
    display: block;
    margin-top: 3px;
    color: var(--color-text-muted);
    font-size: 0.72rem;
}


/* ============================================================
   11. COLLECTION CARDS
   ============================================================ */

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.collection-card {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}

.collection-image {
    position: absolute;
    inset: 0;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5, 8, 13, 0.94) 0%,
            rgba(5, 8, 13, 0.20) 60%,
            rgba(5, 8, 13, 0.05) 100%
        );
}

.collection-card:hover .collection-image img {
    transform: scale(1.07);
}

.collection-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.collection-label {
    margin-bottom: 8px;
    color: var(--color-gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.collection-title {
    margin-bottom: 15px;
    font-size: 2.1rem;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-white);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.collection-link i {
    color: var(--color-gold);
    transition: transform var(--transition);
}

.collection-link:hover i {
    transform: translateX(5px);
}


/* ============================================================
   12. PRODUCT GRID
   ============================================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    position: relative;
    min-width: 0;
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background:
        linear-gradient(
            145deg,
            #172231,
            #0d141f
        );
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 400ms ease;
}

.product-card:hover .product-media img {
    transform: scale(1.055);
    filter: saturate(1.05);
}

.product-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 3px;
    background: var(--color-gold);
    color: #080b10;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-badge.sale {
    background: var(--color-white);
}

.product-badge.new {
    background: var(--color-gold-light);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 7px;
    opacity: 0;
    transform: translateX(8px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(8, 12, 18, 0.75);
    color: var(--color-white);
    backdrop-filter: blur(12px);
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast);
}

.product-action:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #090e17;
}

.product-info {
    padding: 17px 3px 0;
}

.product-category {
    margin-bottom: 5px;
    color: var(--color-gold);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-name {
    margin-bottom: 8px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
    color: var(--color-gold);
    font-size: 0.65rem;
}

.product-rating span {
    margin-left: 5px;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.67rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    color: var(--color-white);
    font-size: 0.92rem;
    font-weight: 700;
}

.price-old {
    color: #64748b;
    font-size: 0.75rem;
    text-decoration: line-through;
}

.product-card .quick-buy {
    width: 100%;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(5px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.product-card:hover .quick-buy {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   13. PRODUCT PAGE / CATALOG
   ============================================================ */

.page-banner {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.page-banner-background {
    position: absolute;
    inset: 0;
}

.page-banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.55);
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(9, 14, 23, 0.94),
            rgba(9, 14, 23, 0.45),
            rgba(9, 14, 23, 0.80)
        );
}

.page-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 70px 0;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    color: var(--color-text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumbs a:hover {
    color: var(--color-gold);
}

.breadcrumbs i {
    color: var(--color-gold);
    font-size: 0.5rem;
}

.page-title {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.catalog-count {
    color: var(--color-text-muted);
    font-size: 0.78rem;
}

.catalog-count strong {
    color: var(--color-white);
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    position: relative;
    width: min(320px, 100%);
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: var(--color-text-muted);
    transform: translateY(-50%);
}

.search-box input {
    width: 100%;
    height: 43px;
    padding: 0 15px 0 42px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    outline: none;
    background: var(--color-surface);
    color: var(--color-white);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.search-box input::placeholder {
    color: #64748b;
}

.search-box input:focus {
    border-color: var(--border-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.06);
}

.sort-select {
    min-width: 180px;
    height: 43px;
    padding: 0 38px 0 13px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    outline: none;
    background:
        var(--color-surface)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
        no-repeat right 14px center;
    color: var(--color-white);
    appearance: none;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 35px;
}

.filter-sidebar {
    align-self: start;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    padding: 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 35, 0.65);
}

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--border-light);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.filter-group {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
    border-bottom: 0;
}

.filter-heading {
    margin-bottom: 12px;
    color: var(--color-white);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 10px 0;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 0.78rem;
    transition: color var(--transition-fast);
}

.filter-option:hover {
    color: var(--color-gold-light);
}

.filter-option input {
    accent-color: var(--color-gold);
}

.price-range {
    width: 100%;
    accent-color: var(--color-gold);
}

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

.catalog-products .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* ============================================================
   14. EMPTY STATES
   ============================================================ */

.empty-state {
    padding: 80px 25px;
    border: 1px dashed rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    text-align: center;
}

.empty-state-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1.4rem;
}

.empty-state h3 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.empty-state p {
    max-width: 480px;
    margin: 0 auto 25px;
}


/* ============================================================
   15. CART PAGE
   ============================================================ */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 40px;
    align-items: start;
}

.cart-items {
    border-top: 1px solid var(--border-light);
}

.cart-item {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-image {
    width: 105px;
    height: 125px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
}

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

.cart-item-category {
    margin-bottom: 4px;
    color: var(--color-gold);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-item-title {
    margin-bottom: 6px;
    font-size: 1.35rem;
}

.cart-item-variant {
    color: var(--color-text-muted);
    font-size: 0.72rem;
}

.cart-item-price {
    margin-top: 10px;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    height: 39px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
}

.quantity-btn {
    width: 35px;
    height: 100%;
    display: grid;
    place-items: center;
    background: transparent;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.quantity-btn:hover {
    color: var(--color-gold);
}

.quantity-value {
    min-width: 32px;
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
}

.remove-item {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: transparent;
    color: #64748b;
    transition: color var(--transition-fast);
}

.remove-item:hover {
    color: var(--color-danger);
}

.order-summary {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    padding: 28px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background:
        linear-gradient(
            145deg,
            rgba(22, 31, 45, 0.92),
            rgba(11, 17, 27, 0.92)
        );
    box-shadow: var(--shadow-md);
}

.summary-title {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.8rem;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    color: var(--color-text-muted);
    font-size: 0.78rem;
}

.summary-row strong {
    color: var(--color-white);
    font-weight: 600;
}

.summary-total {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border-gold);
}

.summary-total span,
.summary-total strong {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
}

.summary-total strong {
    color: var(--color-gold-light);
    font-size: 1.3rem;
}

.coupon-box {
    display: flex;
    gap: 7px;
    margin: 18px 0;
}

.coupon-box input {
    min-width: 0;
    flex: 1;
    height: 43px;
    padding: 0 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    outline: none;
    background: #0b121c;
    color: var(--color-white);
}

.coupon-box input:focus {
    border-color: var(--border-gold);
}

.coupon-box button {
    flex: 0 0 auto;
    padding: 0 15px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xs);
    background: transparent;
    color: var(--color-gold-light);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.coupon-message {
    margin-top: -8px;
    margin-bottom: 10px;
    font-size: 0.68rem;
}

.coupon-message.success {
    color: var(--color-success);
}

.coupon-message.error {
    color: var(--color-danger);
}


/* ============================================================
   16. CART DRAWER
   ============================================================ */

.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--transition),
        visibility var(--transition);
    backdrop-filter: blur(5px);
}

.cart-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2001;
    width: min(460px, 100%);
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            145deg,
            #111a28,
            #090f18
        );
    border-left: 1px solid var(--border-gold);
    box-shadow: -25px 0 70px rgba(0, 0, 0, 0.45);
    transform: translateX(105%);
    transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-light);
}

.drawer-title {
    font-size: 1.7rem;
}

.drawer-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    transition:
        background var(--transition-fast),
        color var(--transition-fast);
}

.drawer-close:hover {
    background: var(--color-gold-soft);
    color: var(--color-gold);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.drawer-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.drawer-item-image {
    width: 72px;
    height: 86px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

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

.drawer-item-name {
    margin-bottom: 4px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.2;
}

.drawer-item-meta {
    color: var(--color-text-muted);
    font-size: 0.67rem;
}

.drawer-item-price {
    margin-top: 6px;
    color: var(--color-gold-light);
    font-size: 0.74rem;
    font-weight: 700;
}

.drawer-remove {
    align-self: start;
    background: transparent;
    color: #64748b;
    font-size: 0.75rem;
}

.drawer-remove:hover {
    color: var(--color-danger);
}

.drawer-footer {
    padding: 20px 24px 25px;
    border-top: 1px solid var(--border-light);
    background: rgba(7, 11, 17, 0.45);
}

.drawer-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--color-text-muted);
    font-size: 0.78rem;
}

.drawer-summary strong {
    color: var(--color-gold-light);
    font-size: 1.05rem;
}

.drawer-empty {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.drawer-empty i {
    margin-bottom: 15px;
    color: var(--color-gold);
    font-size: 2rem;
}

.drawer-empty h4 {
    margin-bottom: 7px;
}


/* ============================================================
   17. CHECKOUT PAGE
   ============================================================ */

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 45px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-steps {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.checkout-step {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #64748b;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-step:not(:last-child)::after {
    content: "";
    flex: 1;
    height: 1px;
    margin: 0 13px;
    background: var(--border-light);
}

.step-number {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: #64748b;
    font-size: 0.7rem;
}

.checkout-step.active {
    color: var(--color-gold-light);
}

.checkout-step.active .step-number {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #090e17;
}

.checkout-step.completed {
    color: var(--color-success);
}

.checkout-step.completed .step-number {
    border-color: var(--color-success);
    color: var(--color-success);
}

.checkout-panel {
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 35, 0.55);
}

.checkout-panel + .checkout-panel {
    margin-top: 20px;
}

.checkout-panel-header {
    margin-bottom: 25px;
}

.checkout-panel-title {
    margin-bottom: 6px;
    font-size: 1.85rem;
}

.checkout-panel-description {
    font-size: 0.78rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.form-group {
    min-width: 0;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-label .required {
    color: var(--color-gold);
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    outline: none;
    background: #0b121c;
    color: var(--color-white);
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.form-control::placeholder {
    color: #64748b;
}

.form-control:focus {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.06);
}

.form-control.valid {
    border-color: rgba(74, 222, 128, 0.6);
}

.form-control.invalid {
    border-color: rgba(248, 113, 113, 0.7);
}

textarea.form-control {
    min-height: 115px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.validation-message {
    display: block;
    margin-top: 5px;
    color: var(--color-danger);
    font-size: 0.64rem;
}

.shipping-options {
    display: grid;
    gap: 10px;
}

.shipping-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.shipping-option:hover {
    border-color: var(--border-gold);
}

.shipping-option.selected {
    border-color: var(--color-gold);
    background: var(--color-gold-soft);
}

.shipping-option input {
    accent-color: var(--color-gold);
}

.shipping-info {
    flex: 1;
}

.shipping-name {
    display: block;
    color: var(--color-white);
    font-size: 0.76rem;
    font-weight: 700;
}

.shipping-description {
    display: block;
    margin-top: 2px;
    color: var(--color-text-muted);
    font-size: 0.68rem;
}

.shipping-price {
    color: var(--color-gold-light);
    font-size: 0.76rem;
    font-weight: 700;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.payment-option:hover,
.payment-option.active {
    border-color: var(--border-gold);
    background: var(--color-gold-soft);
}

.payment-option input {
    accent-color: var(--color-gold);
}

.payment-icon {
    color: var(--color-gold);
    font-size: 1rem;
}

.payment-option span {
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 600;
}

.card-form {
    display: grid;
    gap: 15px;
}

.card-input-wrapper {
    position: relative;
}

.card-input-wrapper i {
    position: absolute;
    top: 50%;
    right: 15px;
    color: var(--color-gold);
    transform: translateY(-50%);
}

.checkout-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.secure-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.67rem;
}

.secure-note i {
    color: var(--color-success);
}

.checkout-summary {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.checkout-products {
    max-height: 340px;
    overflow-y: auto;
    margin: -5px 0 15px;
    padding-right: 5px;
}

.checkout-product {
    display: grid;
    grid-template-columns: 65px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.checkout-product-image {
    position: relative;
    width: 65px;
    height: 76px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

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

.checkout-product-qty {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border: 2px solid var(--color-surface);
    border-radius: 50%;
    background: var(--color-gold);
    color: #090e17;
    font-size: 0.58rem;
    font-weight: 800;
}

.checkout-product-name {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1rem;
}

.checkout-product-variant {
    color: var(--color-text-muted);
    font-size: 0.62rem;
}

.checkout-product-price {
    color: var(--color-gold-light);
    font-size: 0.72rem;
    font-weight: 700;
}


/* ============================================================
   18. BUY NOW GLASSMORPHISM MODAL
   ============================================================ */

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(2, 5, 9, 0.78);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--transition),
        visibility var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.buy-now-modal {
    position: relative;
    width: min(850px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow-y: auto;
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            135deg,
            rgba(22, 31, 45, 0.88),
            rgba(8, 14, 22, 0.94)
        );
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(212, 175, 55, 0.07);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transform: translateY(25px) scale(0.97);
    transition: transform var(--transition);
}

.modal-backdrop.active .buy-now-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 5;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: rgba(5, 9, 15, 0.55);
    color: var(--color-white);
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.modal-close:hover {
    border-color: var(--border-gold);
    background: var(--color-gold-soft);
    color: var(--color-gold);
}

.modal-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
}

.modal-product-preview {
    min-height: 550px;
    overflow: hidden;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    background: #0b121c;
}

.modal-product-preview img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
}

.modal-form {
    padding: 45px;
}

.modal-eyebrow {
    margin-bottom: 10px;
    color: var(--color-gold);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.modal-title {
    margin-bottom: 7px;
    padding-right: 35px;
    font-size: 2.2rem;
}

.modal-price {
    margin-bottom: 25px;
    color: var(--color-gold-light);
    font-size: 1rem;
    font-weight: 700;
}

.modal-form-grid {
    display: grid;
    gap: 13px;
}

.modal-note {
    margin: 15px 0;
    color: var(--color-text-muted);
    font-size: 0.67rem;
    line-height: 1.5;
}

.modal-success {
    padding: 35px;
    text-align: center;
}

.modal-success-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(74, 222, 128, 0.45);
    border-radius: 50%;
    color: var(--color-success);
    font-size: 1.5rem;
}


/* ============================================================
   19. NEWSLETTER
   ============================================================ */

.newsletter {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(212, 175, 55, 0.08),
            transparent 55%
        ),
        #0c131e;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    margin-bottom: 12px;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.newsletter-description {
    max-width: 580px;
    margin: 0 auto 25px;
}

.newsletter-form {
    display: flex;
    max-width: 590px;
    margin: 0 auto;
    padding: 5px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: rgba(8, 12, 18, 0.7);
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    height: 48px;
    padding: 0 15px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--color-white);
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    flex: 0 0 auto;
}


/* ============================================================
   20. FOOTER
   ============================================================ */

.site-footer {
    background: #060a10;
    border-top: 1px solid var(--border-light);
}

.footer-main {
    padding: 80px 0 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 45px;
}

.footer-brand-description {
    max-width: 320px;
    margin: 20px 0;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    line-height: 1.8;
}

.footer-heading {
    margin-bottom: 19px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    width: fit-content;
    color: #8793a4;
    font-size: 0.73rem;
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold-light);
    transform: translateX(4px);
}

.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.73rem;
}

.footer-contact-item i {
    width: 16px;
    margin-top: 4px;
    color: var(--color-gold);
    text-align: center;
}

.footer-contact-item a:hover {
    color: var(--color-gold-light);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: #94a3b8;
    transition:
        transform var(--transition),
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    background: var(--color-gold-soft);
    color: var(--color-gold);
}

.payment-section {
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
}

.payment-title {
    margin-bottom: 13px;
    color: #788496;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.payment-badge {
    min-width: 57px;
    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    background: #101722;
    color: #dbe1e8;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition:
        border-color var(--transition-fast),
        transform var(--transition-fast),
        color var(--transition-fast);
}

.payment-badge:hover {
    border-color: var(--border-gold);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

.payment-badge.visa {
    color: #f4f7fb;
    font-style: italic;
    font-size: 0.8rem;
}

.payment-badge.mastercard {
    gap: 4px;
}

.payment-badge.mastercard::before,
.payment-badge.mastercard::after {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
}

.payment-badge.mastercard::before {
    background: #e7e9ed;
    margin-right: -7px;
    opacity: 0.75;
}

.payment-badge.mastercard::after {
    background: var(--color-gold);
    opacity: 0.8;
}

.payment-badge.amex {
    font-size: 0.56rem;
}

.payment-badge.upi {
    color: var(--color-gold-light);
}

.payment-badge.paypal {
    font-style: italic;
    color: #cdd8ea;
}

.payment-badge.apple-pay {
    font-size: 0.66rem;
}

.payment-badge.amazon {
    color: #e7d6a1;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright {
    color: #64748b;
    font-size: 0.65rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: #64748b;
    font-size: 0.65rem;
}

.footer-legal a:hover {
    color: var(--color-gold-light);
}


/* ============================================================
   21. BRAND VALUES / FEATURES
   ============================================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-card {
    position: relative;
    padding: 35px 30px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 35, 0.55);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    background: rgba(20, 29, 42, 0.8);
    box-shadow: var(--shadow-gold);
}

.value-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1rem;
}

.value-card-title {
    margin-bottom: 9px;
    font-size: 1.55rem;
}

.value-card p {
    font-size: 0.78rem;
    line-height: 1.75;
}


/* ============================================================
   22. TESTIMONIALS
   ============================================================ */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 35, 0.48);
}

.testimonial-stars {
    margin-bottom: 18px;
    color: var(--color-gold);
    font-size: 0.67rem;
}

.testimonial-text {
    margin-bottom: 22px;
    color: #c5ccd6;
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-style: italic;
    line-height: 1.55;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.testimonial-avatar {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-gold-soft);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    color: var(--color-white);
    font-size: 0.7rem;
}

.testimonial-author span {
    display: block;
    color: #64748b;
    font-size: 0.62rem;
}


/* ============================================================
   23. IMAGE / CONTENT SPLIT SECTIONS
   ============================================================ */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.split-image {
    min-height: 500px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms ease;
}

.split-section:hover .split-image img {
    transform: scale(1.025);
}

.split-content {
    display: flex;
    align-items: center;
    padding: 80px clamp(35px, 7vw, 100px);
    background: #0d141f;
}

.split-content-inner {
    max-width: 570px;
}

.split-title {
    margin-bottom: 20px;
}

.split-description {
    margin-bottom: 28px;
    line-height: 1.8;
}

.split-list {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.split-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8c1ce;
    font-size: 0.76rem;
}

.split-list i {
    color: var(--color-gold);
}


/* ============================================================
   24. PRODUCT DETAIL / QUICK VIEW SUPPORT
   ============================================================ */

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 60px;
    align-items: start;
}

.product-gallery-main {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
    margin-top: 10px;
}

.product-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.product-thumb.active,
.product-thumb:hover {
    border-color: var(--color-gold);
}

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

.detail-category {
    margin-bottom: 9px;
    color: var(--color-gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.detail-title {
    margin-bottom: 15px;
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.detail-description {
    margin-bottom: 20px;
    font-size: 0.88rem;
    line-height: 1.8;
}

.detail-price {
    margin: 20px 0;
    color: var(--color-gold-light);
    font-size: 1.4rem;
    font-weight: 700;
}

.detail-option-title {
    margin-bottom: 9px;
    color: var(--color-white);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.option-button {
    min-width: 48px;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.68rem;
    cursor: pointer;
}

.option-button:hover,
.option-button.active {
    border-color: var(--color-gold);
    background: var(--color-gold-soft);
    color: var(--color-gold-light);
}


/* ============================================================
   25. ALERTS / TOAST NOTIFICATIONS
   ============================================================ */

.toast-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 6000;
    display: grid;
    gap: 10px;
    width: min(380px, calc(100% - 40px));
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: rgba(17, 25, 39, 0.94);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    animation: toastIn 400ms ease forwards;
}

.toast.removing {
    animation: toastOut 300ms ease forwards;
}

.toast-icon {
    color: var(--color-gold);
}

.toast-content {
    flex: 1;
}

.toast-title {
    margin-bottom: 2px;
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
}

.toast-message {
    color: var(--color-text-muted);
    font-size: 0.68rem;
    line-height: 1.5;
}

.toast-close {
    background: transparent;
    color: #64748b;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(35px);
    }
}


/* ============================================================
   26. PAGINATION
   ============================================================ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 50px;
}

.page-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.68rem;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.page-number:hover,
.page-number.active {
    border-color: var(--color-gold);
    background: var(--color-gold-soft);
    color: var(--color-gold-light);
}


/* ============================================================
   27. ACCESSIBILITY / FOCUS STATES
   ============================================================ */

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

button:disabled,
.btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* ============================================================
   28. ANIMATION UTILITIES
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 700ms ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ============================================================
   29. RESPONSIVE — LARGE TABLETS
   ============================================================ */

@media (max-width: 1180px) {

    :root {
        --header-height: 76px;
    }

    .nav-menu {
        gap: 22px;
    }

    .nav-link {
        font-size: 0.66rem;
    }

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

    .catalog-products .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 30px;
    }
}


/* ============================================================
   30. RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 900px) {

    .container,
    .container-wide {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 80px 0;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        z-index: 999;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 25px;
        border-bottom: 1px solid var(--border-gold);
        background: rgba(8, 13, 21, 0.98);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        display: block;
        padding: 15px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.72rem;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero-scroll {
        display: none;
    }

    .value-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item:nth-child(2) {
        border-right: 0;
    }

    .value-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border-light);
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-card:last-child {
        grid-column: 1 / -1;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
    }

    .filter-groups-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .filter-group {
        padding: 15px 0;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary,
    .checkout-summary {
        position: static;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 450px;
    }

    .split-content {
        min-height: auto;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .values-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;
    }
}


/* ============================================================
   31. RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 640px) {

    :root {
        --header-height: 68px;
    }

    html {
        font-size: 15px;
    }

    body {
        font-size: 14px;
    }

    .container,
    .container-wide {
        width: calc(100% - 28px);
    }

    .section {
        padding: 65px 0;
    }

    .section-sm {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .announcement-bar {
        min-height: 32px;
        padding: 6px 12px;
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }

    .navbar {
        min-height: var(--header-height);
        gap: 8px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .brand-name {
        font-size: 1.15rem;
        letter-spacing: 0.16em;
    }

    .brand-subtitle {
        font-size: 0.4rem;
    }

    .nav-actions {
        gap: 0;
        margin-left: auto;
    }

    .nav-action {
        width: 38px;
        height: 38px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: calc(100svh - var(--header-height));
        align-items: flex-end;
    }

    .hero-overlay {
        background:
            linear-gradient(
                to top,
                rgba(5, 8, 13, 0.96) 0%,
                rgba(5, 8, 13, 0.68) 48%,
                rgba(5, 8, 13, 0.35) 100%
            );
    }

    .hero-content {
        padding: 80px 0 70px;
    }

    .hero-title {
        margin-bottom: 20px;
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .hero-description {
        margin-bottom: 25px;
        font-size: 0.88rem;
        line-height: 1.7;
    }

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

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

    .value-strip-grid {
        grid-template-columns: 1fr;
    }

    .value-item,
    .value-item:nth-child(2) {
        justify-content: flex-start;
        min-height: 85px;
        border-right: 0;
        border-bottom: 1px solid var(--border-light);
    }

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

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-card,
    .collection-card:last-child {
        grid-column: auto;
        min-height: 390px;
    }

    .collection-content {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .collection-title {
        font-size: 1.8rem;
    }

    .product-grid,
    .catalog-products .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
    }

    .product-media {
        border-radius: var(--radius-sm);
    }

    .product-actions {
        top: 7px;
        right: 7px;
        opacity: 1;
        transform: none;
    }

    .product-action {
        width: 33px;
        height: 33px;
        font-size: 0.7rem;
    }

    .product-badge {
        top: 7px;
        left: 7px;
        padding: 5px 7px;
        font-size: 0.48rem;
    }

    .product-info {
        padding-top: 11px;
    }

    .product-name {
        font-size: 1.05rem;
    }

    .product-category {
        font-size: 0.52rem;
    }

    .product-rating {
        font-size: 0.55rem;
    }

    .product-rating span {
        font-size: 0.57rem;
    }

    .price-current {
        font-size: 0.76rem;
    }

    .price-old {
        font-size: 0.64rem;
    }

    .product-card .quick-buy {
        opacity: 1;
        transform: none;
        min-height: 38px;
        margin-top: 10px;
        padding: 9px 8px;
        font-size: 0.52rem;
    }

    .page-banner {
        min-height: 245px;
    }

    .page-banner-content {
        padding: 45px 0;
    }

    .page-title {
        font-size: 2.7rem;
    }

    .catalog-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .catalog-controls {
        display: grid;
        grid-template-columns: 1fr;
    }

    .search-box,
    .sort-select {
        width: 100%;
    }

    .filter-sidebar {
        padding: 17px;
    }

    .filter-groups-mobile {
        grid-template-columns: 1fr;
    }

    .filter-group {
        padding: 13px 0;
    }

    .cart-item {
        grid-template-columns: 75px minmax(0, 1fr);
        gap: 12px;
    }

    .cart-item-image {
        width: 75px;
        height: 92px;
    }

    .cart-item-actions {
        grid-column: 2;
        justify-content: space-between;
        width: 100%;
    }

    .cart-item-title {
        font-size: 1.1rem;
    }

    .order-summary {
        padding: 20px;
    }

    .coupon-box {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .checkout-steps {
        gap: 5px;
    }

    .checkout-step {
        justify-content: center;
    }

    .checkout-step span:not(.step-number) {
        display: none;
    }

    .checkout-step:not(:last-child)::after {
        margin: 0 5px;
    }

    .checkout-panel {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .checkout-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

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

    .secure-note {
        justify-content: center;
    }

    .modal-backdrop {
        align-items: flex-end;
        padding: 0;
    }

    .buy-now-modal {
        width: 100%;
        max-height: 94vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(100%);
    }

    .modal-backdrop.active .buy-now-modal {
        transform: translateY(0);
    }

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

    .modal-product-preview {
        min-height: 240px;
        max-height: 270px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal-product-preview img {
        min-height: 240px;
        max-height: 270px;
    }

    .modal-form {
        padding: 28px 20px 30px;
    }

    .modal-title {
        font-size: 1.85rem;
    }

    .newsletter-form {
        display: grid;
        gap: 5px;
        padding: 5px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-main {
        padding: 55px 0 35px;
    }

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

    .footer-brand-column {
        grid-column: auto;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .footer-legal {
        gap: 12px;
    }

    .payment-badges {
        gap: 5px;
    }

    .payment-badge {
        min-width: 49px;
        height: 30px;
        padding: 0 7px;
        font-size: 0.49rem;
    }

    .social-links {
        margin-top: 15px;
    }

    .values-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        grid-column: auto;
    }

    .value-card {
        padding: 27px 22px;
    }

    .testimonial-card {
        padding: 23px;
    }

    .split-image {
        min-height: 350px;
    }

    .split-content {
        padding: 55px 25px;
    }

    .product-detail-layout {
        gap: 30px;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .detail-title {
        font-size: 2.7rem;
    }

    .toast-container {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }
}


/* ============================================================
   32. VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 390px) {

    .container,
    .container-wide {
        width: calc(100% - 22px);
    }

    .brand-subtitle {
        display: none;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .nav-action {
        width: 35px;
    }

    .product-grid,
    .catalog-products .product-grid {
        gap: 12px 8px;
    }

    .product-name {
        font-size: 0.98rem;
    }

    .product-rating {
        display: none;
    }

    .product-card .quick-buy {
        font-size: 0.48rem;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: 2.9rem;
    }

    .hero-description {
        font-size: 0.82rem;
    }

    .cart-drawer {
        width: 100%;
    }
}


/* ============================================================
   33. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .product-media img,
    .collection-image img,
    .split-image img {
        transition: none;
    }
}


/* ============================================================
   34. PRINT
   ============================================================ */

@media print {

    .site-header,
    .announcement-bar,
    .site-footer,
    .cart-drawer,
    .cart-drawer-backdrop,
    .modal-backdrop,
    .toast-container,
    .btn {
        display: none !important;
    }

    body {
        background: #ffffff;
        color: #111111;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        color: #111111;
    }
}

/* =========================================================
   AURA LUXURY — PREMIUM FOOTER SYSTEM
   ========================================================= */

.site-footer {
    position: relative;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(212, 175, 55, 0.055),
            transparent 30%
        ),
        #090e17;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    color: #ffffff;
    overflow: hidden;
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer-main {
    position: relative;
    padding: 88px 0 55px;
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.45),
        transparent
    );
    pointer-events: none;
}


/* =========================================================
   FOOTER GRID
   ========================================================= */

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(250px, 1.45fr)
        minmax(150px, 0.8fr)
        minmax(150px, 0.8fr)
        minmax(220px, 1.15fr);

    gap: 55px;

    align-items: start;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand-column {
    max-width: 390px;
}

.footer-brand {
    display: inline-flex;
    text-decoration: none;
}

.footer-brand-description {
    max-width: 350px;
    margin: 25px 0 30px;

    color: rgba(255, 255, 255, 0.62);

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.02em;
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.footer-heading {
    position: relative;

    margin: 5px 0 23px;

    color: #f3e5ab;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
    line-height: 1.5;

    text-transform: uppercase;
}

.footer-heading::after {
    content: "";

    display: block;

    width: 28px;
    height: 1px;

    margin-top: 11px;

    background: #d4af37;
}


/* =========================================================
   FOOTER TEXT LINKS
   ========================================================= */

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    width: fit-content;

    color: rgba(255, 255, 255, 0.64);

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;

    line-height: 1.6;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-links a::before {
    content: "";

    width: 0;
    height: 1px;

    margin-right: 0;

    background: #d4af37;

    transition:
        width 0.3s ease,
        margin-right 0.3s ease;
}

.footer-links a:hover {
    color: #f3e5ab;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 14px;
    margin-right: 8px;
}


/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


/* Individual gold-outline circle */

.social-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    color: #d4af37;

    text-decoration: none;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        0 8px 24px rgba(0, 0, 0, 0.18);

    overflow: hidden;

    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Subtle luxury shine */

.social-link::before {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    top: -45px;
    left: -50px;

    background: rgba(255, 255, 255, 0.12);

    transform: rotate(35deg);

    opacity: 0;

    transition:
        left 0.5s ease,
        opacity 0.5s ease;
}


/* =========================================================
   FONT AWESOME ICON
   ========================================================= */

.social-link i {
    position: relative;
    z-index: 2;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    color: currentColor;

    font-size: 15px;
    line-height: 1;

    /* Prevent malformed/missing FA glyph boxes */
    font-family:
        "Font Awesome 6 Brands",
        "Font Awesome 6 Free",
        sans-serif;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   INLINE SVG FALLBACK
   ========================================================= */

/*
   The SVG is intentionally visible even when Font Awesome
   is unavailable. This guarantees the social badges never
   become empty rings.
*/

.social-fallback-icon {
    position: absolute;

    z-index: 1;

    width: 17px;
    height: 17px;

    display: block;

    color: currentColor;

    fill: currentColor;

    pointer-events: none;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/*
   If Font Awesome loads normally, keep the SVG underneath
   the FA icon. Both occupy the same visual area and the
   fallback guarantees rendering if the CDN fails.
*/

.social-link i + .social-fallback-icon {
    opacity: 0.0;
}


/*
   If the Font Awesome glyph itself cannot render, the SVG
   remains available in the badge rather than leaving an
   empty circle.
*/

.social-link:hover i,
.social-link:hover .social-fallback-icon {
    transform: scale(1.08);
}


/* =========================================================
   SOCIAL HOVER
   ========================================================= */

.social-link:hover {
    color: #090e17;

    border-color: #d4af37;

    background:
        linear-gradient(
            135deg,
            #f3e5ab 0%,
            #d4af37 48%,
            #b89122 100%
        );

    transform: translateY(-4px);

    box-shadow:
        0 10px 28px rgba(212, 175, 55, 0.18),
        0 0 22px rgba(212, 175, 55, 0.08);
}

.social-link:hover::before {
    left: 55px;
    opacity: 1;
}


/* =========================================================
   CONTACT COLUMN
   ========================================================= */

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: rgba(255, 255, 255, 0.64);

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;

    line-height: 1.7;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #f3e5ab;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    min-width: 22px;
    height: 22px;

    color: #d4af37;

    font-size: 11px;
}

.footer-concierge-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 24px;

    color: #f3e5ab;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.footer-concierge-link i {
    font-size: 10px;
}

.footer-concierge-link:hover {
    color: #ffffff;
    gap: 15px;
}


/* =========================================================
   PAYMENT SECTION
   ========================================================= */

.payment-section {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 65px;
    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.payment-title {
    color: rgba(255, 255, 255, 0.4);

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.2em;
    text-transform: uppercase;

    white-space: nowrap;
}

.payment-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 58px;
    height: 29px;

    padding: 0 9px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.025);

    color: rgba(255, 255, 255, 0.58);

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.03em;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.payment-badge:hover {
    color: #f3e5ab;
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

.payment-badge.apple-pay {
    gap: 3px;
}

.payment-badge.apple-pay i {
    font-size: 13px;
}

.payment-mastercard-symbol {
    display: inline-flex;
    margin-right: 5px;
}

.payment-mastercard-symbol span {
    display: block;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: currentColor;

    opacity: 0.55;
}

.payment-mastercard-symbol span + span {
    margin-left: -5px;
    opacity: 0.3;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);

    background: rgba(0, 0, 0, 0.18);
}

.footer-bottom-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.copyright {
    margin: 0;

    color: rgba(255, 255, 255, 0.38);

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 400;

    letter-spacing: 0.03em;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.42);

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 400;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #f3e5ab;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 35px;
    }

    .footer-brand-column {
        max-width: 100%;
    }

    .payment-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-badges {
        justify-content: flex-start;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .footer-main {
        padding: 65px 0 40px;
    }

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

    .footer-brand-column {
        max-width: 100%;
    }

    .footer-brand-description {
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .social-links {
        gap: 9px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .social-link i,
    .social-fallback-icon {
        width: 16px;
        height: 16px;
        font-size: 14px;
    }

    .footer-heading {
        margin-bottom: 18px;
    }

    .footer-links {
        gap: 11px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .payment-section {
        margin-top: 45px;
        gap: 18px;
    }

    .payment-badges {
        justify-content: flex-start;
        gap: 7px;
    }

    .payment-badge {
        min-width: 55px;
        height: 28px;
        padding: 0 8px;
    }

    .footer-bottom-inner {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        padding: 22px 0;
        gap: 15px;
    }

    .footer-legal {
        justify-content: flex-start;
        gap: 15px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .social-link {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .payment-badge {
        min-width: 50px;
        font-size: 8px;
    }

    .footer-legal {
        gap: 10px;
    }

}
/* =========================================================
   AURA LUXURY — SOCIAL MEDIA ICONS
   INLINE SVG / NO FONT AWESOME DEPENDENCY
   ========================================================= */

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 44px;

    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.025);

    color: #d4af37;

    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.social-link::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: inherit;

    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.16),
        transparent 68%
    );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.social-link:hover {
    color: #d4af37;

    border-color: #d4af37;

    background: rgba(212, 175, 55, 0.08);

    transform: translateY(-4px) scale(1.06);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 18px rgba(212, 175, 55, 0.16);
}

.social-link:hover::before {
    opacity: 1;
}

/* INLINE SVG */
.social-link .social-icon {
    width: 19px;
    height: 19px;

    display: block;

    flex: 0 0 auto;

    color: #d4af37;

    fill: currentColor;

    position: relative;
    z-index: 2;

    transform: scale(1);

    transform-origin: center;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.35s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.18);

    filter:
        drop-shadow(0 0 5px rgba(212, 175, 55, 0.45));
}

/* Instagram and other outlined SVG elements */
.social-link .social-icon rect,
.social-link .social-icon circle {
    vector-effect: non-scaling-stroke;
}

/* Keyboard accessibility */
.social-link:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 4px;
}

/* Mobile */
@media (max-width: 640px) {
    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .social-link .social-icon {
        width: 18px;
        height: 18px;
    }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .social-link,
    .social-link .social-icon,
    .social-link::before {
        transition: none;
    }

    .social-link:hover {
        transform: none;
    }

    .social-link:hover .social-icon {
        transform: none;
    }
}
/* Mobile screen par hero section ke text ko side se gap dene ke liye */
@media (max-width: 768px) {
    .hero .container,
    .hero-content {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
/* Mobile view par buttons layout fix */
@media (max-width: 576px) {
    .product-card-actions {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .product-card-actions .btn {
        width: 100% !important;
        padding: 8px 6px !important;
        font-size: 0.75rem !important;
        letter-spacing: 0px !important;
        white-space: nowrap !important;
    }
}
/* --- EXACT CART DRAWER FIX --- */

/* 1. Backdrop Overlay (Kaala Parda) */
#cartDrawerBackdrop,
.cart-drawer-backdrop {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 99998 !important; /* Drawer se 1 kam */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#cartDrawerBackdrop.active,
#cartDrawerBackdrop.open,
.cart-drawer-backdrop.active,
.cart-drawer-backdrop.open {
    display: block !important;
    opacity: 1 !important;
}

/* 2. Main Cart Drawer (Side Box) */
#cartDrawer,
.cart-drawer {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Pehle screen ke bahar rakha hai */
    width: 380px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background-color: #0d1322 !important; /* App ka dark theme color */
    z-index: 999999 !important; /* OVERLAY SE BHI ZYADA UPAR (Fixes Black Screen issue) */
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
}

/* 3. Jab Drawer Open Hoga (Slide-In Effect) */
#cartDrawer.open,
#cartDrawer.active,
.cart-drawer.open,
.cart-drawer.active {
    right: 0 !important; /* Screen ke andar right side par laata hai */
}
