/* ============================================================
   LUXE JEWELS - Premium Jewelry E-Commerce Stylesheet
   ============================================================
   A luxurious, modern design system inspired by high-end jewelry brands.
   Color Palette: Rose Gold, Deep Maroon, Silver, Elegant Whites
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    /* Primary Colors */
    --color-rose: #B76E79;
    --color-rose-light: #D4A0A7;
    --color-rose-dark: #8B1A4A;
    --color-maroon: #5C0A2E;
    --color-gold: #C9A96E;
    --color-gold-light: #E8D5B5;
    --color-silver: #C0C0C0;
    
    /* Neutrals */
    --color-white: #FFFFFF;
    --color-cream: #FDF8F5;
    --color-ivory: #FAF6F1;
    --color-light-gray: #F5F0EB;
    --color-medium-gray: #9B9B9B;
    --color-dark-gray: #4A4A4A;
    --color-charcoal: #2D2D2D;
    --color-black: #1A1A1A;
    
    /* Functional */
    --color-success: #2E7D32;
    --color-warning: #F9A825;
    --color-error: #C62828;
    --color-info: #1565C0;
    
    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(183,110,121,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--color-rose-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-rose);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.3;
}

.text-rose { color: var(--color-rose) !important; }
.text-maroon { color: var(--color-maroon) !important; }
.text-gold { color: var(--color-gold) !important; }
.bg-cream { background-color: var(--color-cream) !important; }
.bg-ivory { background-color: var(--color-ivory) !important; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-rose-dark) 100%);
    color: var(--color-white);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: var(--z-sticky);
}

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

.announcement-bar__text {
    animation: slideText 20s linear infinite;
}

@keyframes slideText {
    0%, 100% { opacity: 1; }
    48% { opacity: 1; }
    50% { opacity: 0; }
    52% { opacity: 1; }
}

/* ============================================================
   MAIN HEADER
   ============================================================ */
.main-header {
    background: var(--color-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1rem;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: -0.5px;
}

.logo-accent {
    font-family: var(--font-accent);
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-rose);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Desktop Navigation */
.main-nav {
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 24px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-rose-dark);
}

.nav-link--highlight {
    color: var(--color-rose) !important;
    font-weight: 600;
}

.nav-link i {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    min-width: 700px;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: var(--z-dropdown);
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px;
}

.mega-col h6.mega-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-rose-dark);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-light-gray);
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-dark-gray);
    transition: all var(--transition-fast);
}

.mega-col ul li a:hover {
    color: var(--color-rose);
    padding-left: 5px;
}

.mega-featured-card {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.mega-featured-badge {
    display: inline-block;
    background: var(--color-rose);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.mega-featured-card h6 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 8px;
}

.mega-featured-card p {
    font-size: 13px;
    color: var(--color-medium-gray);
    margin-bottom: 12px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: none;
    color: var(--color-charcoal);
    font-size: 20px;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.header-action-btn:hover {
    background: var(--color-cream);
    color: var(--color-rose-dark);
}

.action-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--color-rose);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.98);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(20px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    height: 100%;
}

.search-overlay__close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-charcoal);
    padding: 10px;
    transition: transform var(--transition-fast);
}

.search-overlay__close:hover {
    transform: rotate(90deg);
}

.search-form-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.search-title {
    font-family: var(--font-display);
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-charcoal);
}

.search-input-group {
    position: relative;
    margin-bottom: 20px;
}

.search-input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-medium-gray);
}

.search-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid var(--color-light-gray);
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition-fast);
    background: var(--color-white);
}

.search-input:focus {
    border-color: var(--color-rose);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    background: var(--color-cream);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-result-item .result-info h6 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.search-result-item .result-info span {
    font-size: 13px;
    color: var(--color-rose);
    font-weight: 600;
}

.search-popular {
    margin-top: 20px;
    text-align: center;
}

.search-popular__label {
    font-size: 13px;
    color: var(--color-medium-gray);
    margin-right: 8px;
}

.search-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--color-light-gray);
    border-radius: 20px;
    font-size: 13px;
    margin: 4px;
    color: var(--color-dark-gray);
    transition: all var(--transition-fast);
}

.search-tag:hover {
    border-color: var(--color-rose);
    color: var(--color-rose);
    background: var(--color-cream);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: var(--color-white);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    transition: right var(--transition-smooth);
    box-shadow: var(--shadow-xl);
}

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

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-light-gray);
}

