/* home.css - Premium Jewelry Store Home Page Styles */

/* ===== BANNER CAROUSEL - COMPLETE RESPONSIVE FIX ===== */
.banner-carousel {
    position: relative;
    height: 80vh; /* Use viewport height for responsiveness */
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    width: 100%;
}

.banner-slider {
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    visibility: hidden;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.banner-slide .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.banner-content {
    max-width: 600px;
    color: white;
    padding: 0;
    animation: fadeInUp 1s ease-out;
    width: 100%;
}

.banner-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #D4AF37;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
}

/* FIXED: Premium Button Styles for Banner */
.banner-content .premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px; /* Reduced from 16px 40px */
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin: 5px 0;
    width: auto; /* Important - removes fixed width */
    min-width: 180px; /* Minimum width instead of fixed width */
    max-width: 100%; /* Allows shrinking on mobile */
    white-space: nowrap; /* Prevents text wrapping */
}

.banner-content .premium-btn i {
    font-size: 1rem;
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.banner-prev,
.banner-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.banner-prev:hover,
.banner-next:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: scale(1.1);
}

.banner-dots {
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #D4AF37;
    transform: scale(1.3);
}

/* Fallback Hero Banner */
.hero-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: white;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
}

.hero-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons .premium-btn {
    min-width: 180px;
    padding: 14px 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
}

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

/* Premium Button Styles (Global) */
.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin: 10px 0;
    width: auto;
    min-width: 160px;
}

.premium-btn::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: left 0.7s ease;
}

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

.premium-btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #996515 100%);
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.premium-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #B8860B 0%, #996515 50%, #7C5A00 100%);
}

.premium-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.premium-btn-secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.premium-btn-outline {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    position: relative;
}

.premium-btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-btn-outline:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.premium-btn-outline:hover::after {
    opacity: 1;
}

.premium-btn-lg {
    padding: 18px 50px;
    font-size: 1.2rem;
}

.premium-btn i {
    font-size: 1.2rem;
}

/* Categories */
.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.category-section {
    margin-bottom: 40px;
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #D4AF37;
    display: inline-block;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.category-view-all {
    text-align: center;
    margin-top: 20px;
}

/* Premium Product Cards */
.premium-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.premium-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.premium-product-card:hover::before {
    opacity: 1;
}

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

.premium-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.premium-product-card:hover .premium-image-wrapper img {
    transform: scale(1.08);
}

.premium-product-info {
    padding: 25px;
    position: relative;
    z-index: 1;
    background: white;
}

.premium-product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    height: 60px;
    overflow: hidden;
    line-height: 1.4;
}

.premium-product-price {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.premium-product-actions {
    display: flex;
    gap: 12px;
}

.premium-btn-view {
    flex: 1;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-btn-view:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.premium-btn-cart {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-btn-cart:hover {
    background: linear-gradient(135deg, #B8860B, #996515);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Featured Products Section */
.featured-products-container {
    margin-bottom: 50px;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.featured-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.featured-product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.product-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
    height: 60px;
    overflow: hidden;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    height: 70px;
    overflow: hidden;
}

.product-price {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #333;
    background: rgba(212, 175, 55, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.spec i {
    color: #D4AF37;
    font-size: 0.9rem;
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.product-buttons .premium-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.8rem;
    min-width: 120px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.2));
}

.feature-icon i {
    font-size: 2rem;
    color: #D4AF37;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ddd;
    font-size: 1.2rem;
}

.testimonial-rating i.filled {
    color: #FFD700;
}

.testimonial-text {
    font-style: italic;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.7;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
}

/* Premium Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1632868679785-63a3a80c5ed6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Text Center Utility */
.text-center {
    text-align: center !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B8860B);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-products i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.no-products p {
    color: #666;
    max-width: 400px;
    margin: 0 auto 30px;
}

/* Custom Design Section */
.custom-design-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 134, 11, 0.05));
}

.custom-design-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-design-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.custom-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.custom-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.custom-features i {
    color: #D4AF37;
}

.custom-design-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.custom-design-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Instagram Section */
.instagram-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 4rem 0;
}

.instagram-embed-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.instagram-feed-embed {
    padding: 2rem;
    min-height: 500px;
    background: #fafafa;
    position: relative;
}

.instagram-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== PREMIUM MARQUEE SECTION ===== */
.premium-marquee-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;
}

