/* LuxeJewels - Luxury Jewelry Store CSS */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #c9a961;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 10px;
}

/* Mobile Image Loading Optimization */
.jewelry-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    min-height: 200px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.jewelry-image:not([src]) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.luxury-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.luxury-brand:hover {
    color: var(--accent-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Custom Notification Styles */
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    min-width: 300px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    animation: slideInRight 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-notification.success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.custom-notification.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.custom-notification.warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.custom-notification.info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.custom-notification .notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.custom-notification .notification-content {
    flex: 1;
}

.custom-notification .notification-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.custom-notification .notification-message {
    font-size: 14px;
    opacity: 0.9;
}

.custom-notification .notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.custom-notification .notification-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.custom-notification.fade-out {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* Navigation */
.luxury-nav {
    background: linear-gradient(135deg, var(--secondary-color), #2c2c2c) !important;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

/* Remove any default Bootstrap navbar margins */
.navbar {
    margin-bottom: 0 !important;
    border: none !important;
}

.luxury-nav .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.luxury-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.luxury-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.luxury-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.luxury-nav .nav-link:hover::after {
    width: 80%;
}

.luxury-dropdown {
    background: rgba(26, 26, 26, 0.95);
    border: none;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.luxury-dropdown .dropdown-item {
    color: #fff;
    transition: var(--transition);
}

.luxury-dropdown .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

/* Only add padding for non-hero pages */
.main-content:not(.no-padding) {
    padding-top: 80px;
}

/* Buttons */
.btn-luxury {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

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

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--secondary-color);
}

.btn-outline-luxury {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-luxury:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section - Elegant Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5f0 0%, #f0e9e0 50%, #e8ddd2 100%);
    margin-top: 0;
    padding-top: 76px;
    border-top: none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.03) 0%, transparent 40%);
}

.hero-text-column {
    position: relative;
    z-index: 2;
    padding-left: 5rem;
    padding-right: 2rem;
}

.hero-image-column {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
    padding-right: 5rem;
}

.hero-content {
    max-width: 600px;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #2c2c2c;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    color: #b8860b;
    font-size: 0.9em;
    margin-bottom: 0.2rem;
}

.title-line-2 {
    display: block;
    color: #1a1a1a;
    font-size: 1em;
}

.hero-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, #b8860b, #cd853f);
    flex: 1;
}

.divider-ornament {
    margin: 0 1rem;
    font-size: 1.2rem;
    color: #b8860b;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-hero-secondary {
    background: transparent;
    color: #2c2c2c;
    padding: 1rem 2rem;
    border: 2px solid #b8860b;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out 1s both;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b8860b;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.stat-divider {
    color: #b8860b;
    font-weight: 300;
    opacity: 0.7;
}

.hero-image-container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

.hero-jewelry-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jewelry-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: none;
    background: transparent;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.main-jewelry {
    width: 300px;
    height: 300px;
    z-index: 5;
    animation: mainJewelryFloat 6s ease-in-out infinite;
}

.accent-jewelry-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    z-index: 3;
    animation: accentFloat1 8s ease-in-out infinite;
}

.accent-jewelry-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    z-index: 3;
    animation: accentFloat2 7s ease-in-out infinite;
}

.accent-jewelry-3 {
    width: 90px;
    height: 90px;
    top: 25%;
    left: 15%;
    z-index: 2;
    animation: accentFloat3 9s ease-in-out infinite;
}

.jewelry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    border-radius: 20px;
}

.main-image {
    filter: brightness(1.1) contrast(1.05);
}

.accent-image {
    filter: brightness(0.95) contrast(1.1);
    opacity: 0.8;
}

.jewelry-item:hover .jewelry-image {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}

.jewelry-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-jewelry:hover .jewelry-glow {
    opacity: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    color: #b8860b;
    opacity: 0.8;
}

.element-1 {
    top: 20%;
    left: 20%;
    animation: floatSlow 8s ease-in-out infinite;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation: floatMedium 6s ease-in-out infinite;
}

.element-3 {
    bottom: 30%;
    left: 10%;
    animation: floatFast 4s ease-in-out infinite;
}