.cart-drawer__header h5 {
    font-family: var(--font-display);
    font-size: 18px;
    margin: 0;
}

.cart-drawer__close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-dark-gray);
    padding: 5px;
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-drawer-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.cart-drawer-item__image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-cream);
}

.cart-drawer-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-drawer-item__info {
    flex: 1;
}

.cart-drawer-item__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 4px;
    line-height: 1.4;
}

.cart-drawer-item__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-rose-dark);
}

.cart-drawer-item__qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-drawer-item__qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-light-gray);
    background: var(--color-white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.cart-drawer-item__qty button:hover {
    border-color: var(--color-rose);
    color: var(--color-rose);
}

.cart-drawer-item__qty span {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cart-drawer-item__remove {
    background: none;
    border: none;
    color: var(--color-medium-gray);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color var(--transition-fast);
    align-self: flex-start;
}

.cart-drawer-item__remove:hover {
    color: var(--color-error);
}

.cart-drawer__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--color-light-gray);
    background: var(--color-cream);
}

.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-drawer__note {
    font-size: 12px;
    color: var(--color-medium-gray);
    margin-bottom: 15px;
}

.cart-empty {
    padding: 40px 20px;
}

.cart-empty i {
    color: var(--color-light-gray);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--color-white);
    z-index: var(--z-modal);
    transition: left var(--transition-smooth);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--color-light-gray);
}

.mobile-menu__close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu__user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--color-cream);
    font-weight: 500;
}

.mobile-nav {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.mobile-nav li a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    color: var(--color-dark-gray);
    transition: all var(--transition-fast);
}

.mobile-nav li a:hover {
    background: var(--color-cream);
    color: var(--color-rose-dark);
}

.mobile-nav__divider {
    height: 1px;
    background: var(--color-light-gray);
    margin: 8px 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-luxe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--color-rose-dark) 0%, var(--color-maroon) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-luxe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-luxe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139,26,74,0.3);
    color: var(--color-white);
}

.btn-luxe:hover::before {
    left: 100%;
}

.btn-luxe-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    color: var(--color-rose-dark);
    border: 2px solid var(--color-rose-dark);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-luxe-outline:hover {
    background: var(--color-rose-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-luxe-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, #B8860B 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-luxe-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.4);
    color: var(--color-white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 42px;
    font-size: 15px;
}

/* Social Buttons */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-google {
    background: var(--color-white);
    border: 1px solid #ddd;
    color: var(--color-dark-gray);
}

.btn-google:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: white;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.hero-swiper {
    width: 100%;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 50%, var(--color-light-gray) 100%);
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(183,110,121,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(183,110,121,0.1);
    color: var(--color-rose-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--color-rose);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--color-medium-gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

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

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183,110,121,0.1) 0%, rgba(201,169,110,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: floatSlow 6s ease-in-out infinite;
}

.hero-image-circle::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 1px dashed rgba(183,110,121,0.2);
    animation: rotateSlow 30s linear infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image-circle img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.hero-floating-badge {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-floating-badge.badge-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.hero-floating-badge.badge-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-floating-badge i {
    font-size: 24px;
    color: var(--color-rose);
}

.hero-floating-badge .badge-text h6 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.hero-floating-badge .badge-text span {
    font-size: 11px;
    color: var(--color-medium-gray);
}

/* Swiper Navigation */
.hero-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: var(--color-medium-gray);
    opacity: 0.3;
    transition: all var(--transition-base);
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 50px;
    background: var(--color-rose-dark);
    opacity: 1;
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(183,110,121,0.1);
    color: var(--color-rose-dark);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 18px;
    color: var(--color-medium-gray);
    max-width: 500px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--color-rose), var(--color-gold));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card__image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-cream), var(--color-light-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-slow);
}

.category-card__image i {
    font-size: 60px;
    color: var(--color-rose-light);
    transition: all var(--transition-base);
}

.category-card:hover .category-card__image {
    transform: scale(1.05);
}

.category-card:hover .category-card__image i {
    color: var(--color-rose);
    transform: scale(1.1);
}

.category-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
}

.category-card__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.category-card__count {
    font-size: 13px;
    opacity: 0.8;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

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

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

.product-card__actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

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

.product-card__action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    font-size: 16px;
    color: var(--color-dark-gray);
}

.product-card__action-btn:hover {
    background: var(--color-rose);
    color: white;
}

.product-card__action-btn.wishlisted {
    background: var(--color-rose);
    color: white;
}

.product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-cream);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.08);
}

.product-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light-gray) 100%);
}

