/* ========================================================
   JEWELRY PAGE STYLES (GOLD SHIMMER THEME)
   ======================================================== */

.jewelry-page {
    /* Rich, dark sepia/charcoal gradient for luxury contrast */
    background: linear-gradient(135deg, #0f0a05 0%, #1c140d 50%, #0a0603 100%);
    color: #fdfdfd;
    font-family: 'Inter', 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.jewelry-hero {
    padding-bottom: 20px;
}

/* For headlines, override to a serif font to establish luxury feel */
.jewelry-page h1,
.jewelry-page h2,
.jewelry-page h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

/* Gold Shimmer Gradient */
.jewelry-gold {
    background: linear-gradient(90deg, #D4AF37, #FFF5C3, #D4AF37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 3s infinite linear;
}

.jewelry-gold-text {
    background: linear-gradient(90deg, #D4AF37, #FFF5C3, #D4AF37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 3s infinite linear;
}

@keyframes goldShimmer {
    to {
        background-position: 200% center;
    }
}

.hero-video-wrapper {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-image-board {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Base structural overrides for the grid reused from about */
.diff-card {
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.diff-card:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.12);
    border-color: #D4AF37;
}

.data-vis-section {
    padding: 80px 20px;
}

.jewelry-kpis {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.jewelry-kpis .stat {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px;
    border-radius: 16px;
    min-width: 200px;
    backdrop-filter: blur(5px);
}

.jewelry-kpis .counter {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.cross-link-banner {
    padding: 40px 20px 80px;
}

.mt-5 {
    margin-top: 50px;
}