/* Sujit Kumar Jewels - Premium CSS */

:root {
    --primary-font: 'Cinzel', serif;
    --sub-font: 'Montserrat', sans-serif;
    --text-color: #ffffff;
    --bg-dark-overlay: rgba(10, 8, 7, 0.5); /* Ambient luxurious dark overlay */
    --vignette-grad: radial-gradient(circle, transparent 15%, rgba(0, 0, 0, 0.8) 100%);
    --gold-gradient: linear-gradient(135deg, #FFF3A7 0%, #D1A73D 45%, #FFFDF0 65%, #B88E2F 100%);
}

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

body {
    background-color: #080605;
    color: var(--text-color);
    font-family: var(--sub-font);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    user-select: none;
}

/* Scroll Snap Container */
.scroll-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Sections Base Styling */
.section {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- SECTION 1: HERO --- */

/* Background Container with Parallax Effect */
.bg-container {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.1s ease-out;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark-overlay);
    background-image: var(--vignette-grad);
}

/* Header Styling */
.main-header {
    width: 100%;
    padding: 2.5rem 3rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mini-logo {
    color: #e5c158;
    filter: drop-shadow(0 0 6px rgba(229,193,88,0.4));
}

.brand-name {
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Center Content */
.hero-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 2;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    transform: translateY(15px);
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    transition: transform 0.1s ease-out;
}

.giant-logo {
    width: 100%;
    max-width: 850px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.75));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover .giant-logo {
    transform: scale(1.03);
}

/* Lens Sparkle Animation */
.sparkle-lens {
    animation: sparklePulse 3s ease-in-out infinite;
    transform-origin: 295px 105px;
}

/* Brand Typography */
.brand-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.brand-title {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.25;
    text-align: center;
    width: 120%; /* Prevent wrapping */
}

.brand-subtitle {
    font-family: var(--primary-font);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.4rem;
    width: 100%;
}

.brand-subtitle .line {
    display: inline-block;
    width: 40px;
    height: 1.2px;
    background: var(--gold-gradient);
    opacity: 0.85;
}

/* Scroll Down Indicator Styling */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    cursor: pointer;
    z-index: 10;
    animation: bounceIndicator 2.5s infinite;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: #e5c158;
}

.scroll-indicator-community { bottom: 2rem; }
.scroll-indicator-services { bottom: 2rem; color: rgba(255, 255, 255, 0.4); }
.scroll-indicator-products { bottom: 2rem; color: rgba(255, 255, 255, 0.4); }
.scroll-indicator-silver { bottom: 2rem; color: rgba(255, 255, 255, 0.4); }

/* --- SECTION 2: COMMUNITY --- */

.satin-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.satin-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.satin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 10, 9, 0.45); /* Soft premium warm vignette overlay */
    background-image: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.7) 100%);
}

.community-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 8rem;
    z-index: 2;
    height: 100%;
    gap: 6rem;
}

/* Left side signature bow logo */
.community-logo-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.section-community.active-view .community-logo-side {
    opacity: 1;
    transform: translateX(0);
}

.community-logo {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.7));
}

.community-logo-text {
    margin-top: 1.5rem;
}

.community-brand-title {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.community-brand-subtitle {
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.community-brand-subtitle .line {
    display: inline-block;
    width: 25px;
    height: 1px;
    background: var(--gold-gradient);
}

/* Right side QR Code & invite */
.community-qr-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1.2;
    max-width: 460px;
    text-align: left;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.section-community.active-view .community-qr-side {
    opacity: 1;
    transform: translateX(0);
}

.scan-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    background: rgba(229, 193, 88, 0.15);
    padding: 4px 14px;
    border-radius: 30px;
    border: 1px solid rgba(229, 193, 88, 0.25);
    backdrop-filter: blur(4px);
}

.qr-brand-title {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 1.2rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.bal-gopal {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 400;
    color: #fce49d;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    margin-top: 0.1rem;
    letter-spacing: 0.05em;
}

.whatsapp-invite {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #3fe27b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    letter-spacing: 0.04em;
}

.wa-icon {
    filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.4));
}

/* Premium QR Container Card */
.qr-code-card {
    position: relative;
    margin-top: 1.8rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 350px;
    border: 1.5px solid rgba(229, 193, 88, 0.35);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.qr-code-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 55px rgba(229, 193, 88, 0.35);
}

/* Soft gold glow behind QR card */
.qr-glow-effect {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(229, 193, 88, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    z-index: 2;
}

/* Community Rates Card Column */
.community-rates-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1.5;
    max-width: 820px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
    z-index: 5;
}

.section-community.active-view .community-rates-side {
    opacity: 1;
    transform: translateX(0);
}

.rates-card {
    position: relative;
    padding: 2.2rem 2rem;
    background: rgba(18, 14, 12, 0.65);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1.5px solid rgba(229, 193, 88, 0.18);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.rates-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 65px rgba(229, 193, 88, 0.15);
    border-color: rgba(229, 193, 88, 0.35);
}

.rates-glow-effect {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 50% 10%, rgba(229, 193, 88, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.rates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.rates-card-title {
    font-family: var(--primary-font);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2ec4b6;
    letter-spacing: 0.1em;
    background: rgba(46, 196, 182, 0.12);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(46, 196, 182, 0.25);
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: #2ec4b6;
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.8s infinite ease-in-out;
}

@keyframes livePulse {
    0% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 6px 2px rgba(46, 196, 182, 0.7); }
    100% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

.rates-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 193, 88, 0.25), transparent);
    margin: 1.2rem 0;
    z-index: 2;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
    z-index: 2;
}

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

