/* Jewelry Theme - Home Page Styles */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--jewelry-black, #0a0a0a);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(184,134,11,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section .hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.hero-section .hero-text .gold-text {
    color: var(--jewelry-gold-light, #d4af37);
}

.hero-section .hero-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--jewelry-text-light, #998e7a);
    margin-bottom: 32px;
}

.hero-section .hero-image {
    position: relative;
    z-index: 1;
}

.hero-section .hero-image img {
    max-height: 500px;
    filter: drop-shadow(0 20px 60px rgba(184,134,11,0.2));
}

/* Category Cards */
.jewelry-category-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
    transition: all 0.4s ease;
    background: var(--jewelry-dark, #1a1a1a);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.jewelry-category-card:hover {
    border-color: var(--jewelry-gold, #b8860b);
    background: var(--jewelry-dark-2, #222);
    transform: translateY(-4px);
    text-decoration: none;
}

.jewelry-category-card img {
    height: 100px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.jewelry-category-card:hover img {
    filter: brightness(1);
}

.jewelry-category-card h6 {
    font-family: 'Playfair Display', serif;
    color: var(--jewelry-white, #ffffff);
    font-weight: 600;
    margin-bottom: 4px;
}

.jewelry-category-card span {
    font-size: 12px;
    color: var(--jewelry-text-light, #998e7a);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Luxury Banner */
.luxury-banner {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--jewelry-dark, #1a1a1a) 0%, var(--jewelry-black, #0a0a0a) 100%);
    border: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
}

.luxury-banner .content {
    padding: 48px;
}

.luxury-banner .content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--jewelry-white, #ffffff);
    font-family: 'Playfair Display', serif;
}

.luxury-banner .content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--jewelry-text-light, #998e7a);
}

.luxury-banner .content .gold-highlight {
    color: var(--jewelry-gold-light, #d4af37);
}

/* Featured Products Grid */
.featured-grid .product-card {
    margin-bottom: 24px;
}

/* Deal of the Day */
.deal-section {
    background: var(--jewelry-dark, #1a1a1a);
    border: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
    padding: 40px;
}

.deal-section .deal-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,134,11,0.1);
    border: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--jewelry-gold-light, #d4af37);
    letter-spacing: 1px;
}

.deal-section .deal-timer .time-unit {
    font-weight: 700;
    font-size: 18px;
}

/* Deal Countdown Boxes */
.countdown-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 10px 12px;
    background: var(--jewelry-black, #0a0a0a);
    border: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
    color: var(--jewelry-gold-light, #d4af37);
    font-size: 22px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.countdown-box small {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--jewelry-text-light, #998e7a);
    margin-top: 2px;
}

/* Testimonial / Review Card */
.testimonial-card {
    background: var(--jewelry-dark, #1a1a1a);
    border: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--jewelry-gold, #b8860b);
}

.testimonial-card .quote {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--jewelry-text, #e0d5c0);
    line-height: 1.6;
}

.testimonial-card .author {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--jewelry-gold-light, #d4af37);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 16px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--jewelry-dark, #1a1a1a);
    border-top: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
    border-bottom: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
    padding: 60px 0;
    text-align: center;
}

.newsletter-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--jewelry-white, #ffffff);
    font-size: 28px;
    margin-bottom: 8px;
}

.newsletter-section p {
    color: var(--jewelry-text-light, #998e7a);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    margin-bottom: 24px;
}

.newsletter-section .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    border: 1px solid var(--jewelry-border, rgba(184,134,11,0.15));
}

.newsletter-section .newsletter-form input {
    flex: 1;
    background: var(--jewelry-black, #0a0a0a);
    border: none;
    padding: 14px 20px;
    color: var(--jewelry-text, #e0d5c0);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    outline: none;
}

.newsletter-section .newsletter-form input::placeholder {
    color: var(--jewelry-text-light, #998e7a);
}

.newsletter-section .newsletter-form button {
    background: var(--jewelry-gold, #b8860b);
    border: none;
    color: var(--jewelry-black, #0a0a0a);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
}

.newsletter-section .newsletter-form button:hover {
    background: var(--jewelry-gold-light, #d4af37);
}

/* Brand / Designer Logos */
.designer-logo {
    padding: 20px;
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(1) brightness(1.5);
}

.designer-logo:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

.designer-logo img {
    max-height: 50px;
    max-width: 120px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }
    .hero-section .hero-text h1 {
        font-size: 32px;
    }
    .hero-section .hero-text p {
        font-size: 16px;
    }
    .hero-section .hero-image img {
        max-height: 300px;
    }
    .luxury-banner .content {
        padding: 24px;
    }
    .luxury-banner .content h2 {
        font-size: 24px;
    }
    .deal-section {
        padding: 24px;
    }
    .newsletter-section {
        padding: 40px 0;
    }
    .newsletter-section h3 {
        font-size: 22px;
    }
}

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

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

.animate-fade-in-up-delay-1 {
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-up-delay-2 {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

/* Gold shimmer effect */
.gold-shimmer {
    background: linear-gradient(90deg, 
        var(--jewelry-gold, #b8860b) 0%, 
        var(--jewelry-gold-light, #d4af37) 50%, 
        var(--jewelry-gold, #b8860b) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

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