.premium-marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.marquee-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.marquee-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.marquee-title i {
    font-size: 1.8rem;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

.marquee-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

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

.marquee-container {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    margin-bottom: 30px;
}

.marquee-track {
    display: flex;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
}

.marquee-track-1 {
    animation: marqueeLeft 40s linear infinite;
}

.marquee-track-2 {
    animation: marqueeRight 45s linear infinite;
}

.marquee-track-3 {
    animation: marqueeLeft 30s linear infinite;
}

.marquee-slide {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 100%;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.marquee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.7s ease;
}

.marquee-item:hover::before {
    left: 100%;
}

.marquee-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.marquee-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marquee-icon i {
    color: white;
    font-size: 1.1rem;
}

.marquee-item span {
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marquee-divider {
    padding: 0 20px;
    color: #D4AF37;
    opacity: 0.6;
    font-size: 0.8rem;
}

/* Gold-themed marquee items */
.marquee-item.gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.15));
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.marquee-divider.gold {
    color: #FFD700;
}

.marquee-tag {
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

/* Marquee animations */
@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

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

/* Gradient overlays */
.marquee-gradient-left,
.marquee-gradient-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.marquee-gradient-left {
    left: 0;
    background: linear-gradient(90deg, #0a0a0a 0%, transparent 100%);
}

.marquee-gradient-right {
    right: 0;
    background: linear-gradient(270deg, #0a0a0a 0%, transparent 100%);
}

/* Marquee Controls */
.marquee-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.marquee-control-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.marquee-control-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.marquee-control-btn i {
    font-size: 1rem;
}

/* Paused state */
.marquee-container.paused .marquee-track-1,
.marquee-container.paused .marquee-track-2,
.marquee-container.paused .marquee-track-3 {
    animation-play-state: paused;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktops (1440px and above) */
@media (min-width: 1440px) {
    .featured-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .banner-carousel {
        height: 700px;
    }
    
    .banner-content {
        max-width: 700px;
    }
    
    .banner-content h1 {
        font-size: 4rem;
    }
    
    .banner-content .premium-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
        min-width: 200px;
    }
    
    .marquee-item {
        padding: 18px 30px;
    }
    
    .marquee-item span {
        font-size: 1.1rem;
    }
}

/* Desktops (1200px to 1439px) */
@media (max-width: 1200px) {
    .featured-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .product-title {
        font-size: 1.25rem;
        height: 55px;
    }
    
    .product-description {
        height: 65px;
    }
    
    .banner-carousel {
        height: 600px;
    }
    
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .banner-subtitle {
        font-size: 1.3rem;
    }
}

/* Small Desktops and Tablets (992px to 1199px) */
@media (max-width: 992px) {
    .nav-links {
        display: none !important;
    }
    
    .menu-toggle {
        display: block !important;
    }
    
    .user-name {
        display: none;
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-details {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
        height: 50px;
    }
    
    .product-description {
        font-size: 0.85rem;
        height: 60px;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .product-buttons .premium-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .banner-carousel {
        height: 500px;
        min-height: 450px;
    }
    
    .banner-content {
        max-width: 550px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .banner-content .premium-btn {
        padding: 12px 25px;
        min-width: 160px;
        font-size: 0.95rem;
    }
    
    .hero-banner {
        padding: 80px 0;
        min-height: 450px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .hero-buttons .premium-btn {
        min-width: 160px;
        padding: 12px 25px;
    }
    
    .custom-design-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .marquee-title {
        font-size: 2.2rem;
    }
    
    .marquee-item {
        padding: 12px 20px;
    }
    
    .marquee-item span {
        font-size: 0.95rem;
    }
    
    .marquee-gradient-left,
    .marquee-gradient-right {
        width: 150px;
    }
}

/* Tablets and Large Phones (768px to 991px) */
@media (max-width: 768px) {
    .banner-carousel {
        height: 450px;
        min-height: 400px;
    }
    
    .banner-content {
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .banner-content .premium-btn {
        padding: 10px 20px;
        min-width: 140px;
        font-size: 0.9rem;
    }
    
    .banner-nav {
        bottom: 20px;
        gap: 10px;
    }
    
    .banner-prev,
    .banner-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .banner-dots {
        gap: 8px;
    }
    
    .banner-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-banner {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .premium-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .category-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .product-buttons .premium-btn {
        width: 100%;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .product-specs {
        gap: 8px;
    }
    
    .spec {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-wrapper {
        height: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-marquee-section {
        padding: 60px 0 40px;
    }
    
    .marquee-title {
        font-size: 1.8rem;
        gap: 15px;
    }
    
    .marquee-title i {
        font-size: 1.4rem;
    }
    
    .marquee-subtitle {
        font-size: 1rem;
    }
    
    .marquee-item {
        padding: 10px 18px;
        gap: 10px;
    }
    
    .marquee-icon {
        width: 32px;
        height: 32px;
    }
    
    .marquee-icon i {
        font-size: 1rem;
    }
    
    .marquee-item span {
        font-size: 0.9rem;
    }
    
    .marquee-divider {
        padding: 0 15px;
    }
    
    .marquee-track-1 {
        animation-duration: 35s;
    }
    
    .marquee-track-2 {
        animation-duration: 40s;
    }
    
    .marquee-track-3 {
        animation-duration: 25s;
    }
    
    .marquee-gradient-left,
    .marquee-gradient-right {
        width: 100px;
    }
}

/* Small Phones (576px to 767px) */
@media (max-width: 576px) {
    .brand-name {
        font-size: 1.8rem !important;
    }
    
    .brand-tagline {
        font-size: 0.7rem !important;
    }
    
    .login-btn span {
        display: none;
    }
    
    .login-btn i {
        margin: 0 !important;
    }
    
    .mobile-menu-content {
        width: 100% !important;
    }
    
    .banner-carousel {
        height: 400px;
        min-height: 350px;
    }
    
    .banner-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
    
    .banner-content h1 {
        font-size: 1.6rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .banner-content .premium-btn {
        padding: 8px 18px;
        min-width: 130px;
        font-size: 0.85rem;
        gap: 5px;
    }
    
    .banner-content .premium-btn i {
        font-size: 0.85rem;
    }
    
    .banner-nav {
        bottom: 15px;
    }
    
    .banner-prev,
    .banner-next {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        border-width: 1px;
    }
    
    .banner-dots {
        gap: 6px;
    }
    
    .banner-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-banner {
        padding: 50px 0;
        min-height: 350px;
    }
    
    .hero-banner h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .hero-buttons .premium-btn {
        max-width: 220px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .premium-product-actions {
        flex-direction: column;
    }
    
    .premium-product-info {
        padding: 20px;
    }
    
    .product-details {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.3rem;
        height: 45px;
    }
    
    .product-price {
        font-size: 1.4rem;
    }
    
    .featured-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
        left: 12px;
        top: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .newsletter-content h2 {
        font-size: 2.2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-marquee-section {
        padding: 50px 0 30px;
    }
    
    .marquee-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .marquee-title i {
        font-size: 1.2rem;
    }
    
    .marquee-header {
        margin-bottom: 30px;
    }
    
    .marquee-container {
        padding: 20px 0;
    }
    
    .marquee-item {
        padding: 8px 15px;
        gap: 8px;
    }
    
    .marquee-icon {
        width: 28px;
        height: 28px;
    }
    
    .marquee-icon i {
        font-size: 0.9rem;
    }
    
    .marquee-item span {
        font-size: 0.8rem;
    }
    
    .marquee-divider {
        padding: 0 10px;
        font-size: 0.7rem;
    }
    
    .marquee-controls {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .marquee-control-btn {
        width: 200px;
        justify-content: center;
    }
    
    .marquee-track-1 {
        animation-duration: 30s;
    }
    
    .marquee-track-2 {
        animation-duration: 35s;
    }
    
    .marquee-track-3 {
        animation-duration: 20s;
    }
    
    .marquee-gradient-left,
    .marquee-gradient-right {
        width: 60px;
    }
}

/* Extra Small Phones (below 576px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }
    
    .banner-carousel {
        height: 350px;
        min-height: 300px;
    }
    
    .banner-content h1 {
        font-size: 1.4rem;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .banner-content .premium-btn {
        min-width: 120px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .banner-prev,
    .banner-next {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .hero-banner h1 {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-buttons .premium-btn {
        max-width: 200px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .premium-image-wrapper {
        height: 200px;
    }
    
    .product-specs {
        justify-content: center;
    }
    
    .spec {
        font-size: 0.75rem;
    }
}

/* Extra Small Phones (below 375px) */
@media (max-width: 375px) {
    .banner-carousel {
        height: 300px;
        min-height: 280px;
    }
    
    .banner-content h1 {
        font-size: 1.2rem;
    }
    
    .banner-subtitle {
        font-size: 0.85rem;
    }
    
    .banner-content .premium-btn {
        min-width: 110px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .banner-prev,
    .banner-next {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .hero-banner h1 {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .marquee-item {
        padding: 6px 12px;
    }
    
    .marquee-item span {
        font-size: 0.75rem;
    }
    
    .marquee-divider {
        padding: 0 8px;
    }
    
    .marquee-control-btn {
        width: 100%;
        max-width: 200px;
    }
}
/* order */

/* ===== ORDER CONFIRMATION PAGE STYLES ===== */

/* Confirmation Header */
.confirmation-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 134, 11, 0.9)),
                url('https://images.unsplash.com/photo-1594576722512-582d5577dc56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: clamp(80px, 12vw, 120px) 0;
    text-align: center;
    color: white;
    margin-bottom: clamp(40px, 6vw, 60px);
    position: relative;
    overflow: hidden;
}

.confirmation-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.confirmation-icon {
    font-size: clamp(4rem, 8vw, 6rem);
    color: white;
    margin-bottom: 25px;
    animation: bounceIn 1s ease;
}

.confirmation-icon i {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.confirmation-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.confirmation-header p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

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

/* Confirmation Section */
.confirmation-section {
    padding-bottom: clamp(60px, 8vw, 100px);
}

.confirmation-card {
    background: white;
    border-radius: 16px;
    padding: clamp(30px, 4vw, 50px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.confirmation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D4AF37, #B8860B, #996515);
}

/* Confirmation Details */
.confirmation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
}

.detail-item {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.detail-label i {
    font-size: 1.3rem;
    color: #D4AF37;
}

.detail-value {
    font-size: 1.1rem;
    color: #333;
}

.detail-value strong {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #D4AF37;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Confirmation Message */
.confirmation-message {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(184, 134, 11, 0.05));
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.confirmation-message h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.confirmation-message h3 i {
    color: #D4AF37;
}

.confirmation-message p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.confirmation-message p:last-child {
    margin-bottom: 0;
}

/* Confirmation Actions */
.confirmation-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    border-color: #D4AF37;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8860B, #996515);
    border-color: #B8860B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.btn-outline:hover {
    background: #f8f9fa;
    color: #1a1a1a;
    border-color: #666;
    transform: translateY(-3px);
}

/* Confirmation Help */
.confirmation-help {
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.confirmation-help h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.confirmation-help h4 i {
    color: #D4AF37;
}

.confirmation-help p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 600px;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1.05rem;
}

.contact-info i {
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Order Summary Section */
.order-summary-section {
    margin-bottom: 60px;
}

.order-summary-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.summary-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.summary-header {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-header h3 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: white;
}

.order-status {
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.summary-items {
    padding: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.item-info h4 {
    margin: 0 0 5px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

.item-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.item-quantity {
    color: #666;
    font-size: 1rem;
}

.item-total {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #D4AF37;
    font-size: 1.1rem;
}

.summary-totals {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #666;
}

.total-row:last-child {
    margin-bottom: 0;
}

.total-row.grand-total {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.free {
    color: #28a745;
    font-weight: 600;
}

/* Shipping Information */
.shipping-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.info-card h3 i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.info-card p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-note {
    color: #D4AF37 !important;
    font-weight: 500;
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1440px) {
    .confirmation-details {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .confirmation-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .confirmation-actions .btn {
        min-width: 180px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .confirmation-header {
        padding: 60px 0;
    }
    
    .confirmation-card {
        padding: 35px;
    }
    
    .confirmation-details {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn {
        width: 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: center;
    }
    
    .item-info,
    .item-quantity,
    .item-total {
        width: 100%;
    }
    
    .item-quantity::before {
        content: 'Quantity: ';
        color: #666;
    }
    
    .item-total::before {
        content: 'Total: ';
        color: #666;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .confirmation-header h1 {
        font-size: 2rem;
    }
    
    .confirmation-header p {
        font-size: 1.2rem;
    }
    
    .confirmation-icon {
        font-size: 3.5rem;
    }
    
    .order-summary-section h2,
    .shipping-info h2 {
        font-size: 1.8rem;
    }
    
    .summary-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .summary-items {
        padding: 20px;
    }
    
    .summary-item {
        text-align: left;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .confirmation-header {
        padding: 50px 20px;
    }
    
    .confirmation-card {
        padding: 25px;
    }
    
    .confirmation-details {
        gap: 15px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: center;
    }
    
    .detail-label,
    .detail-value {
        width: 100%;
        justify-content: center;
    }
    
    .confirmation-message {
        padding: 20px;
    }
    
    .confirmation-help {
        text-align: center;
    }
    
    .confirmation-help h4,
    .confirmation-help p {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .order-summary-section h2,
    .shipping-info h2 {
        font-size: 1.6rem;
    }
    
    .summary-header {
        padding: 20px;
    }
    
    .summary-header h3 {
        font-size: 1.2rem;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .confirmation-header h1 {
        font-size: 1.8rem;
    }
    
    .confirmation-header p {
        font-size: 1.1rem;
    }
    
    .confirmation-icon {
        font-size: 3rem;
    }
    
    .detail-label {
        flex-direction: column;
        gap: 8px;
    }
    
    .detail-value strong {
        font-size: 1.2rem;
    }
    
    .confirmation-actions .btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .total-row.grand-total {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .confirmation-header {
        background: white !important;
        color: #000 !important;
        padding: 40px 0 !important;
    }
    
    .confirmation-icon {
        color: #28a745 !important;
    }
    
    .confirmation-header h1 {
        color: #000 !important;
        text-shadow: none !important;
    }
    
    .confirmation-header p {
        color: #666 !important;
    }
    
    .confirmation-card::before {
        background: #000 !important;
    }
    
    .confirmation-actions,
    .confirmation-help {
        display: none !important;
    }
    
    .summary-box,
    .info-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
    
    .info-grid {
        grid-template-columns: 1fr !important;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
}

/* Toast Notifications (if needed) */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
    max-width: 350px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast.info {
    border-left-color: #17a2b8;
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #28a745;
}

.toast.error i {
    color: #dc3545;
}

.toast.info i {
    color: #17a2b8;
}

/* ===== ORDERS PAGE STYLES ===== */

/* Orders Header */
.orders-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: clamp(60px, 8vw, 80px) 0;
    text-align: center;
    color: white;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.orders-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.orders-header p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #D4AF37;
    opacity: 0.9;
}

/* Orders Section */
.orders-section {
    padding-bottom: clamp(60px, 8vw, 100px);
}

/* Orders Filters */
.orders-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 25px;
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background: #e9ecef;
    color: #333;
    border-color: #dee2e6;
}

.filter-tab.active {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    border-color: #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.order-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.order-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.order-date {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.order-status {
    flex-shrink: 0;
}

.status-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.processing {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.status-badge.shipped {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.status-badge.delivered {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Order Details */
.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.detail-value:last-child {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.order-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid;
}

.btn-outline {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.btn-outline:hover {
    background: #f8f9fa;
    color: #1a1a1a;
    border-color: #666;
    transform: translateY(-2px);
}

.btn-outline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-outline:disabled:hover {
    background: transparent;
    color: #666;
    border-color: #ddd;
    transform: none;
}

/* Empty Orders */
.orders-empty {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 50px;
}

.orders-empty i {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 25px;
    opacity: 0.5;
}

.orders-empty h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.orders-empty p {
    color: #666;
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.orders-empty .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Order Stats */
.order-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.stat-icon.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.stat-icon.processing {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.stat-icon.shipped {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.stat-icon.delivered {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stat-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin: 0 0 5px 0;
    color: #1a1a1a;
}

.stat-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
    max-width: 350px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast.info {
    border-left-color: #17a2b8;
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #28a745;
}

.toast.error i {
    color: #dc3545;
}

.toast.info i {
    color: #17a2b8;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1440px) {
    .order-details {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .order-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .order-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .orders-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .search-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-status {
        align-self: flex-start;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .order-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .orders-empty {
        padding: 60px 20px;
    }
    
    .orders-empty i {
        font-size: 3rem;
    }
    
    .orders-empty h3 {
        font-size: 1.8rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .orders-header {
        padding: 40px 20px;
    }
    
    .orders-header h1 {
        font-size: 2rem;
    }
    
    .orders-header p {
        font-size: 1.2rem;
    }
    
    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .order-card {
        padding: 25px;
    }
    
    .order-info h3 {
        font-size: 1.2rem;
    }
    
    .order-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detail-item {
        text-align: center;
    }
    
    .orders-empty {
        padding: 50px 20px;
    }
    
    .orders-empty i {
        font-size: 2.5rem;
    }
    
    .orders-empty h3 {
        font-size: 1.5rem;
    }
    
    .orders-empty .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .order-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 40px auto 0;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .orders-header {
        padding: 30px 15px;
    }
    
    .orders-header h1 {
        font-size: 1.8rem;
    }
    
    .orders-header p {
        font-size: 1.1rem;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .search-box input {
        padding: 10px 15px 10px 40px;
        font-size: 0.9rem;
    }
    
    .order-card {
        padding: 20px;
    }
    
    .status-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .order-actions .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .orders-empty {
        padding: 40px 15px;
    }
    
    .orders-empty i {
        font-size: 2rem;
    }
    
    .orders-empty h3 {
        font-size: 1.3rem;
    }
    
    .orders-empty p {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-info h3 {
        font-size: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .filter-tabs {
        gap: 5px;
    }
    
    .filter-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .order-header {
        text-align: center;
    }
    
    .order-status {
        align-self: center;
    }
    
    .order-actions {
        gap: 10px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .filter-tab:hover {
        background: #f8f9fa;
        color: #666;
        border-color: #e9ecef;
    }
    
    .filter-tab.active:hover {
        background: linear-gradient(135deg, #D4AF37, #B8860B);
        color: white;
    }
    
    .order-card:hover {
        transform: none;
    }
    
    .btn-outline:hover {
        background: transparent;
        color: #666;
        border-color: #ddd;
        transform: none;
    }
    
    .btn-outline:active {
        transform: scale(0.95);
    }
    
    .stat-card:hover {
        transform: none;
    }
}

/* ===== ORDER DETAILS PAGE STYLES ===== */

/* Order Details Header */
.order-details-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    padding: clamp(40px, 6vw, 60px) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.back-link:hover {
    color: #D4AF37;
    transform: translateX(-5px);
}

.back-link i {
    font-size: 0.9rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.header-info h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.order-date {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 8px 25px;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.processing {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.status-badge.shipped {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.status-badge.delivered {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

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

/* Order Details Section */
.order-details-section {
    padding: clamp(40px, 6vw, 60px) 0;
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* Order Items */
.order-items h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin: 0 0 25px 0;
    color: #1a1a1a;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    gap: 25px;
    align-items: center;
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-card:hover .item-image img {
    transform: scale(1.05);
}

.item-info {
    flex: 1;
}

.item-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.item-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.item-category, .item-metal {
    background: rgba(212, 175, 55, 0.1);
    color: #666;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.item-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1a1a1a;
}

.unit-price {
    color: #D4AF37;
    font-size: 1.2rem;
}

.multiply, .equals {
    color: #999;
    font-size: 1.2rem;
}

.quantity {
    background: rgba(212, 175, 55, 0.1);
    color: #1a1a1a;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 1rem;
}

.total-price {
    color: #D4AF37;
    font-size: 1.3rem;
}

.item-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Order Summary */
.order-summary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.summary-card, .shipping-card, .timeline-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.summary-card h3, .shipping-card h3, .timeline-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin: 0 0 25px 0;
    color: #1a1a1a;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #666;
}

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

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.payment-method {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.payment-method h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.payment-info i {
    font-size: 1.5rem;
    color: #D4AF37;
}

.payment-info span {
    font-weight: 600;
    color: #1a1a1a;
}

.payment-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-size: 0.95rem;
    margin: 0;
}

.payment-status i {
    font-size: 1.1rem;
}

/* Shipping Information */
.shipping-address, .contact-info, .order-notes {
    margin-bottom: 25px;
}

.shipping-address:last-child, 
.contact-info:last-child, 
.order-notes:last-child {
    margin-bottom: 0;
}

.shipping-address h4, 
.contact-info h4, 
.order-notes h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.shipping-address p, 
.contact-info p, 
.order-notes p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.shipping-address p:last-child,
.contact-info p:last-child,
.order-notes p:last-child {
    margin-bottom: 0;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #D4AF37;
    width: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

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

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e9ecef;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e9ecef;
}

.timeline-item.pending .timeline-marker {
    background: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}

.timeline-item.processing .timeline-marker {
    background: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.timeline-item.shipped .timeline-marker {
    background: #17a2b8;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.3);
}

.timeline-item.delivered .timeline-marker {
    background: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

.timeline-item.cancelled .timeline-marker {
    background: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
}

.timeline-item.current .timeline-marker {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
    }
}

.timeline-content h4 {
    margin: 0 0 5px 0;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #666;
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.timeline-notes, .timeline-changed-by {
    font-size: 0.9rem !important;
    color: #888 !important;
    font-style: italic;
}

.no-history {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Help Section */
.help-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.help-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(184, 134, 11, 0.04));
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.help-card i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.help-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.help-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.help-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-actions .btn {
    min-width: 160px;
    justify-content: center;
}

/* Print Styles */
@media print {
    .order-details-header {
        background: white !important;
        padding: 20px 0 !important;
    }
    
    .back-link,
    .header-status .btn,
    .item-actions,
    .help-section {
        display: none !important;
    }
    
    .order-details-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .order-details-section {
        padding: 20px 0 !important;
    }
    
    .item-card,
    .summary-card,
    .shipping-card,
    .timeline-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    .item-card:hover {
        transform: none !important;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1440px) {
    .order-details-grid {
        grid-template-columns: 1fr 450px;
    }
    
    .item-card {
        padding: 30px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .order-details-grid {
        grid-template-columns: 1fr 350px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .order-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .item-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
    
    .item-image {
        width: 150px;
        height: 150px;
        align-self: center;
    }
    
    .item-info {
        width: 100%;
    }
    
    .item-actions {
        width: 100%;
        justify-content: center;
    }
    
    .help-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .help-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .order-details-header {
        padding: 30px 0;
    }
    
    .header-info h1 {
        font-size: 1.6rem;
    }
    
    .item-card {
        padding: 20px;
    }
    
    .item-info h3 {
        font-size: 1.2rem;
    }
    
    .item-price {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .unit-price,
    .total-price {
        font-size: 1.1rem;
    }
    
    .summary-card,
    .shipping-card,
    .timeline-card {
        padding: 25px;
    }
    
    .summary-card h3,
    .shipping-card h3,
    .timeline-card h3 {
        font-size: 1.2rem;
    }
    
    .help-card {
        padding: 30px;
    }
    
    .help-card h3 {
        font-size: 1.4rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .order-details-header {
        padding: 25px 0;
    }
    
    .header-info h1 {
        font-size: 1.4rem;
    }
    
    .order-date {
        font-size: 0.9rem;
    }
    
    .status-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .item-image {
        width: 120px;
        height: 120px;
    }
    
    .item-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .item-category, .item-metal {
        padding: 4px 12px;
        font-size: 0.8rem;
    }
    
    .item-actions {
        flex-direction: column;
    }
    
    .item-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .timeline {
        padding-left: 25px;
    }
    
    .timeline::before {
        left: 7px;
    }
    
    .timeline-marker {
        left: -25px;
        width: 16px;
        height: 16px;
    }
    
    .help-card {
        padding: 25px;
    }
    
    .help-card i {
        font-size: 2.5rem;
    }
    
    .help-card h3 {
        font-size: 1.2rem;
    }
    
    .help-card p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-info h3 {
        font-size: 1.1rem;
    }
    
    .summary-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .shipping-address p,
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .help-card {
        padding: 20px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .item-card:hover {
        transform: none;
    }
    
    .item-card:hover .item-image img {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Header */
.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1607083206968-13611e3d76db?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: clamp(60px, 8vw, 80px) 0;
    text-align: center;
    color: white;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.contact-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-header p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #D4AF37;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding-bottom: clamp(60px, 8vw, 100px);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: clamp(30px, 4vw, 50px);
}

/* Contact Form Section */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: clamp(30px, 4vw, 50px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-card h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0 0 15px 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card h2 i {
    color: #D4AF37;
    font-size: 1.8rem;
}

.contact-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Alerts */
.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.alert i {
    font-size: 1.3rem;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group label::after {
    content: ' *';
    color: #dc3545;
    opacity: 0.5;
}

.form-group label[for="phone"]::after {
    content: '';
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-submit {
    margin-top: 40px;
    text-align: right;
}

.form-submit .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #D4AF37;
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    color: #1a1a1a;
}

.info-details {
    margin-bottom: 25px;
    text-align: left;
}

.info-details p {
    margin: 0 0 12px 0;
    color: #555;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-details p:last-child {
    margin-bottom: 0;
}

.info-details i {
    color: #D4AF37;
    width: 20px;
    font-size: 1.1rem;
}

.info-details strong {
    color: #1a1a1a;
}

.info-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: #E1306C;
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.pinterest {
    background: #E60023;
}

/* Map Section */
.map-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.map-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 134, 11, 0.05));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    position: relative;
}

.map-marker {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: bounce 2s infinite;
}

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

.map-placeholder p {
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    max-width: 300px;
    line-height: 1.6;
}

/* Business Hours */
.business-hours {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.business-hours h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.day {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.day:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.day span:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

.day span:last-child {
    color: #666;
    font-weight: 500;
}

.day.holiday {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.day.holiday span {
    color: #dc3545;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
    max-width: 350px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast.info {
    border-left-color: #17a2b8;
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #28a745;
}

.toast.error i {
    color: #dc3545;
}

.toast.info i {
    color: #17a2b8;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1440px) {
    .contact-layout {
        grid-template-columns: 1fr 450px;
    }
    
    .contact-card {
        padding: 50px;
    }
    
    .info-card {
        padding: 40px 35px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1fr 350px;
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-card {
        padding: 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-section {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-card {
        flex: 1;
        min-width: 300px;
    }
    
    .map-section,
    .business-hours {
        margin-top: 60px;
        padding-top: 60px;
    }
    
    .map-section h2,
    .business-hours h2 {
        font-size: 1.8rem;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .contact-header {
        padding: 40px 20px;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.2rem;
    }
    
    .contact-card h2 {
        font-size: 1.5rem;
    }
    
    .contact-card p {
        font-size: 1rem;
    }
    
    .alert {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .info-card {
        min-width: 100%;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .map-section,
    .business-hours {
        margin-top: 50px;
        padding-top: 50px;
    }
    
    .map-section h2,
    .business-hours h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-marker {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .contact-header {
        padding: 30px 15px;
    }
    
    .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .contact-card h2 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-card h2 i {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .form-submit {
        text-align: center;
    }
    
    .form-submit .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .info-card {
        padding: 30px 25px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-details p {
        font-size: 0.9rem;
    }
    
    .info-details i {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .map-section,
    .business-hours {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .map-section h2,
    .business-hours h2 {
        font-size: 1.4rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .day {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-card h2 {
        font-size: 1.2rem;
    }
    
    .contact-card p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .map-placeholder p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .info-card:hover {
        transform: none;
    }
    
    .social-link:hover {
        transform: none;
    }
    
    .day:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

/* ===== FOOTER STYLES ===== */

/* Footer Main */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    padding: clamp(60px, 8vw, 80px) 0 0 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B8860B, #996515);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Columns */
.footer-column {
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #D4AF37;
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B8860B);
    border-radius: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
    max-width: 300px;
}

.footer-column h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #B8860B);
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #D4AF37;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.contact-info span {
    font-size: 0.95rem;
    flex: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #D4AF37;
    color: #1a1a1a;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-bottom-links a:hover {
    color: #D4AF37;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-info li {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-info li {
        text-align: left;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links a::after {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .contact-info li {
        font-size: 0.85rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .social-links a:hover {
        transform: none;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-links a:hover::before {
        opacity: 0;
    }
    
    .footer-bottom-links a:hover::after {
        width: 0;
    }
    
    .social-links a:active {
        background: #D4AF37;
        color: #1a1a1a;
        transform: scale(0.95);
    }
}