@media (max-width: 480px) {
    .rates-grid {
        grid-template-columns: 1fr;
    }
}

.rate-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(229, 193, 88, 0.15);
    border-radius: 20px;
    padding: 1.8rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rate-card-item:hover {
    background: rgba(229, 193, 88, 0.05);
    border-color: rgba(229, 193, 88, 0.38);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.rate-card-price {
    font-family: var(--primary-font);
    font-size: 1.9rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.6rem;
}

.rate-card-label {
    font-family: var(--sub-font);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rate-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.rate-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 193, 88, 0.1);
}

.rate-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rate-metal-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.rate-metal-name small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-left: 0.2rem;
}

.rate-trend {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.rate-trend, .rate-price-sub {
    display: none;
}

.rate-trend.up {
    color: #2ec4b6;
    background: rgba(46, 196, 182, 0.08);
}

.rate-trend.down {
    color: #ff334b;
    background: rgba(255, 51, 75, 0.08);
}

.trend-arrow {
    font-size: 0.65rem;
    margin-right: 0.1rem;
}

.rate-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.rate-price-main {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gold-24k .rate-price-main, .gold-22k .rate-price-main {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.silver-rate .rate-price-main {
    color: #e2e8f0;
}

.rate-price-main small, .rate-price-sub small {
    font-family: var(--sub-font);
    font-size: 0.72rem;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.rate-price-sub {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.rates-footer {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    z-index: 2;
}

.update-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- SECTION 3: OUR SERVICES --- */

.section-services {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(229, 193, 88, 0.3) transparent;
}

.section-services::-webkit-scrollbar {
    width: 6px;
}

.section-services::-webkit-scrollbar-thumb {
    background: rgba(229, 193, 88, 0.3);
    border-radius: 10px;
}

.services-bg-container {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.services-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    opacity: 0.85;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 9, 8, 0.7); /* Deep dark overlay for readability */
    background-image: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.85) 100%);
}

.services-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 6rem;
    z-index: 2;
    min-height: 100%;
    width: 100%;
}

.services-title-head {
    font-family: var(--primary-font);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0,0,0,0.65);
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    width: 100%;
    max-width: 900px;
}

/* Glassmorphic alternating cards */
.service-card {
    display: flex;
    align-items: center;
    background: rgba(18, 14, 12, 0.5);
    border: 1px solid rgba(229, 193, 88, 0.13);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
    width: 100%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
}

.section-services.active-view .service-card {
    opacity: 1;
    transform: translateY(0);
}

.section-services.active-view .service-card.alt-left:nth-child(1) { transition-delay: 0.15s; }
.section-services.active-view .service-card.alt-right:nth-child(2) { transition-delay: 0.3s; }
.section-services.active-view .service-card.alt-left:nth-child(3) { transition-delay: 0.45s; }
.section-services.active-view .service-card.alt-right:nth-child(4) { transition-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 193, 88, 0.35);
    box-shadow: 0 20px 45px rgba(229, 193, 88, 0.15);
}

.service-img-wrapper {
    width: 42%;
    min-width: 250px;
    overflow: hidden;
    height: 200px;
    position: relative;
    border-right: 1px solid rgba(229, 193, 88, 0.1);
}

.service-card.alt-right .service-img-wrapper {
    border-right: none;
    border-left: 1px solid rgba(229, 193, 88, 0.1);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-info {
    padding: 2.2rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.service-name {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.service-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}

/* Showroom disclaimer footer banner */
.services-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3.5rem;
    padding: 1.2rem 2.5rem;
    background: rgba(229, 193, 88, 0.08);
    border: 1px solid rgba(229, 193, 88, 0.22);
    border-radius: 12px;
    color: #ebd494;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    max-width: 600px;
    width: 90%;
    animation: pulseBorder 3s ease-in-out infinite;
    z-index: 5;
    margin-bottom: 6rem;
}

.showroom-icon {
    color: #f7df94;
    filter: drop-shadow(0 0 6px rgba(229,193,88,0.4));
}

/* --- SECTION 4: OUR GOLD PRODUCT --- */

.section-products {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(229, 193, 88, 0.3) transparent;
}

.section-products::-webkit-scrollbar {
    width: 6px;
}

.section-products::-webkit-scrollbar-thumb {
    background: rgba(229, 193, 88, 0.3);
    border-radius: 10px;
}

.products-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 6rem;
    z-index: 2;
    min-height: 100%;
    width: 100%;
}

.products-title-head {
    font-family: var(--primary-font);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0,0,0,0.65);
    text-align: center;
    margin-bottom: 3.5rem;
}

/* 4-column responsive grid layout */
/* 6-column responsive grid layout */
.products-grid,
.silver-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
    width: 100%;
    max-width: 1240px;
    margin-bottom: 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    padding: 1rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    position: relative;
}

.section-products.active-view .product-card,
.section-silver.active-view .product-card {
    opacity: 1;
    transform: translateY(0);
}