.element-4 {
    top: 40%;
    right: 25%;
    animation: floatSlow 7s ease-in-out infinite reverse;
}

.element-5 {
    bottom: 50%;
    right: 40%;
    animation: floatMedium 5s ease-in-out infinite reverse;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #5a5a5a;
    z-index: 10;
    animation: fadeInUp 0.6s ease-out 1.2s both;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #b8860b;
    animation: bounce 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes mainJewelryFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes accentFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes accentFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

@keyframes accentFloat3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

@keyframes floatMedium {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(90deg); opacity: 1; }
}

@keyframes floatFast {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-15px) rotate(45deg); opacity: 1; }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================
   LUXURY DESIGN SYSTEM
========================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Luxury Variables */
:root {
    --gold-primary: #d4af37;
    --gold-secondary: #b8860b;
    --gold-light: #f7e7ce;
    --black-primary: #1a1a1a;
    --black-secondary: #2c2c2c;
    --white-primary: #ffffff;
    --white-secondary: #f8f8f8;
    --gray-light: #e8e8e8;
    --gray-medium: #999999;
    --luxury-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --luxury-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
    --transition-luxury: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Luxury Typography */
.elegant-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.golden-gradient {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
}

/* Glass Morphism */
.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* Sparkles Animation */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 20%; left: 80%; animation-delay: 0.5s; }
.sparkle-3 { top: 60%; left: 15%; animation-delay: 1s; }
.sparkle-4 { top: 80%; left: 70%; animation-delay: 1.5s; }
.sparkle-5 { top: 40%; left: 90%; animation-delay: 2s; }
.sparkle-6 { top: 30%; left: 50%; animation-delay: 2.5s; }
.sparkle-7 { top: 70%; left: 30%; animation-delay: 3s; }
.sparkle-8 { top: 90%; left: 60%; animation-delay: 3.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Parallax Background */
.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layer-1 {
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

/* Luxury Buttons */
.luxury-btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--white-primary);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-luxury);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.luxury-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--white-primary);
}

.luxury-btn-secondary {
    position: relative;
    background: transparent;
    color: var(--black-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-luxury);
}

.luxury-btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--white-primary);
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-btn-primary:hover .btn-glow {
    opacity: 1;
}

.btn-border-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.luxury-btn-secondary:hover .btn-border-glow {
    opacity: 1;
}

/* Luxury Frames */
.luxury-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: var(--transition-luxury);
}

.luxury-frame:hover {
    box-shadow: var(--luxury-shadow-hover);
    transform: translateY(-5px);
}

.luxury-frame-border {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.luxury-frame:hover .luxury-frame-border {
    opacity: 1;
}

/* Jewelry Reflections */
.jewelry-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jewelry-frame:hover .jewelry-reflection {
    opacity: 1;
}

.jewelry-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Luxury Overlays */
.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(44, 44, 44, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-luxury);
}

.luxury-overlay:hover {
    opacity: 1;
}

.overlay-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.overlay-sparkles .sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.overlay-sparkles .sparkle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.overlay-sparkles .sparkle:nth-child(2) { top: 30%; right: 25%; animation-delay: 0.5s; }
.overlay-sparkles .sparkle:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 1s; }
.overlay-sparkles .sparkle:nth-child(4) { bottom: 25%; right: 20%; animation-delay: 1.5s; }