.product-card__image-placeholder i {
    font-size: 50px;
    color: var(--color-rose-light);
}

.product-card__quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.product-card:hover .product-card__quick-add {
    transform: translateY(0);
}

.product-card__quick-add .btn {
    width: 100%;
    backdrop-filter: blur(10px);
}

.product-card__info {
    padding: 16px;
}

.product-card__category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-medium-gray);
    margin-bottom: 6px;
}

.product-card__name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__name a {
    color: inherit;
    text-decoration: none;
}

.product-card__name a:hover {
    color: var(--color-rose-dark);
}

.product-card__rating {
    margin-bottom: 8px;
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card__current-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.product-card__original-price {
    font-size: 14px;
    color: var(--color-medium-gray);
    text-decoration: line-through;
}

.product-card__discount {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-success);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card__stars {
    color: var(--color-warning);
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-card__text {
    font-family: var(--font-accent);
    font-size: 17px;
    font-style: italic;
    color: var(--color-dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-rose-light), var(--color-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-charcoal);
}

.testimonial-card__location {
    font-size: 12px;
    color: var(--color-medium-gray);
}

/* ============================================================
   REFERRAL BANNER
   ============================================================ */
.referral-banner {
    background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-rose-dark) 50%, var(--color-rose) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.referral-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.referral-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.referral-banner__title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.referral-banner__subtitle {
    font-family: var(--font-accent);
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.referral-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.referral-step {
    text-align: center;
    max-width: 180px;
}

.referral-step__number {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 12px;
    border: 2px solid rgba(255,255,255,0.3);
}

.referral-step__text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    padding: 80px 0;
    background: var(--color-white);
}

.newsletter-wrapper {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    border: 1px solid rgba(183,110,121,0.1);
}

.newsletter-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(183,110,121,0.1);
    color: var(--color-rose-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-text {
    color: var(--color-medium-gray);
    font-size: 14px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid var(--color-light-gray);
    border-radius: 50px;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition-fast);
    background: var(--color-white);
}

.newsletter-input:focus {
    border-color: var(--color-rose);
}

.newsletter-btn {
    white-space: nowrap;
}

.newsletter-message {
    margin-top: 10px;
    font-size: 14px;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-section {
    padding: 60px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-light-gray);
}

.trust-badge {
    text-align: center;
    padding: 20px;
}

.trust-badge__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--color-rose-dark);
    transition: all var(--transition-base);
}

.trust-badge:hover .trust-badge__icon {
    background: var(--color-rose-dark);
    color: white;
    transform: scale(1.1);
}

.trust-badge h6 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-badge p {
    font-size: 13px;
    color: var(--color-medium-gray);
    margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-charcoal);
    color: rgba(255,255,255,0.7);
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand__desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 15px 0 20px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-rose);
    border-color: var(--color-rose);
    color: white;
    transform: translateY(-3px);
}

.footer-links__title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--color-rose-light);
    padding-left: 5px;
}

.footer-contact li {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    padding: 25px 0;
}

.footer-copyright {
    font-size: 13px;
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    font-size: 13px;
}

.payment-icon {
    padding: 3px 8px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--color-rose-dark);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   LOGIN MODAL
   ============================================================ */
.luxe-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
}

.luxe-modal .modal-header {
    padding: 24px 24px 0;
}

.luxe-modal .modal-title {
    font-family: var(--font-display);
    font-size: 22px;
}

.luxe-modal .modal-body {
    padding: 24px;
}

.luxe-input-group .input-group-text {
    background: var(--color-cream);
    border-color: var(--color-light-gray);
    font-weight: 500;
}

.luxe-input-group .form-control {
    border-color: var(--color-light-gray);
    padding: 12px 16px;
    font-size: 16px;
}

.luxe-input-group .form-control:focus {
    border-color: var(--color-rose);
    box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
}

.divider-text {
    text-align: center;
    position: relative;
}

.divider-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-light-gray);
}

.divider-text span {
    background: white;
    padding: 0 15px;
    position: relative;
    font-size: 13px;
    color: var(--color-medium-gray);
}

/* OTP Inputs */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.otp-input {
    width: 48px;
    height: 54px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition-fast);
}

.otp-input:focus {
    border-color: var(--color-rose);
}

/* ============================================================
   DROPDOWN
   ============================================================ */
.luxe-dropdown {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
}

.luxe-dropdown .dropdown-header {
    font-weight: 600;
    color: var(--color-charcoal);
    padding: 8px 12px;
}