.section-products.active-view .product-card:nth-child(1),
.section-silver.active-view .product-card:nth-child(1) { transition-delay: 0.05s; }
.section-products.active-view .product-card:nth-child(2),
.section-silver.active-view .product-card:nth-child(2) { transition-delay: 0.1s; }
.section-products.active-view .product-card:nth-child(3),
.section-silver.active-view .product-card:nth-child(3) { transition-delay: 0.15s; }
.section-products.active-view .product-card:nth-child(4),
.section-silver.active-view .product-card:nth-child(4) { transition-delay: 0.2s; }
.section-products.active-view .product-card:nth-child(5),
.section-silver.active-view .product-card:nth-child(5) { transition-delay: 0.25s; }
.section-products.active-view .product-card:nth-child(6),
.section-silver.active-view .product-card:nth-child(6) { transition-delay: 0.3s; }
.section-products.active-view .product-card:nth-child(7),
.section-silver.active-view .product-card:nth-child(7) { transition-delay: 0.35s; }
.section-products.active-view .product-card:nth-child(8),
.section-silver.active-view .product-card:nth-child(8) { transition-delay: 0.4s; }
.section-products.active-view .product-card:nth-child(9),
.section-silver.active-view .product-card:nth-child(9) { transition-delay: 0.45s; }
.section-products.active-view .product-card:nth-child(10),
.section-silver.active-view .product-card:nth-child(10) { transition-delay: 0.5s; }
.section-products.active-view .product-card:nth-child(11),
.section-silver.active-view .product-card:nth-child(11) { transition-delay: 0.55s; }
.section-products.active-view .product-card:nth-child(12),
.section-silver.active-view .product-card:nth-child(12) { transition-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(229, 193, 88, 0.22);
    border-color: rgba(229, 193, 88, 0.3);
}

.product-img-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(184, 142, 47, 0.35);
    background: radial-gradient(circle, #ffffff 60%, #f2efe9 100%);
    position: relative;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Elegant inner frame matching screenshot double-border style */
.product-img-wrapper::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px dashed rgba(184, 142, 47, 0.22);
    pointer-events: none;
    transition: all 0.5s ease;
}

.product-card:hover .product-img-wrapper {
    border-color: rgba(184, 142, 47, 0.65);
}

.product-card:hover .product-img-wrapper::after {
    border-style: solid;
    border-color: rgba(184, 142, 47, 0.4);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

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

.product-title {
    font-family: var(--primary-font);
    font-size: 0.82rem;
    font-weight: 600;
    color: #333333;
    margin: 0.8rem 0 0.25rem 0;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.product-explore {
    display: none; /* explore link replaced with thumbnails and e-commerce labels */
}

/* --- SECTION 5: OUR SILVER PRODUCT --- */

.section-silver {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(229, 193, 88, 0.3) transparent;
}

.section-silver::-webkit-scrollbar {
    width: 6px;
}

.section-silver::-webkit-scrollbar-thumb {
    background: rgba(229, 193, 88, 0.3);
    border-radius: 10px;
}

.silver-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.silver-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 20, 0.45); /* Elegant cool overlay for silver satin */
    background-image: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.72) 100%);
}

.silver-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 6rem;
    z-index: 2;
    min-height: 100%;
    width: 100%;
}

.silver-title-head {
    font-family: var(--primary-font);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0,0,0,0.65);
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Grid styles consolidated in products-grid definition */



.silver-filtered {
    filter: grayscale(1) brightness(1.22) contrast(1.18) saturate(0.9);
}

/* Instagram Follow banner styled like accordion in screenshot */
.instagram-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 0;
    text-align: center;
    margin-bottom: 6rem;
}

.insta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.insta-header .bullet {
    color: #ebd494;
    font-size: 0.8rem;
}

.insta-link {
    color: #ffffff;
    text-decoration: underline;
    font-family: var(--sub-font);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.insta-link:hover {
    color: #f7df94;
}

.insta-tap {
    font-family: var(--primary-font);
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 600;
    color: #e63946; /* High contrast crimson red as in image */
    margin-top: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.insta-tap span {
    animation: bounceSparkle 1.5s infinite;
}

.insta-tap:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

@keyframes bounceSparkle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.15); }
}

/* --- SECTION 6: STONES (CERTIFIED GEMSTONES) --- */

.section-stones {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(229, 193, 88, 0.3) transparent;
}

.section-stones::-webkit-scrollbar {
    width: 6px;
}

.section-stones::-webkit-scrollbar-thumb {
    background: rgba(229, 193, 88, 0.3);
    border-radius: 10px;
}

.stones-bg-container {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.stones-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    opacity: 0.85;
}

.stones-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 9, 8, 0.7); /* Deep dark overlay for high contrast */
    background-image: var(--vignette-grad);
}

.stones-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3.5rem 6rem 6rem 6rem; /* Reduced top padding to balance with the header banner */
    z-index: 2;
    min-height: auto; /* Height adapts naturally with the sibling header banner */
    width: 100%;
}

.stones-banner {
    width: 100%;
    background-color: #b20027; /* Exquisite Crimson-Red satin/velvet red matching user screenshot exactly */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.2rem 1.5rem; /* Elegant luxurious padding for brand height */
    z-index: 5;
    position: relative;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
}

.stones-banner-title {
    font-family: var(--primary-font); /* Uses Cinzel, high-end serif font */
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: #ffffff;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-right: -0.35em; /* Perfectly balance letter-spacing centering */
}

.stones-subhead {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: 0.4rem;
    margin-bottom: 3.5rem;
    text-align: center;
}

/* Astrological Navratna Mandala Wheel Container */
.navratna-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 100%;
    max-width: 1000px;
    margin-top: 1rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 5;
}