/* Section Titles */
.luxury-title {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

/* Luxury Dividers */
.luxury-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.divider-gem {
    margin: 0 1rem;
    color: var(--gold-primary);
    font-size: 1.2rem;
    animation: rotate 10s linear infinite;
}

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

.rotating-gem {
    animation: rotate 10s linear infinite;
}

/* Hero Responsive Design */
@media (max-width: 768px) {
    .hero-text-column, .hero-image-column {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-image-container {
        height: 60vh;
        min-height: 400px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-jewelry-showcase {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    /* Mobile: Show only main jewelry centered */
    .main-jewelry {
        width: 300px;
        height: 300px;
        position: relative;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .jewelry-frame.luxury-frame {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    }
    
    .jewelry-image.main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 20px;
        filter: brightness(1.1) contrast(1.05);
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    /* Mobile: Hide accent jewelry to prevent overlap */
    .accent-jewelry-1, .accent-jewelry-2, .accent-jewelry-3 {
        display: none;
    }
    
    .floating-element {
        font-size: 1.2rem;
    }
    
    /* Simplify floating elements for mobile */
    .element-2, .element-3, .element-4, .element-5 {
        display: none;
    }
    
    .luxury-title {
        font-size: 2rem;
    }
}

/* Newsletter Luxury Styles */
.luxury-newsletter {
    position: relative;
    background: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
    color: var(--white-primary);
    overflow: hidden;
}

.newsletter-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.newsletter-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.newsletter-sparkles .sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: sparkle 4s ease-in-out infinite;
}

.newsletter-sparkles .sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.newsletter-sparkles .sparkle:nth-child(2) { top: 30%; right: 20%; animation-delay: 1s; }
.newsletter-sparkles .sparkle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 2s; }
.newsletter-sparkles .sparkle:nth-child(4) { bottom: 20%; right: 30%; animation-delay: 3s; }
.newsletter-sparkles .sparkle:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }

.newsletter-icon {
    position: relative;
    display: inline-block;
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.newsletter-icon .icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.newsletter-divider .divider-line {
    width: 60px;
    height: 2px;
    margin: 0 1rem;
}

.newsletter-divider .divider-gem {
    color: var(--gold-primary);
    font-size: 1.5rem;
    animation: rotate 8s linear infinite;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.luxury-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.form-container {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 2rem;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.luxury-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-luxury);
}

.luxury-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.15);
}

.luxury-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.luxury-input:focus + .input-glow {
    opacity: 1;
}

.newsletter-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.form-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.form-sparkles .sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.form-sparkles .sparkle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.form-sparkles .sparkle:nth-child(2) { top: 30%; right: 25%; animation-delay: 1s; }
.form-sparkles .sparkle:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 2s; }

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.benefit-item i {
    color: var(--gold-primary);
    font-size: 1rem;
}

/* Product Cards Luxury Styles */
.luxury-products {
    position: relative;
    background: linear-gradient(135deg, var(--white-secondary), var(--gray-light));
}

.products-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

.luxury-product-card {
    position: relative;
    background: var(--white-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: var(--transition-luxury);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.luxury-product-image {
    position: relative;
    overflow: hidden;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-luxury);
}

.luxury-product-card:hover .product-img {
    transform: scale(1.05);
}

.image-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-product-card:hover .image-reflection {
    opacity: 1;
}

.luxury-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-primary);
    color: var(--white-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.luxury-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 44, 44, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-luxury);
}

.luxury-product-card:hover .luxury-product-overlay {
    opacity: 1;
}

.luxury-product-overlay .overlay-content {
    text-align: center;
    z-index: 2;
}

.luxury-product-overlay .btn {
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.luxury-product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black-primary);
}

.product-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.product-divider .divider-line {
    width: 30px;
    height: 1px;
    margin: 0 0.5rem;
}

.product-divider .divider-gem {
    color: var(--gold-primary);
    font-size: 1rem;
}

.luxury-price {
    font-size: 1.2rem;
    font-weight: 700;
}

.current-price {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

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

/* Category Cards Luxury Styles */
.luxury-categories {
    position: relative;
    background: var(--white-primary);
}

.luxury-category-card {
    position: relative;
    background: var(--white-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    transition: var(--transition-luxury);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.luxury-category-card:hover {
    box-shadow: var(--luxury-shadow-hover);
    transform: translateY(-10px);
}

.luxury-category-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-luxury);
}

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

.category-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.category-divider .divider-line {
    width: 30px;
    height: 1px;
    margin: 0 0.5rem;
}

.category-divider .divider-gem {
    color: var(--gold-primary);
    font-size: 1rem;
}

.btn-luxury-outline {
    background: transparent;
    color: var(--white-primary);
    border: 2px solid var(--gold-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-luxury);
    position: relative;
    overflow: hidden;
}

.btn-luxury-outline:hover {
    background: var(--gold-primary);
    color: var(--white-primary);
    transform: translateY(-2px);
}

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

.btn-luxury-outline:hover .btn-shine {
    left: 100%;
}

.luxury-mobile-title {
    display: none;
    padding: 1rem;
    text-align: center;
    background: var(--white-primary);
}

.mobile-accent-line {
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
    margin: 0.5rem auto;
}

/* Features Luxury Styles */
.luxury-features {
    position: relative;
    background: var(--white-primary);
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    animation: float 35s ease-in-out infinite;
}

.luxury-feature-card {
    position: relative;
    background: var(--white-primary);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--luxury-shadow);
    transition: var(--transition-luxury);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.luxury-feature-card:hover {
    box-shadow: var(--luxury-shadow-hover);
    transform: translateY(-10px);
}

.luxury-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.icon-background {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-primary);
    margin: 0 auto;
    transition: var(--transition-luxury);
}