.luxe-dropdown .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.luxe-dropdown .dropdown-item:hover {
    background: var(--color-cream);
    color: var(--color-rose-dark);
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.luxe-toast {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.luxe-toast .toast-body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    font-size: 14px;
}

.luxe-toast.toast-success { border-left: 4px solid var(--color-success); }
.luxe-toast.toast-error { border-left: 4px solid var(--color-error); }
.luxe-toast.toast-info { border-left: 4px solid var(--color-info); }

/* ============================================================
   PAGE SPECIFIC: PRODUCT DETAIL
   ============================================================ */
.pdp-gallery {
    position: sticky;
    top: 90px;
}

.pdp-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-cream);
    margin-bottom: 15px;
}

.pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform var(--transition-base);
}

.pdp-main-image:hover img {
    transform: scale(1.1);
}

.pdp-thumbnails {
    display: flex;
    gap: 10px;
}

.pdp-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition-fast);
    background: var(--color-cream);
}

.pdp-thumbnail.active,
.pdp-thumbnail:hover {
    border-color: var(--color-rose);
}

.pdp-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-info {
    padding-left: 30px;
}

.pdp-breadcrumb {
    font-size: 13px;
    margin-bottom: 15px;
}

.pdp-breadcrumb a {
    color: var(--color-medium-gray);
}

.pdp-breadcrumb a:hover {
    color: var(--color-rose);
}

.pdp-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pdp-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-light-gray);
}

.pdp-current-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.pdp-original-price {
    font-size: 20px;
    color: var(--color-medium-gray);
    text-decoration: line-through;
}

.pdp-discount-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(46,125,50,0.1);
    color: var(--color-success);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.pdp-metal-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pdp-metal-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.pdp-metal-tag i {
    color: var(--color-rose);
}

/* Price Breakup */
.price-breakup {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}

.price-breakup__title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-breakup__row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-dark-gray);
}

.price-breakup__row.total {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 8px;
    padding-top: 10px;
    font-weight: 700;
    color: var(--color-charcoal);
}

/* Ring Size Selector */
.size-selector {
    margin-bottom: 20px;
}

.size-selector__label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option {
    width: 42px;
    height: 42px;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: white;
}

.size-option:hover,
.size-option.selected {
    border-color: var(--color-rose-dark);
    background: var(--color-rose-dark);
    color: white;
}

/* Delivery Check */
.delivery-check {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.delivery-check__input {
    display: flex;
    gap: 10px;
}

.delivery-check__input input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
}

.delivery-check__input input:focus {
    border-color: var(--color-rose);
}

.delivery-check__result {
    margin-top: 10px;
    font-size: 14px;
}

/* Certificate Section */
.certificate-section {
    margin-bottom: 20px;
}

.certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-cream));
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.certificate-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.certificate-badge i {
    color: var(--color-gold);
    font-size: 18px;
}

/* Add to Cart Actions */
.pdp-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pdp-qty {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pdp-qty button {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--color-cream);
    cursor: pointer;
    font-size: 18px;
    transition: background var(--transition-fast);
}

.pdp-qty button:hover {
    background: var(--color-light-gray);
}

.pdp-qty input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-table {
    width: 100%;
}

.cart-table th {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-medium-gray);
    padding: 15px 0;
    border-bottom: 2px solid var(--color-light-gray);
}

.cart-table td {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-light-gray);
    vertical-align: middle;
}

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product-cell img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: var(--color-cream);
}

.cart-product-name {
    font-weight: 500;
    font-size: 15px;
    color: var(--color-charcoal);
}

.cart-product-meta {
    font-size: 13px;
    color: var(--color-medium-gray);
}

.cart-summary {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 90px;
}