/* Left Side: Circular Mandala Wheel */
.navratna-wheel-side {
    position: relative;
    width: 520px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Orbit line inside the wheel */
.navratna-wheel-outer-ring {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 1px dashed rgba(229, 193, 88, 0.22);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: rotateOrbitRing 120s linear infinite;
}

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

.navratna-wheel {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Individual Gemstone Node */
.navratna-gem {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Size of central stone (Ruby) */
.gem-ruby {
    width: 140px;
    height: 140px;
}

/* Size of 8 orbiting gemstones */
.navratna-gem:not(.gem-ruby) {
    width: 90px;
    height: 90px;
}

.gem-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gem-tag {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
    transition: all 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: -25px;
    white-space: nowrap;
}

/* Orbit absolute coordinates */
.gem-ruby { top: 50%; left: 50%; }
.gem-heera { top: 15%; left: 50%; }
.gem-moti { top: 25.3%; left: 74.7%; }
.gem-moonga { top: 50%; left: 85%; }
.gem-gomed { top: 74.7%; left: 74.7%; }
.gem-neelam { top: 85%; left: 50%; }
.gem-lahsuniya { top: 74.7%; left: 25.3%; }
.gem-pukhraj { top: 50%; left: 15%; }
.gem-panna { top: 25.3%; left: 25.3%; }

.stone-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55));
}

/* Active gemstone state */
.navratna-gem.active {
    transform: translate(-50%, -50%) scale(1.18);
    z-index: 10;
}

.navratna-gem.active .stone-image {
    transform: scale(1.08);
}