.luxury-feature-card:hover .icon-background {
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 3s ease-in-out infinite;
}

.luxury-feature-card:hover .icon-glow {
    opacity: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black-primary);
}

.feature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.feature-divider .divider-line {
    width: 30px;
    height: 1px;
    margin: 0 0.5rem;
}

.feature-divider .divider-gem {
    color: var(--gold-primary);
    font-size: 1rem;
}

.feature-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Scroll Indicator Luxury Styles */
.luxury-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-primary);
    z-index: 10;
}

.luxury-arrow {
    position: relative;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.luxury-arrow i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.scroll-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

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

/* Luxury Stats */
.luxury-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.luxury-stats .stat-item {
    text-align: center;
}

.luxury-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.luxury-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.luxury-stats .stat-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .luxury-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .luxury-stats .stat-divider {
        display: none;
    }
    
    .luxury-category-image {
        height: 150px;
    }
    
    .luxury-mobile-title {
        display: block;
    }
    
    .luxury-overlay {
        opacity: 1;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(44, 44, 44, 0.8));
    }
}

@media (max-width: 576px) {
    .sparkles-container {
        display: none;
    }
    
    .newsletter-sparkles {
        display: none;
    }
    
    .luxury-title {
        font-size: 1.8rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .luxury-feature-card {
        padding: 1.5rem;
    }
    
    .icon-background {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-image-container {
        height: 50vh;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image-column {
        padding: 1rem !important;
        min-height: 350px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-image-container {
        height: 350px !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    .hero-jewelry-showcase {
        width: 250px !important;
        height: 250px !important;
        position: relative !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .main-jewelry {
        width: 250px !important;
        height: 250px !important;
        position: relative !important;
        display: block !important;
        margin: 0 auto !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
    }
    
    .jewelry-frame.luxury-frame {
        width: 100% !important;
        height: 100% !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
        display: block !important;
    }
    
    .jewelry-image.main-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 15px !important;
        filter: brightness(1.1) contrast(1.05) !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
    
    /* Keep accent jewelry hidden on small screens */
    .accent-jewelry-1, .accent-jewelry-2, .accent-jewelry-3 {
        display: none !important;
    }
    
    /* Hide all floating elements on small screens */
    .floating-elements, .hero-image-backdrop {
        display: none !important;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="diamond" cx="50%" cy="30%" r="40%"><stop offset="0%" style="stop-color:%23fff;stop-opacity:0.8"/><stop offset="50%" style="stop-color:%23d4af37;stop-opacity:0.6"/><stop offset="100%" style="stop-color:%23c9a961;stop-opacity:0.3"/></radialGradient></defs><polygon points="50,10 65,35 50,70 35,35" fill="url(%23diamond)" opacity="0.3"/><polygon points="50,10 60,25 50,40 40,25" fill="%23fff" opacity="0.2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: jewelryFloat 8s ease-in-out infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.hero-image img {
    max-width: 320px !important;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(212, 175, 55, 0.2);
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.jewelry-showcase {
    max-width: 220px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.jewelry-float {
    animation: jewelryFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.3));
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.jewelry-float:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(212, 175, 55, 0.4)) brightness(1.05);
}

@keyframes jewelryFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Cards */
.categories-section {
    padding: 80px 0;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile-friendly category titles */
.category-mobile-title {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.category-mobile-title h4 {
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile category display */
@media (max-width: 768px) {
    .category-overlay {
        display: none;
    }
    
    .category-mobile-title {
        display: block;
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    margin-bottom: 2rem;
}

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

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05) rotate(2deg);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-info h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-price {
    margin-bottom: 1rem;
}

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

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-material {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Product Detail */
.product-gallery {
    position: relative;
}

.main-image {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.image-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.main-image:hover .image-zoom-overlay {
    opacity: 1;
}

.image-zoom-overlay i {
    font-size: 2rem;
    color: var(--white);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
}

.thumbnail-image:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.product-details {
    padding: 2rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-input {
    width: 150px;
}

.quantity-input input {
    text-align: center;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cart */
.cart-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

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

.quantity {
    font-weight: 600;
    padding: 0 15px;
}

.item-price, .item-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cart-summary {
    margin-top: 2rem;
}

.summary-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-line.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.empty-cart {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color), #2c2c2c);
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 15px 25px;
}

/* Footer */
.luxury-footer {
    background: linear-gradient(135deg, var(--secondary-color), #2c2c2c);
    color: var(--white);
}

.footer-heading {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-divider {
    border-color: #444;
    margin: 2rem 0 1.5rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
}

.text-luxury {
    color: var(--primary-color);
}

/* Mobile Footer Improvements */
@media (max-width: 768px) {
    .luxury-footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
}

/* Admin Panel */
.admin-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-nav .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.admin-nav .nav-link:hover,
.admin-nav .nav-link.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.admin-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: var(--text-light);
    margin: 0;
}

.admin-section {
    margin-top: 2rem;
}

.admin-product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

/* Auth Forms */
.auth-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    max-width: 500px;
    margin: 2rem auto;
}

/* Filters */
.filters-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    position: sticky;
    top: 100px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Checkout */
.checkout-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.address-option {
    margin-bottom: 1rem;
}

.address-card {
    background: var(--bg-light);
    border-radius: 5px;
    padding: 1rem;
    margin-left: 1.5rem;
}

.order-summary {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.order-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.order-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Profile */
.profile-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.profile-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-nav .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.profile-nav .nav-link:hover,
.profile-nav .nav-link.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.profile-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.orders-section,
.addresses-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.order-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-details {
    margin-bottom: 1rem;
}

.order-items {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.address-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.address-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.address-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-actions .btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.address-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.address-actions .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.address-actions .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.address-actions .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.address-details h6 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.address-details p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.address-details .badge {
    margin-top: 0.5rem;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    width: 300px;
}

.flash-messages .alert {
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Checkout Page Styles */
.checkout-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.checkout-section:hover {
    box-shadow: var(--shadow-hover);
}

.section-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
}

.section-header h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.section-header h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.section-header .section-subtitle {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.address-selection {
    display: grid;
    gap: 1rem;
}

.address-option-card {
    position: relative;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    transition: var(--transition);
    overflow: hidden;
}

.address-option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.address-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.address-option-card input[type="radio"]:checked + .address-label {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.address-option-card input[type="radio"]:checked + .address-label .address-check {
    opacity: 1;
    transform: scale(1);
}

.address-label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    transition: var(--transition);
    width: 100%;
}

.address-content {
    flex: 1;
}

.address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.address-header strong {
    font-size: 1.1rem;
}

.default-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.address-line {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.address-country {
    color: var(--text-light);
    font-weight: 500;
}

.address-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option-card {
    position: relative;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    transition: var(--transition);
    overflow: hidden;
}

.payment-option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.payment-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.payment-option-card input[type="radio"]:checked + .payment-label {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.payment-option-card input[type="radio"]:checked + .payment-label .payment-check {
    opacity: 1;
    transform: scale(1);
}

.payment-label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    transition: var(--transition);
    width: 100%;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.payment-content {
    flex: 1;
}

.payment-content h6 {
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.payment-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.payment-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.checkout-actions {
    text-align: center;
    margin-top: 2rem;
}

.order-summary-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.summary-header {
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.summary-header h4 {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 1.3rem;
}

.summary-header h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.summary-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 1rem;
}

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

.item-details {
    flex: 1;
}

.item-details h6 {
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.item-quantity {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-calculations {
    border-top: 2px solid var(--bg-light);
    padding-top: 1rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.summary-line:last-child {
    margin-bottom: 0;
}

.promo-line {
    color: var(--text-light);
    font-size: 0.9rem;
}

.promo-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.promo-link:hover {
    text-decoration: underline;
}

.summary-divider {
    height: 2px;
    background: var(--bg-light);
    margin: 1rem 0;
}

.total-line {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.trust-indicators {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.trust-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.trust-item:last-child {
    margin-bottom: 0;
}

.trust-item i {
    color: green;
    margin-right: 0.8rem;
    width: 16px;
    text-align: center;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.empty-state h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-progress {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .progress-line {
        width: 40px;
        margin: 0 0.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
    }
    
    .order-summary-card {
        position: static;
        margin-top: 2rem;
    }
    
    .address-label, .payment-label {
        padding: 1rem;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .cart-summary {
        margin-top: 1rem;
    }
    
    .filters-card {
        position: static;
        margin-bottom: 1rem;
    }
    
    .order-summary {
        position: static;
        margin-top: 2rem;
    }
    
    .profile-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .admin-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .luxury-brand {
        font-size: 1.5rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .category-image {
        height: 200px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-main-image {
        height: 300px;
    }
}

/* Loading and Animation Classes */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-luxury {
    color: var(--primary-color);
}

.bg-luxury {
    background: var(--primary-color);
}

.shadow-luxury {
    box-shadow: var(--shadow);
}

.rounded-luxury {
    border-radius: var(--border-radius);
}

.transition-luxury {
    transition: var(--transition);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

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

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

/* ================================================ */
/* COMPREHENSIVE MOBILE RESPONSIVENESS             */
/* ================================================ */

/* Enhanced Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Reset container padding for mobile */
    .container-fluid {
        padding: 0 1rem;
    }
    
    /* Navigation adjustments */
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    /* Mobile Navigation Menu */
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95) !important;
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 1000;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        color: white !important;
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 500;
        transition: all 0.3s ease;
        display: block !important;
        text-align: left;
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(212, 175, 55, 0.2);
        border-radius: 8px;
        transform: translateX(5px);
        color: var(--primary-color) !important;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: none !important;
        box-shadow: none !important;
        margin-left: 1rem;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.5rem 1rem !important;
    }
    
    .dropdown-item:hover {
        background: rgba(212, 175, 55, 0.2) !important;
        color: white !important;
    }
    

    
    /* Hero section mobile optimization */
    .hero-section {
        padding: 3rem 0 2rem;
        min-height: 70vh;
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        min-height: 300px;
    }
    
    .hero-image img {
        max-width: 280px !important;
        border-radius: 15px;
    }
    
    .jewelry-showcase {
        max-width: 280px;
    }
    
    /* Mobile hero image improvements - Complete reset for mobile */
    .hero-image-column {
        padding: 2rem 1rem !important;
        min-height: 400px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-image-container {
        height: 400px !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    .hero-jewelry-showcase {
        width: 280px !important;
        height: 280px !important;
        position: relative !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .main-jewelry {
        width: 280px !important;
        height: 280px !important;
        position: relative !important;
        display: block !important;
        margin: 0 auto !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
    }
    
    .jewelry-frame.luxury-frame {
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
        display: block !important;
    }
    
    .jewelry-image.main-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 20px !important;
        filter: brightness(1.1) contrast(1.05) !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }
    
    /* Hide non-essential elements on mobile */
    .accent-jewelry-1, .accent-jewelry-2, .accent-jewelry-3 {
        display: none !important;
    }
    
    .floating-elements, .hero-image-backdrop {
        display: none !important;
    }
    
    /* Product cards mobile enhancement */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        overflow: hidden;
    }
    
    .product-image {
        height: 280px !important;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem;
    }
    
    .product-price {
        font-size: 1.6rem !important;
        margin-bottom: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-add-cart, .btn-wishlist {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    /* Category cards mobile */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        height: auto;
        min-height: 250px;
    }
    
    .category-image {
        height: 200px !important;
    }
    
    .category-overlay h3 {
        font-size: 1.8rem !important;
    }
    
    /* Form improvements mobile */
    .form-control {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
        border: 2px solid #e9ecef;
    }
    
    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
        min-height: 48px;
    }
    
    .btn-luxury {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Cart mobile optimization */
    .cart-items {
        padding: 0;
    }
    
    .cart-item {
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .cart-item-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 1rem;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .cart-item-info {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .cart-item-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .cart-item-price {
        font-size: 1.4rem;
        color: var(--primary-color);
    }
    
    .cart-item-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .quantity-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .quantity-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
        background: white;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .quantity-btn:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .quantity-input {
        width: 60px;
        text-align: center;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 0.5rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    /* Checkout mobile */
    .checkout-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .order-summary-card {
        position: static;
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .address-label, .payment-label {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .address-content, .payment-content {
        font-size: 1rem;
    }
    
    /* Profile mobile */
    .profile-sidebar {
        position: static;
        margin-bottom: 2rem;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .profile-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .profile-nav .nav-link {
        text-align: center;
        padding: 0.75rem;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    /* Admin mobile */
    .admin-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .admin-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .admin-nav .nav-link {
        padding: 0.75rem;
        text-align: center;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    /* Table mobile */
    .table-responsive {
        border-radius: 15px;
        overflow: hidden;
    }
    
    .table {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .table th {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 1rem 0.5rem;
        font-weight: 600;
    }
    
    .table td {
        padding: 0.75rem 0.5rem;
        border-color: #f8f9fa;
        vertical-align: middle;
    }
    
    /* Modal mobile */
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-content {
        border-radius: 15px;
        border: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .modal-header {
        padding: 1.5rem;
        border-bottom: 2px solid #f8f9fa;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1.5rem;
        border-top: 2px solid #f8f9fa;
    }
    
    /* Auth forms mobile */
    .auth-container {
        padding: 1rem 0;
    }
    
    .auth-card-3d {
        margin: 1rem;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .auth-title {
        font-size: 2rem !important;
    }
    
    .auth-subtitle {
        font-size: 1rem !important;
    }
    
    .form-floating-3d {
        margin-bottom: 1.5rem;
    }
    
    .form-control-3d {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .btn-luxury-3d, .btn-google-3d {
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        min-height: 50px;
    }
    
    /* Filters mobile */
    .filters-card {
        position: static;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .filter-group {
        margin-bottom: 1.5rem;
    }
    
    .filter-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    /* Stats section mobile */
    .stats-section {
        padding: 3rem 0;
    }
    
    .stat-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-info h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    /* Newsletter mobile */
    .newsletter-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .newsletter-input {
        padding: 1rem;
        border-radius: 10px;
        border: 2px solid #e9ecef;
        font-size: 1rem;
    }
    
    .newsletter-btn {
        padding: 1rem;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .footer-link {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
        color: white;
    }
}

/* Small mobile devices (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .luxury-brand {
        font-size: 1.3rem !important;
    }
    
    .product-title {
        font-size: 1.2rem !important;
    }
    
    .product-price {
        font-size: 1.4rem !important;
    }
    
    .auth-card-3d {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }
    
    .auth-title {
        font-size: 1.8rem !important;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .modal-dialog {
        margin: 0.25rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .profile-nav {
        grid-template-columns: 1fr;
    }
    
    .admin-nav {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        min-height: 250px;
        margin-top: 1.5rem;
    }
    
    .jewelry-showcase {
        max-width: 240px;
    }
    
    .hero-image img {
        max-width: 240px !important;
        border-radius: 12px;
    }
}

/* Landscape orientation optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .auth-container {
        padding: 1rem 0;
        min-height: 100vh;
    }
    
    .navbar-collapse {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .card {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active, .nav-link:active {
        transform: scale(0.95);
    }
    
    .product-card:active, .category-card:active {
        transform: scale(0.98);
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .form-control {
        min-height: 48px;
    }
    
    /* Remove hover effects for touch devices */
    .product-card:hover,
    .category-card:hover,
    .btn:hover,
    .nav-link:hover {
        transform: none;
    }
}