.cart-summary__title {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.cart-summary__row.total {
    border-top: 2px solid var(--color-charcoal);
    margin-top: 15px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.coupon-input-group input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
    text-transform: uppercase;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-section {
    background: var(--color-cream);
    min-height: 100vh;
    padding: 40px 0;
}

.checkout-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.checkout-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card__title .step-number {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background: var(--color-rose-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
}

/* Form Styles */
.luxe-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin-bottom: 6px;
}

.luxe-form .form-control,
.luxe-form .form-select {
    padding: 12px 16px;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.luxe-form .form-control:focus,
.luxe-form .form-select:focus {
    border-color: var(--color-rose);
    box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
}

/* ============================================================
   USER DASHBOARD
   ============================================================ */
.dashboard-sidebar {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.dashboard-user-card {
    padding: 25px;
    background: linear-gradient(135deg, var(--color-maroon), var(--color-rose-dark));
    color: white;
    text-align: center;
}

.dashboard-user-avatar {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
}

.dashboard-nav {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dashboard-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 14px;
    color: var(--color-dark-gray);
    transition: all var(--transition-fast);
}

.dashboard-nav li a:hover,
.dashboard-nav li a.active {
    background: var(--color-cream);
    color: var(--color-rose-dark);
}

.dashboard-nav li a i {
    font-size: 18px;
    width: 24px;
}

.dashboard-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.dashboard-stat-card {
    background: linear-gradient(135deg, var(--color-cream), var(--color-ivory));
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: all var(--transition-base);
}

.dashboard-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.dashboard-stat-card__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(183,110,121,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 22px;
    color: var(--color-rose-dark);
}

.dashboard-stat-card__value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.dashboard-stat-card__label {
    font-size: 13px;
    color: var(--color-medium-gray);
}

/* Order Status Badge */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge--pending { background: #FFF3E0; color: #E65100; }
.status-badge--confirmed { background: #E3F2FD; color: #1565C0; }
.status-badge--processing { background: #F3E5F5; color: #7B1FA2; }
.status-badge--shipped { background: #E8F5E9; color: #2E7D32; }
.status-badge--delivered { background: #E8F5E9; color: #1B5E20; }
.status-badge--cancelled { background: #FFEBEE; color: #C62828; }

/* ============================================================
   REFERRAL DASHBOARD
   ============================================================ */
.referral-progress {
    background: linear-gradient(135deg, var(--color-cream), var(--color-ivory));
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.referral-progress__circles {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.referral-circle {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    border: 3px solid var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-medium-gray);
    position: relative;
    transition: all var(--transition-base);
}

.referral-circle.completed {
    border-color: var(--color-success);
    background: rgba(46,125,50,0.1);
    color: var(--color-success);
}

.referral-circle.completed::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: var(--color-success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.referral-connector {
    width: 40px;
    height: 3px;
    background: var(--color-light-gray);
    align-self: center;
    border-radius: 3px;
}

.referral-connector.completed {
    background: var(--color-success);
}

.referral-share-box {
    background: var(--color-white);
    border: 2px dashed var(--color-rose-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
}

.referral-code-display {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-rose-dark);
    margin: 10px 0;
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-sidebar {
    background: var(--color-charcoal);
    min-height: 100vh;
    padding: 20px 0;
    position: fixed;
    width: 250px;
    z-index: 100;
}

.admin-sidebar .logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
}

.admin-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.admin-nav li a i {
    font-size: 18px;
    width: 24px;
}

.admin-main {
    margin-left: 250px;
    padding: 25px;
    background: var(--color-light-gray);
    min-height: 100vh;
}

.admin-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.admin-stat {
    text-align: center;
    padding: 20px;
}

.admin-stat__value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.admin-stat__label {
    font-size: 13px;
    color: var(--color-medium-gray);
    margin-top: 5px;
}

.admin-table {
    width: 100%;
}

.admin-table th {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-medium-gray);
    padding: 12px 15px;
    border-bottom: 2px solid var(--color-light-gray);
    background: var(--color-cream);
}

.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--color-light-gray);
    font-size: 14px;
    vertical-align: middle;
}

.admin-table tr:hover {
    background: var(--color-cream);
}

/* ============================================================
   STATIC PAGES
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: 40px;
    margin-bottom: 10px;
}

.page-hero__breadcrumb {
    font-size: 14px;
    color: var(--color-medium-gray);
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.luxe-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */
@media (max-width: 991.98px) {
    .header-wrapper {
        height: 60px;
    }
    
    .logo-text { font-size: 24px; }
    .logo-accent { font-size: 22px; }
    
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-image-wrapper {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pdp-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .referral-banner__title {
        font-size: 30px;
    }
    
    .admin-sidebar {
        display: none;
    }
    
    .admin-main {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .newsletter-wrapper {
        padding: 30px 20px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-title {
        font-size: 22px;
    }
    
    .footer-payments {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .referral-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .referral-banner__title {
        font-size: 24px;
    }
    
    .pdp-title {
        font-size: 22px;
    }
    
    .pdp-current-price {
        font-size: 26px;
    }
    
    .cart-product-cell img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .announcement-bar {
        font-size: 11px;
        padding: 6px 0;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        aspect-ratio: 1;
    }
    
    .pdp-actions {
        flex-direction: column;
    }
    
    .pdp-actions .btn {
        width: 100%;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--color-light-gray) 25%, var(--color-cream) 50%, var(--color-light-gray) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================================
   SHOP / LISTING PAGE
   ============================================================ */
.shop-filters {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

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

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

.filter-group__title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-dark-gray);
    cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--color-rose-dark);
}

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

@media (max-width: 991.98px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ============================================================
   RING SIZE GUIDE MODAL
   ============================================================ */
.ring-size-guide {
    padding: 20px;
}

.ring-size-table {
    width: 100%;
    border-collapse: collapse;
}

.ring-size-table th,
.ring-size-table td {
    padding: 10px 15px;
    text-align: center;
    border: 1px solid var(--color-light-gray);
    font-size: 14px;
}

.ring-size-table th {
    background: var(--color-cream);
    font-weight: 600;
}

.ring-size-table tr:hover {
    background: var(--color-ivory);
}

/* Print styles */
@media print {
    .announcement-bar,
    .main-header,
    .newsletter-section,
    .trust-section,
    .site-footer,
    .back-to-top,
    .cart-drawer,
    .mobile-menu,
    .search-overlay {
        display: none !important;
    }
    
    .main-content {
        padding: 0;
    }
}

/* ============================================================
   OTP & AUTH STYLES
   ============================================================ */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.otp-input {
    width: 50px;
    height: 55px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.otp-input:focus {
    border-color: var(--color-rose);
    box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-medium-gray);
    font-size: 13px;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-light-gray);
}

.luxe-input-group .input-group-text {
    background: var(--color-cream);
    border: 1px solid var(--color-light-gray);
    border-right: none;
    font-weight: 600;
    color: var(--color-dark-gray);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.luxe-input-group .form-control {
    border: 1px solid var(--color-light-gray);
    border-left: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 14px 16px;
    font-size: 16px;
}

.luxe-input-group .form-control:focus {
    border-color: var(--color-rose);
    box-shadow: none;
}

/* ============================================================
   REFERRAL BANNER
   ============================================================ */
.referral-banner {
    background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-rose-dark) 50%, var(--color-rose) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.referral-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.referral-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.referral-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.referral-banner__title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.referral-banner__subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination .page-link {
    border: 1px solid var(--color-light-gray);
    color: var(--color-dark-gray);
    padding: 10px 16px;
    font-size: 14px;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
    margin: 0 3px;
}

.pagination .page-link:hover {
    background: var(--color-cream);
    border-color: var(--color-rose);
    color: var(--color-rose-dark);
}

.pagination .page-item.active .page-link {
    background: var(--color-rose-dark);
    border-color: var(--color-rose-dark);
    color: white;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--color-rose-dark);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--color-maroon);
}

/* ============================================================
   PRODUCT CARD IMAGE PLACEHOLDER
   ============================================================ */
.product-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
    color: var(--color-rose-light);
    font-size: 48px;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    color: white;
    padding: 20px;
    z-index: var(--z-toast);
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-consent.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent__text {
    font-size: 14px;
    opacity: 0.9;
}

.cookie-consent__text a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: var(--z-sticky);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ============================================================
   SELECTION & SCROLLBAR
   ============================================================ */
::selection {
    background: var(--color-rose-light);
    color: var(--color-white);
}

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

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--color-rose-light);
    border-radius: 4px;
}

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

/* ============================================================
   ACCORDION OVERRIDES
   ============================================================ */
.accordion-button {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-charcoal);
    padding: 16px 0;
    background: transparent;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--color-rose-dark);
}

.accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
}

.accordion-body {
    padding: 0 0 16px 0;
}

/* ============================================================
   FORM CHECK OVERRIDES
   ============================================================ */
.form-check-input:checked {
    background-color: var(--color-rose-dark);
    border-color: var(--color-rose-dark);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(183,110,121,0.15);
    border-color: var(--color-rose);
}

/* ============================================================
   MODAL OVERRIDES
   ============================================================ */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--color-light-gray);
    padding: 20px 25px;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid var(--color-light-gray);
    padding: 15px 25px;
}

/* ============================================================
   PRODUCT BADGE STYLES
   ============================================================ */
.product-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.product-badge--new {
    background: var(--color-rose-dark);
    color: white;
}

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

/* ============================================================
   HERO BADGE
   ============================================================ */
.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(183,110,121,0.1);
    color: var(--color-rose-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