/* Color specific active glow drop-shadow filters for premium celestial realism */
.navratna-gem.gem-ruby.active .stone-image { filter: drop-shadow(0 0 16px rgba(201, 24, 74, 0.75)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }
.navratna-gem.gem-heera.active .stone-image { filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.65)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }
.navratna-gem.gem-moti.active .stone-image { filter: drop-shadow(0 0 16px rgba(254, 215, 170, 0.6)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }
.navratna-gem.gem-moonga.active .stone-image { filter: drop-shadow(0 0 16px rgba(239, 68, 68, 0.7)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }
.navratna-gem.gem-gomed.active .stone-image { filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.7)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }
.navratna-gem.gem-neelam.active .stone-image { filter: drop-shadow(0 0 16px rgba(72, 202, 228, 0.75)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }
.navratna-gem.gem-lahsuniya.active .stone-image { filter: drop-shadow(0 0 16px rgba(163, 230, 53, 0.7)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }
.navratna-gem.gem-pukhraj.active .stone-image { filter: drop-shadow(0 0 16px rgba(255, 228, 94, 0.7)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }
.navratna-gem.gem-panna.active .stone-image { filter: drop-shadow(0 0 16px rgba(82, 183, 136, 0.75)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.55)); }

.navratna-gem.active .stone-glow {
    opacity: 0.85;
    filter: blur(18px);
}

.navratna-gem.active .gem-tag {
    color: #ebd494;
    font-weight: 600;
    opacity: 1;
    text-shadow: 0 0 8px rgba(229, 193, 88, 0.5);
}

/* Right Side: Gemstone Details Display Card */
.navratna-details-side {
    flex: 1;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.gem-details-card {
    position: relative;
    width: 100%;
    background: rgba(18, 14, 12, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Details Card glow layer */
.gem-details-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.details-header {
    z-index: 2;
    margin-bottom: 0.8rem;
}

.details-name-hindi {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.details-name-english {
    font-family: var(--primary-font);
    font-size: 1rem;
    color: #ebd494;
    font-style: italic;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    display: block;
    transition: color 0.4s ease;
}

.details-divider {
    width: 45px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
    z-index: 2;
    transition: all 0.4s ease;
}

.details-body {
    z-index: 2;
    margin-bottom: 1.8rem;
}

.details-planet {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ebd494;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    transition: color 0.4s ease;
}

.details-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}

.details-badge {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 30px;
    z-index: 2;
}

/* Details Card Color Themes mapping */
/* Emerald / Panna */
.gem-details-card.panna-theme { border-color: rgba(82, 183, 136, 0.22); }
.gem-details-card.panna-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(82, 183, 136, 0.15) 0%, transparent 60%); }
.gem-details-card.panna-theme .details-name-hindi { color: #52b788; }
.gem-details-card.panna-theme .details-divider { background: #52b788; width: 65px; }

/* Yellow Sapphire / Pukhraj */
.gem-details-card.pukhraj-theme { border-color: rgba(255, 228, 94, 0.22); }
.gem-details-card.pukhraj-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(255, 228, 94, 0.15) 0%, transparent 60%); }
.gem-details-card.pukhraj-theme .details-name-hindi { color: #ffe45e; }
.gem-details-card.pukhraj-theme .details-divider { background: #ffe45e; width: 65px; }

/* Blue Sapphire / Neelam */
.gem-details-card.neelam-theme { border-color: rgba(72, 202, 228, 0.22); }
.gem-details-card.neelam-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(72, 202, 228, 0.15) 0%, transparent 60%); }
.gem-details-card.neelam-theme .details-name-hindi { color: #48cae4; }
.gem-details-card.neelam-theme .details-divider { background: #48cae4; width: 65px; }

/* Ruby / Manik */
.gem-details-card.manik-theme { border-color: rgba(201, 24, 74, 0.22); }
.gem-details-card.manik-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(201, 24, 74, 0.15) 0%, transparent 60%); }
.gem-details-card.manik-theme .details-name-hindi { color: #ff758f; }
.gem-details-card.manik-theme .details-divider { background: #ff758f; width: 65px; }

/* Diamond / Heera */
.gem-details-card.heera-theme { border-color: rgba(147, 197, 253, 0.22); }
.gem-details-card.heera-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(147, 197, 253, 0.15) 0%, transparent 60%); }
.gem-details-card.heera-theme .details-name-hindi { color: #93c5fd; }
.gem-details-card.heera-theme .details-divider { background: #38bdf8; width: 65px; }

/* Pearl / Moti */
.gem-details-card.moti-theme { border-color: rgba(254, 215, 170, 0.22); }
.gem-details-card.moti-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(254, 215, 170, 0.15) 0%, transparent 60%); }
.gem-details-card.moti-theme .details-name-hindi { color: #fed7aa; }
.gem-details-card.moti-theme .details-divider { background: #fed7aa; width: 65px; }

/* Hessonite / Gomed */
.gem-details-card.gomed-theme { border-color: rgba(245, 158, 11, 0.22); }
.gem-details-card.gomed-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.15) 0%, transparent 60%); }
.gem-details-card.gomed-theme .details-name-hindi { color: #f59e0b; }
.gem-details-card.gomed-theme .details-divider { background: #f59e0b; width: 65px; }

/* Cat's Eye / Lahsuniya */
.gem-details-card.lahsuniya-theme { border-color: rgba(163, 230, 53, 0.22); }
.gem-details-card.lahsuniya-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(163, 230, 53, 0.15) 0%, transparent 60%); }
.gem-details-card.lahsuniya-theme .details-name-hindi { color: #a3e635; }
.gem-details-card.lahsuniya-theme .details-divider { background: #a3e635; width: 65px; }

/* Red Coral / Moonga */
.gem-details-card.moonga-theme { border-color: rgba(239, 68, 68, 0.22); }
.gem-details-card.moonga-theme .gem-details-card-glow { background: radial-gradient(circle at 10% 10%, rgba(239, 68, 68, 0.15) 0%, transparent 60%); }
.gem-details-card.moonga-theme .details-name-hindi { color: #ef4444; }
.gem-details-card.moonga-theme .details-divider { background: #ef4444; width: 65px; }

/* --- RESPONSIVE SCALING --- */

@media (max-width: 1024px) {
    .community-content { padding: 4rem; gap: 2.5rem; }
    .services-content { padding: 4rem; }
    .products-content { padding: 4rem; }
    .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .silver-content { padding: 4rem; }
    .silver-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .stones-content { padding: 4rem; }
    .navratna-container { gap: 3rem; }
    .navratna-wheel-side { transform: scale(0.9); }
}

@media (max-width: 768px) {
    .scroll-container {
        scroll-snap-type: none; /* Disable snap on mobile for smoother vertical list flow */
        overflow-y: auto;
    }
    
    .section {
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
    }
    
    .hero-content {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }

    .main-header { padding: 1.5rem; }
    .brand-name { font-size: 1rem; }
    .brand-title { font-size: 2rem; width: 100%; }
    .brand-subtitle { font-size: 1rem; }
    .giant-logo { max-width: 650px; width: 95%; }

    .community-rates-side {
        transform: none !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 460px;
        align-items: center;
    }
    .rates-columns-grid {
        flex-direction: column !important; /* Stack columns on mobile */
        gap: 1.2rem;
        width: 100%;
    }
    .rates-column {
        flex: 1;
        width: 100%;
        min-width: 0;
        gap: 0.6rem !important;
    }
    .gold-column .rate-items {
        flex-direction: column !important; /* Stack Gold 24K and 22K vertically on mobile */
        gap: 0.6rem;
    }
    .rates-card {
        padding: 1.5rem 1.2rem;
    }
    .rate-items {
        flex-direction: column !important;
        gap: 0.6rem !important;
    }
    .rate-item {
        padding: 0.5rem 0.6rem !important;
        gap: 0.3rem !important;
    }
    .rate-metal-name {
        font-size: 0.74rem !important;
    }
    .rate-metal-name small {
        font-size: 0.62rem !important;
        margin-left: 0.1rem;
        display: block; /* Stack parenthesis label underneath to save horizontal space */
    }
    .rate-trend {
        font-size: 0.65rem !important;
        padding: 1px 4px !important;
    }
    .rate-price-main {
        font-size: 0.95rem !important;
    }
    .rate-price-main small {
        font-size: 0.65rem !important;
    }
    .rate-price-sub {
        font-size: 0.72rem !important;
    }
    .rate-price-sub small {
        font-size: 0.6rem !important;
    }
    .column-title {
        font-size: 0.72rem !important;
        margin-bottom: 0.4rem !important;
        padding-bottom: 0.2rem !important;
    }

    /* Community mobile stack */
    .community-content {
        flex-direction: column;
        padding: 6rem 2rem 4rem 2rem;
        gap: 3rem;
    }

    .community-logo-side { transform: none !important; opacity: 1 !important; }
    .community-qr-side {
        transform: none !important;
        opacity: 1 !important;
        align-items: center;
        text-align: center;
    }
    .community-logo { max-width: 320px; width: 85%; }
    .qr-brand-title { font-size: 1.75rem; }
    .bal-gopal { font-size: 1.5rem; }
    .whatsapp-invite { font-size: 1.1rem; }
    .qr-code-card { width: 290px; height: 290px; }

    /* Services mobile stack */
    .services-content { padding: 6rem 1.5rem 4rem 1.5rem; }
    .services-title-head { font-size: 2rem; margin-bottom: 2rem; letter-spacing: 0.1em; }
    .services-grid { gap: 2rem; }
    
    .service-card {
        flex-direction: column !important; /* Stack vertically */
        transform: none !important;
        opacity: 1 !important;
    }
    
    .service-img-wrapper {
        width: 100%;
        height: 180px;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(229, 193, 88, 0.1);
    }
    
    .service-info { padding: 1.5rem; text-align: center; }
    .service-name { font-size: 1.3rem; }
    .service-desc { font-size: 0.88rem; }
    .services-footer { margin-top: 2rem; padding: 1rem 1.5rem; font-size: 0.88rem; width: 100%; }

    /* Products mobile grid */
    .products-content { padding: 6rem 1.5rem 4rem 1.5rem; }
    .products-title-head { font-size: 2rem; margin-bottom: 2.2rem; letter-spacing: 0.1em; }
    
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns on mobile */
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-card { transform: none !important; opacity: 1 !important; }
    .product-label { font-size: 0.95rem; margin-top: 0.6rem; }

    /* Silver products mobile grid */
    .silver-content { padding: 6rem 1.5rem 4rem 1.5rem; }
    .silver-title-head { font-size: 2rem; margin-bottom: 2.2rem; letter-spacing: 0.1em; }
    
    .silver-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns on mobile */
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .instagram-banner {
        margin-top: 2rem;
        padding: 1rem 0;
        margin-bottom: 3rem;
    }

    .insta-header { font-size: 0.85rem; }
    .insta-tap { font-size: 1.1rem; }

    .scroll-indicator { display: none !important; /* Hide scroll indicators on mobile */ }

    /* Stones mobile grid */
    .stones-banner {
        padding: 1.6rem 1rem;
    }
    .stones-banner-title {
        font-size: 1.6rem;
        letter-spacing: 0.25em;
        margin-right: -0.25em;
    }
    .stones-content { padding: 2rem 1.5rem 4rem 1.5rem; }
    .stones-subhead { font-size: 0.8rem; margin-bottom: 2rem; }

    /* Navratna interactive wheel mobile adjustments */
    .navratna-container {
        flex-direction: column;
        gap: 3.5rem;
        width: 100%;
        margin-bottom: 3rem;
    }
    
    .navratna-wheel-side {
        width: 360px;
        height: 360px;
        transform: scale(1);
    }
    
    .gem-ruby {
        width: 100px;
        height: 100px;
    }
    
    .navratna-gem:not(.gem-ruby) {
        width: 70px;
        height: 70px;
    }
    
    .gem-tag {
        font-size: 0.75rem;
        bottom: -20px;
    }
    
    .navratna-details-side {
        width: 100%;
        max-width: 100%;
    }
    
    .gem-details-card {
        padding: 2.2rem 1.8rem;
        border-radius: 20px;
    }
    
    .details-name-hindi {
        font-size: 1.8rem;
    }
    
    .details-name-english {
        font-size: 0.88rem;
    }
}

@media (max-width: 360px) {
    .navratna-wheel-side {
        transform: scale(0.85);
    }
}

/* ==========================================================================
   SECTION 7: SHOWROOM & TRUST BADGES FOOTER
   ========================================================================== */

.section-footer {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    background: #faf8f5; /* Luxurious soft ivory background */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 142, 47, 0.3) transparent;
}

.section-footer::-webkit-scrollbar {
    width: 6px;
}

.section-footer::-webkit-scrollbar-thumb {
    background: rgba(184, 142, 47, 0.3);
    border-radius: 10px;
}

.footer-section-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

/* 1. Top Showroom Accordion Header */
.showroom-accordion {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(184, 142, 47, 0.15);
    border-bottom: 1.5px solid rgba(184, 142, 47, 0.12);
    padding: 1.3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
}

.showroom-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.showroom-left .bullet {
    color: #b88e2f;
    font-size: 0.8rem;
}

.showroom-text {
    font-family: var(--primary-font);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e1915;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(184, 142, 47, 0.4);
}

.showroom-right .chevron-icon {
    color: #b88e2f;
    transition: transform 0.3s ease;
}

.showroom-accordion:hover .chevron-icon {
    transform: translateY(2px);
}

/* 2. Crimson Brand Banner */
.footer-brand-banner {
    background: #b20027; /* Rich crimson brand red matching Stones header precisely */
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2.8rem 6rem;
    box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.12), 0 10px 25px rgba(0, 0, 0, 0.06);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.footer-brand-logo-side {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.footer-brand-logo {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
    width: 78px;
    height: 78px;
    transition: transform 0.6s ease;
}

.footer-brand-banner:hover .footer-brand-logo {
    transform: rotate(5deg) scale(1.03);
}

.footer-brand-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-title {
    font-family: var(--primary-font);
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.12em;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.footer-subtitle {
    font-family: var(--primary-font);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.35em;
    margin: 0.2rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand-desc-side {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.cursive-desc-1 {
    font-size: 1.12rem;
    line-height: 1.5;
    color: #ffffff;
    font-style: italic;
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
    font-weight: 300;
}

.cursive-desc-2 {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* 3. Trust Badges Row */
.trust-badges-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 3rem 4rem;
    background: #ffffff;
    width: 100%;
    flex-grow: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.25s;
}

/* Active transitions for Section 7 Footer Snapping */
.section-footer.active-view .footer-brand-banner,
.section-footer.active-view .trust-badges-grid {
    opacity: 1;
    transform: translateY(0);
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 130px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(184, 142, 47, 0.05);
    border: 1.2px solid rgba(184, 142, 47, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: #b88e2f;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(184, 142, 47, 0.02);
}

.badge-icon {
    transition: transform 0.4s ease;
}

.trust-badge-item:hover {
    transform: translateY(-5px);
}

.trust-badge-item:hover .badge-icon-wrapper {
    background: rgba(184, 142, 47, 0.12);
    border-color: rgba(184, 142, 47, 0.3);
    color: #a37b25;
    box-shadow: 0 8px 18px rgba(184, 142, 47, 0.12);
}

.trust-badge-item:hover .badge-icon {
    transform: scale(1.08);
}

.badge-label {
    font-family: var(--sub-font);
    font-size: 0.78rem;
    font-weight: 600;
    color: #3e3630;
    line-height: 1.45;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* 4. Hindi Family Wish Footer */
.family-wish-footer {
    width: 100%;
    background: #fbf9f6;
    border-top: 1px solid rgba(184, 142, 47, 0.06);
    padding: 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.005);
}

.wish-text {
    font-family: 'Cinzel', 'Montserrat', 'Noto Sans Devanagari', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2e2621;
    letter-spacing: 0.02em;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.sparkle-gold {
    color: #b88e2f;
    font-size: 1.2rem;
    display: inline-block;
    animation: pulseSparkle 2s infinite ease-in-out;
}

@keyframes pulseSparkle {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.22); opacity: 1; filter: drop-shadow(0 0 5px rgba(184,142,47,0.45)); }
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR SECTION 7
   ========================================================================== */

@media (max-width: 768px) {
    .section-footer {
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
    }
    
    .footer-section-content {
        height: auto;
    }

    .showroom-accordion {
        padding: 1rem 1.5rem !important;
    }

    .showroom-text {
        font-size: 0.88rem !important;
    }

    .footer-brand-banner {
        flex-direction: column !important;
        padding: 2.2rem 1.5rem !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    .footer-brand-logo-side {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .footer-brand-logo {
        width: 70px !important;
        height: 70px !important;
    }

    .footer-title {
        font-size: 1.45rem !important;
        text-align: center !important;
    }

    .footer-subtitle {
        font-size: 0.72rem !important;
        letter-spacing: 0.25em !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }

    .footer-brand-desc-side {
        text-align: center !important;
        max-width: 100% !important;
    }

    .cursive-desc-1 {
        font-size: 0.95rem !important;
        margin-bottom: 0.3rem !important;
    }

    .cursive-desc-2 {
        font-size: 0.82rem !important;
    }

    .trust-badges-grid {
        flex-wrap: wrap !important;
        padding: 2rem 1rem !important;
        gap: 1.8rem 0.5rem !important;
    }

    .trust-badge-item {
        flex: 0 0 calc(33.33% - 0.4rem) !important;
        max-width: 100px !important;
    }

    .badge-icon-wrapper {
        width: 54px !important;
        height: 54px !important;
        margin-bottom: 0.6rem !important;
    }

    .badge-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .badge-label {
        font-size: 0.66rem !important;
        line-height: 1.35 !important;
    }

    .family-wish-footer {
        padding: 1.8rem 1rem !important;
    }

    .wish-text {
        font-size: 0.95rem !important;
        flex-direction: column !important;
        gap: 0.4rem !important;
    }
}

/* ==========================================================================
   SECTION 7: CONTACT US
   ========================================================================== */

.section-contact {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(229, 193, 88, 0.3) transparent;
}

.section-contact::-webkit-scrollbar {
    width: 6px;
}

.section-contact::-webkit-scrollbar-thumb {
    background: rgba(229, 193, 88, 0.3);
    border-radius: 10px;
}

.contact-bg-container {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.contact-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3.5rem 6rem 6rem 6rem;
    z-index: 2;
    width: 100%;
    position: relative;
}

.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
    margin-top: 1.5rem;
}

/* Left Form Side */
.contact-form-side {
    flex: 1.15;
    display: flex;
    justify-content: center;
}

.contact-form-card {
    width: 100%;
    background: rgba(18, 14, 12, 0.55);
    border: 1.5px solid rgba(229, 193, 88, 0.18);
    border-radius: 24px;
    padding: 2.5rem 2.2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
}

.section-contact.active-view .contact-form-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.form-card-title {
    font-family: var(--primary-font);
    font-size: 1.75rem;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.form-card-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    font-weight: 300;
}

.form-divider {
    width: 45px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1.2rem 0;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ebd494;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-label .required {
    color: #e63946;
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: var(--sub-font);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #ebd494;
    box-shadow: 0 0 10px rgba(229, 193, 88, 0.25);
}

.form-textarea {
    resize: vertical;
}

.form-submit-btn {
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    padding: 0.9rem;
    color: #120e0c;
    font-family: var(--primary-font);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(184, 142, 47, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: 0.4rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(229, 193, 88, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Right Info Side */
.contact-info-side {
    flex: 0.85;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-contact.active-view .contact-info-side {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.contact-map-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(229, 193, 88, 0.18);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    background: rgba(18, 14, 12, 0.3);
}

.google-map-iframe {
    display: block;
    filter: brightness(0.85) contrast(1.05) saturate(0.9);
}

.contact-address-text {
    font-family: 'Georgia', 'Caveat', cursive, serif;
    font-style: italic;
    font-size: 1.22rem;
    line-height: 1.6;
    color: #ff334b; /* Vibrant high-contrast handwriting red */
    margin-top: 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.contact-details-box {
    margin-top: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.contact-detail-row {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff334b; /* High contrast handwriting red */
    font-family: 'Georgia', serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    flex-wrap: nowrap;
}

.detail-label {
    color: #ff334b;
    font-style: italic;
    white-space: nowrap;
}

.detail-link {
    color: #ff334b;
    text-decoration: underline;
    transition: color 0.3s;
    white-space: nowrap;
}

.detail-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.contact-social-icons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fb-btn { background: #1877F2; }
.yt-btn { background: #FF0000; }
.ig-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.social-icon-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR SECTION 7 CONTACT US
   ========================================================================== */

@media (max-width: 768px) {
    .section-contact {
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
    }
    
    .contact-content-wrapper {
        padding: 6rem 1.5rem 4rem 1.5rem !important;
    }

    .contact-container {
        flex-direction: column !important;
        gap: 3rem !important;
        margin-top: 1rem !important;
    }

    .contact-form-side {
        width: 100% !important;
    }

    .contact-form-card {
        padding: 1.8rem 1.5rem !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .form-card-title {
        font-size: 1.5rem !important;
    }

    .form-submit-btn {
        font-size: 0.9rem !important;
        padding: 0.8rem !important;
    }

    .contact-info-side {
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .google-map-iframe {
        height: 200px !important;
    }

    .contact-address-text {
        font-size: 0.98rem !important;
        margin-top: 1.2rem !important;
    }

    .contact-detail-row {
        font-size: 1rem !important;
    }

    .contact-social-icons {
        margin-top: 1.5rem !important;
        gap: 1.2rem !important;
    }

    .social-icon-btn {
        width: 42px !important;
        height: 42px !important;
    }
}

/* ==========================================================================
   FLOATING SOCIAL SIDEBAR (RIGHT COLUMN)
   ========================================================================== */

.floating-social-sidebar {
    position: absolute;
    right: 25px;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 100;
}

.social-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.social-circle-btn:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.fb-circle {
    background-color: #3b5998;
}

.loc-circle {
    background-color: #b20027;
}

.ig-circle {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.ln-circle {
    background-color: #0077b5;
}

.yt-circle {
    background-color: #ff0000;
}

.next-arrow-circle {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.15rem;
    animation: bounceChevron 2.2s infinite ease-in-out;
}

@keyframes bounceChevron {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@media (max-width: 768px) {
    .floating-social-sidebar {
        right: 12px;
        gap: 0.55rem;
        top: 40%;
    }
    .social-circle-btn {
        width: 30px;
        height: 30px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
    }
    .social-circle-btn svg {
        width: 13px;
        height: 13px;
    }
}

/* ==========================================================================
   LUXURY MODAL POPUP & FORM LOADING STATES
   ========================================================================== */

/* Custom modal/toast alert styling for luxury form submission feedback */
.luxury-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 9, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.luxury-modal {
    background: rgba(18, 14, 12, 0.85);
    border: 1px solid rgba(229, 193, 88, 0.25);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 25px rgba(229, 193, 88, 0.05);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.luxury-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 10%, rgba(229, 193, 88, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.luxury-modal-overlay.active .luxury-modal {
    transform: scale(1);
}

.luxury-modal-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.8rem auto;
    background: rgba(229, 193, 88, 0.08);
    border: 1.5px solid #ebd494;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ebd494;
    filter: drop-shadow(0 0 12px rgba(229, 193, 88, 0.3));
}

.luxury-modal-title {
    font-family: var(--primary-font);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.luxury-modal-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.2rem;
    font-family: var(--sub-font);
    letter-spacing: 0.02em;
}

.luxury-modal-btn {
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2.2rem;
    color: #120e0c;
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(184, 142, 47, 0.2);
}

.luxury-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 193, 88, 0.35);
}

.luxury-modal-btn:active {
    transform: translateY(0);
}

/* Contact submit button loading/sending states */
.form-submit-btn.sending {
    opacity: 0.75;
    cursor: not-allowed;
    background: rgba(229, 193, 88, 0.3) !important;
    transform: none !important;
    box-shadow: none !important;
}

.form-submit-btn.sending span {
    animation: pulseText 1.5s infinite ease-in-out;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ==========================================================================
   E-COMMERCE PRODUCTS STYLING (BADGES, HEARTS, THUMBNAILS, STARS, PRICE)
   ========================================================================== */

/* Wishlist heart styling */
.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(0, 0, 0, 0.18);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.wishlist-heart:hover {
    transform: scale(1.2);
    color: #ff334b;
}

.wishlist-heart.active {
    color: #ff334b;
    animation: heartBeat 0.4s ease-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Product badge styling */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #7e1b1a; /* Rich red badge */
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/* Product thumbnails styling */
.product-thumbnails {
    display: flex;
    flex-direction: row;
    gap: 6px;
    justify-content: center;
    margin-top: 0.8rem;
    width: 100%;
}

.thumb-item {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.thumb-item img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.3s;
}

.thumb-item.active {
    border-color: #ebd494;
    box-shadow: 0 0 6px rgba(229, 193, 88, 0.4);
}

.thumb-item:hover:not(.active) {
    border-color: rgba(184, 142, 47, 0.4);
}

/* Star rating styling */
.product-rating {
    color: #ebd494; /* Gold stars */
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    text-align: left;
    width: 100%;
}

/* Price styling */
.product-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 0.2rem;
    width: 100%;
}

.discount-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
}

.original-price {
    font-size: 0.78rem;
    text-decoration: line-through;
    color: #b88e2f;
}

/* View All button container styling */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    margin-bottom: 3rem;
    width: 100%;
}

.view-all-btn {
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2.5rem;
    color: #120e0c;
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(184, 142, 47, 0.2);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(229, 193, 88, 0.4);
}

.view-all-btn:active {
    transform: translateY(0);
}

/* Tablet & Mobile responsive columns override */
@media (max-width: 1024px) {
    .products-grid, .silver-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .products-grid, .silver-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }
    .product-card {
        padding: 0.8rem 0.6rem !important;
    }
    .product-title {
        font-size: 0.78rem !important;
    }
    .discount-price {
        font-size: 0.85rem !important;
    }
    .original-price {
        font-size: 0.7rem !important;
    }
    .thumb-item {
        width: 22px !important;
        height: 22px !important;
    }
}



