/* Elegant Rose, Ivory & Gold Luxury Theme for ROYALÉ JEWELLERS */

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

:root {
    --bg-light: #FAF8F5; /* Warm Luxury Ivory */
    --bg-card: #FFFFFF; /* Pure Alabaster White */
    --bg-cream: #FDF9F6; /* Champagne Cream */
    --bg-pink-soft: #FFF3F5; /* Romantic Blush Pink */
    
    --rose-primary: #B4395A; /* Royal Rose Crimson */
    --rose-dark: #8F2540; /* Deep Burgundy Wine */
    --rose-light: #E06080; /* Soft Petal Rose */
    
    --gold-primary: #C5A059; /* Classic Satin Gold */
    --gold-dark: #A6803C; /* Antique Gold */
    --gold-light: #EAD5A8; /* Light Champagne Gold */
    
    --text-dark: #1F1A17; /* Luxury Dark Charcoal */
    --text-muted: #7E7570; /* Warm Stone Grey */
    --border-gold: rgba(197, 160, 89, 0.2);
    --border-gold-hover: rgba(197, 160, 89, 0.5);
    --border-rose: rgba(180, 57, 90, 0.15);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(180, 57, 90, 0.04);
    --shadow-premium: 0 15px 40px rgba(180, 57, 90, 0.08);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.text-gold {
    color: var(--gold-primary) !important;
}

.text-rose {
    color: var(--rose-primary) !important;
}

.text-muted-custom {
    color: var(--text-muted);
}

/* Top Promo Bar */
.top-promo-bar {
    background-color: #5a111e!important;
    color: #ffac00!important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    padding: 8px 0;
    font-family: var(--font-alt);
}

.top-promo-bar a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
}

.top-promo-bar a:hover {
    color: #ffac00 !important;
    transform: translateY(-1px);
}

.top-promo-bar i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.top-promo-bar a:hover i {
    transform: scale(1.2);
}

/* Pulsing effect for the Free Shipping Star icon */
.top-promo-bar .fa-star {
    color: #ffac00 !important;
    display: inline-block;
    animation: gold-pulse 2s infinite ease-in-out;
}

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

/* Header & Brand Area */
.main-header {
    background-color: #F8F6F2;
    border-bottom: 1px solid var(--border-gold);
    padding: 0px 0;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-emblem {
    width: 48px;
    height: 48px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: bold;
    background: linear-gradient(135deg, #FFF 0%, #FAF6EE 100%);
    box-shadow: 0 4px 10px rgba(197,160,89,0.15);
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.brand-subtitle {
    font-family: var(--font-alt);
    font-size: 0.65rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Navbar Menu */
.navbar-custom {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 0;
}

.navbar-custom .nav-link {
    color: var(--text-dark) !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-alt);
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--rose-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 60%;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--rose-primary) !important;
}

.header-icons-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon-link {
    color: var(--text-dark);
    font-size: 1.25rem;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.header-icon-link:hover {
    color: var(--rose-primary);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--rose-primary);
    color: #FFFFFF;
    font-size: 0.62rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Today's Rate Ticker Layout - Boxed Cards style matching reference */
.rate-ticker-row {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: none;
}

.rate-card {
    background: #FFFDFB;
    border: 1px solid #EAD5A8;
    border-radius: 4px;
    padding: 10px 15px;
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.06);
}

.rate-card-header {
    background: #FFF9F3;
    border-color: #EAD5A8;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: 190px;
}

.rate-card-gold-icon {
    width: 38px;
    height: 38px;
    background: #F8EFE2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.rate-card-header-text {
    display: flex;
    flex-direction: column;
}

.rate-card-header-text .rate-title {
    font-family: var(--font-alt);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1F1A17;
}

.rate-card-header-text .rate-badge-live {
    background-color: var(--rose-primary);
    color: #FFFFFF;
    font-size: 0.55rem;
    padding: 1px 6px;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2px;
    display: inline-block;
    align-self: flex-start;
    animation: pulseRate 2s infinite;
}

.rate-card .rate-label {
    font-family: var(--font-alt);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.rate-card .rate-value-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rate-card .rate-change {
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 6px;
}

.rate-card .rate-change-up {
    color: #28a745;
}

.rate-card .rate-change-down {
    color: #dc3545;
}

.btn-chart-container {
    display: flex;
    align-items: center;
    min-width: 160px;
}

.btn-chart-link {
    background-color: #6C2B3E;
    color: #FFFFFF !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 12px 18px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-chart-link:hover {
    background-color: var(--rose-primary);
    transform: translateY(-1px);
}

@keyframes pulseRate {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Hero Section Carousel - Clean Banner Mode with no overlay */
.hero-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #FAF8F5;
}

.hero-slider-container .carousel-item {
    width: 100%;
    height: auto;
}

.hero-slider-container .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Feature Badges under Hero */
.hero-badges-row {
    background-color: #FFFDFB;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
.hero-badge-item-luxury {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(197, 160, 89, 0.18) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    justify-content: flex-start !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.03) !important;
}

.hero-badge-item-luxury:hover {
    transform: translateY(-3px) !important;
    border-color: var(--rose-primary) !important;
    box-shadow: 0 8px 24px rgba(180, 57, 90, 0.08) !important;
}

.hero-badge-icon-luxury {
    font-size: 1.5rem !important;
    color: var(--rose-primary) !important;
    width: 44px;
    height: 44px;
    background: var(--bg-pink-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(180, 57, 90, 0.1);
}

.hero-badge-text-box {
    display: flex;
    flex-direction: column;
}

.hero-badge-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0;
}

.hero-badge-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
}

/* Section Dividers with Stars - Redesigned Luxury Style */
.luxury-section-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
}

.luxury-section-subtitle {
    font-family: var(--font-alt) !important;
    font-size: 0.85rem !important;
    letter-spacing: 6px !important;
    color: var(--rose-primary) !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    display: inline-block !important;
    position: relative;
    padding-bottom: 10px;
}

.luxury-section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.luxury-section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
    position: relative;
}

/* Category Circle List - Restore clean circular style */
.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-circle-img-wrap {
    width: 110px !important;
    height: 110px !important;
    border-radius: 50% !important;
    border: 2px solid var(--border-gold) !important;
    padding: 5px !important;
    background-color: #FFFFFF !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--shadow-soft) !important;
    overflow: hidden !important;
}

.category-circle-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    background-color: var(--bg-pink-soft) !important;
}

.category-circle-label {
    margin-top: 12px;
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.category-circle-item:hover .category-circle-img-wrap {
    border-color: var(--rose-primary) !important;
    transform: scale(1.06) !important;
    box-shadow: 0 8px 20px rgba(180, 57, 90, 0.12) !important;
}

.category-circle-item:hover .category-circle-label {
    color: var(--rose-primary) !important;
}

.category-circle-item:hover .category-circle-label {
    color: var(--rose-primary);
}

/* Three Promo Banners */
.promo-card {
    border: 1px solid var(--border-rose);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.promo-card-pink {
    background: linear-gradient(135deg, #FFF3F5 0%, #FFFDFD 100%);
}

.promo-card-gold {
    background: linear-gradient(135deg, #FCF7F1 0%, #FFFFFF 100%);
    border-color: var(--border-gold);
}

.promo-card-content {
    z-index: 2;
    max-width: 60%;
}

.promo-tag {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--rose-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}

.promo-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-promo-shop {
    color: var(--rose-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 2px solid var(--rose-primary);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: all 0.2s ease;
    font-family: var(--font-alt);
}

.btn-promo-shop:hover {
    color: var(--rose-dark);
    border-color: var(--rose-dark);
    padding-left: 4px;
}

.promo-card-img {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 45%;
    max-height: 85%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.promo-card:hover .promo-card-img {
    transform: scale(1.05) rotate(3deg);
}

/* E-Commerce Product Cards - New Arrivals style */
.card-custom {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-img-container {
    position: relative;
    padding-top: 100%;
    background-color: #FAF8F5;
    overflow: hidden;
}

.card-img-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-video-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card-custom:hover .card-video-custom {
    opacity: 1;
}

.card-custom:hover .card-img-custom {
    opacity: 1;
    transform: scale(1.04);
}

.card-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--rose-primary);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
}

.card-body-custom {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-tag {
    font-family: var(--font-alt);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 6px;
}

.card-title-custom {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-price-custom {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rose-primary);
    margin-bottom: 12px;
    font-family: var(--font-sans);
}

.btn-rose-outline-sm {
    border: 1px solid var(--rose-primary);
    color: var(--rose-primary) !important;
    background-color: transparent;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%;
    display: block;
}

.btn-rose-outline-sm:hover {
    background-color: var(--rose-primary);
    color: #FFFFFF !important;
}

.card-custom:hover {
    transform: translateY(-5px);
    border-color: var(--rose-primary);
    box-shadow: var(--shadow-premium);
}

/* Watch and Discover Section */
.watch-discover-section {
    background-color: #FFFFFF;
    padding: 80px 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.video-player-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    aspect-ratio: 16/9;
    border: 1px solid var(--border-gold);
    background-color: #000;
}

.video-player-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Instagram Showcase Section */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

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

.instagram-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(180, 57, 90, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #FFFFFF;
    font-size: 1.8rem;
}

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

.instagram-item:hover .instagram-hover-overlay {
    opacity: 1;
}

.instagram-corner-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    z-index: 2;
}

/* Testimonial Section */
.testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid var(--border-rose);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    border: 2px solid var(--gold-primary);
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial-author {
    font-family: var(--font-alt);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    border-color: var(--rose-primary);
    box-shadow: var(--shadow-premium);
}

/* Bottom Features List */
.bottom-features-row {
    background-color: var(--bg-pink-soft);
    padding: 30px 0;
    border-top: 1px solid var(--border-rose);
    border-bottom: 1px solid var(--border-rose);
}

.bottom-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.bottom-feature-icon {
    font-size: 2rem;
    color: var(--rose-primary);
}

.bottom-feature-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.bottom-feature-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Footer Section */
footer {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 30px 0;
    color: var(--text-muted);
}

footer h5 {
    color: var(--text-dark);
    font-family: var(--font-alt);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

footer a:hover {
    color: var(--rose-primary);
}

.footer-social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--text-dark);
    margin-right: 10px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: var(--rose-primary);
    color: #FFFFFF;
    border-color: var(--rose-primary);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 0.85rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    flex-grow: 1;
}

.newsletter-input:focus {
    border-color: var(--rose-primary);
    outline: none;
}

.btn-newsletter-send {
    background-color: var(--rose-primary);
    border: none;
    color: #FFFFFF;
    border-radius: 4px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.btn-newsletter-send:hover {
    background-color: var(--rose-dark);
}

/* Products and Filter page styling */
.filter-sidebar {
    background-color: #FFFFFF;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.filter-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.form-control-dark, .form-select-dark {
    background-color: var(--bg-light);
    border: 1px solid var(--border-gold);
    color: var(--text-dark);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 0.88rem;
}

.form-control-dark:focus, .form-select-dark:focus {
    border-color: var(--rose-primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(180, 57, 90, 0.1);
}

/* Detail Spec Box & Price Calc */
.detail-gallery {
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF;
    box-shadow: var(--shadow-soft);
}

.detail-price-box {
    background-color: var(--bg-pink-soft);
    border: 1.5px dashed var(--rose-primary);
    border-radius: 8px;
    padding: 24px;
    margin: 25px 0;
}

/* Buttons */
.btn-whatsapp {
    background-color: #25d366;
    color: white !important;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background-color: #1cbf58;
    transform: translateY(-2px);
}

.btn-phone-call {
    background-color: #4b6cb7;
    color: white !important;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-phone-call:hover {
    background-color: #182848;
    transform: translateY(-2px);
}

/* --- Professional Admin Dashboard System Overrides --- */

.admin-card {
    background-color: #FFFFFF !important;
    border: 1px solid #EAD5A8 !important;
    border-radius: 12px !important;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(90, 17, 30, 0.04) !important;
    transition: all 0.3s ease;
    color: #1F1A17 !important;
}

.admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(90, 17, 30, 0.08) !important;
    border-color: #5A111E !important;
}

/* Override any dark-mode text-white leakage inside the admin cards */
.admin-card h2, 
.admin-card .text-white, 
.admin-card .display-4,
.admin-card .display-5,
.admin-card label.text-white,
.admin-card .form-label.text-white {
    color: #1F1A17 !important;
}

.admin-card label,
.admin-card .form-label {
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: #5A111E !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.admin-card h5.text-muted-custom {
    color: #7E7570 !important;
    font-size: 0.72rem !important;
    letter-spacing: 1.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}

.admin-card i.text-gold {
    color: #5A111E !important; /* Luxury burgundy for primary icons */
}

.admin-card h2.display-4 {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    color: #1F1A17 !important;
    margin-top: 8px;
    margin-bottom: 8px;
    font-family: var(--font-serif) !important;
}

/* Premium Admin Navigation Bar Row */
.admin-header-nav {
    background-color: #FFFFFF !important;
    border: 1px solid #EAD5A8 !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    box-shadow: 0 10px 30px rgba(90, 17, 30, 0.03) !important;
}

/* Admin Table Design */
.admin-table {
    width: 100%;
    margin-bottom: 0;
    color: #1F1A17 !important;
    vertical-align: middle;
}

.admin-table th {
    background-color: #5A111E !important; /* Maroon table header */
    color: #FFFFFF !important;
    font-weight: 700 !important;
    border: none !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px !important;
}

.admin-table td {
    color: #1F1A17 !important;
    border-bottom: 1px solid #FAF4E8 !important;
    padding: 14px 18px !important;
    font-size: 0.88rem !important;
    background-color: #FFFFFF !important;
}

.admin-table tbody tr {
    transition: background-color 0.2s ease;
}

.admin-table tbody tr:hover td {
    background-color: #FAF8F5 !important;
}

/* Form inputs for Admin console */
.form-control-dark {
    background-color: #FFFFFF !important;
    border: 1.5px solid #D1C7BD !important;
    color: #1F1A17 !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
}

.form-control-dark:focus {
    border-color: #5A111E !important;
    box-shadow: 0 0 0 3px rgba(90, 17, 30, 0.12) !important;
    background-color: #FFFFFF !important;
    color: #1F1A17 !important;
}

.form-control-dark::placeholder {
    color: #A39790 !important;
}

/* Button overrides for Admin Console */
.btn-gold {
    background-color: #5A111E !important; /* Maroon primary theme for admin buttons */
    border: 1px solid #5A111E !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    padding: 8px 18px !important;
    transition: all 0.2s ease !important;
}

.btn-gold:hover {
    background-color: #7E1E2B !important;
    border-color: #7E1E2B !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(90, 17, 30, 0.15);
}

.btn-outline-gold {
    background-color: transparent !important;
    border: 1.5px solid #5A111E !important;
    color: #5A111E !important;
    font-weight: 700 !important;
    padding: 8px 18px !important;
    transition: all 0.2s ease !important;
}

.btn-outline-gold:hover {
    background-color: #5A111E !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

.badge.bg-gold {
    background-color: #FAF4E8 !important;
    color: #5A111E !important;
    border: 1px solid #EAD5A8 !important;
}


/* Custom Banner Carousel Dots */
.hero-slider-container .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--rose-primary);
    opacity: 0.4;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-slider-container .carousel-indicators .active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

.hero-slider-container .carousel-control-prev,
.hero-slider-container .carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dark);
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero-slider-container .carousel-control-prev:hover,
.hero-slider-container .carousel-control-next:hover {
    background: #FFFFFF;
    color: var(--rose-primary);
    opacity: 1;
}

.hero-slider-container .carousel-control-prev {
    left: 20px;
}

.hero-slider-container .carousel-control-next {
    right: 20px;
}

.hero-slider-container .carousel-control-prev-icon,
.hero-slider-container .carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

/* Customize Jewellery Design Blocks */
.customize-banner {
    background: linear-gradient(135deg, #FAF4EE 0%, #FFF5F6 100%);
    border: 1px solid #EAD5A8;
    border-radius: 12px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.customize-banner::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 40%;
    background-image: url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.customize-card {
    background-color: #FFFFFF !important;
    border: 1px solid #EAD5A8 !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08) !important;
    position: relative;
    z-index: 2;
}

.customize-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--rose-primary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 8px;
}

.form-label-gold {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
}

/* Instagram Grid Items and hover fixes */
.instagram-item {
    position: relative;
}

/* Product list hover outline fix */
.card-custom {
    border-color: #EAD5A8 !important;
}

.card-custom:hover {
    border-color: var(--rose-primary) !important;
}

/* Responsive Grid and elements */
@media (max-width: 991px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .customize-banner {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .rate-ticker-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Header Search Bar - New premium style */
.search-bar-container-new {
    display: flex !important;
    align-items: center !important;
    border: 1px solid var(--gold-primary) !important;
    border-radius: 5px !important;
    padding: 0px 0px 0px 10px !important ;
    background-color: var(--bg-light) !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05) !important;
}

.search-bar-container-new:focus-within {
    border-color: var(--rose-primary) !important;
    box-shadow: 0 4px 12px rgba(180, 57, 90, 0.08) !important;
    background-color: #FFFFFF !important;
}

.search-bar-container-new .search-input-new {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 0.9rem !important;
    color: var(--text-dark) !important;
    width: 100% !important;
    font-family: var(--font-sans) !important;
    padding: 8px 0 !important;
}

    .search-bar-container-new .search-submit-btn-new {
        border-radius: 5px !important;
        border: none !important;
        background: #5a111e !important;
       
        outline: none !important;
        box-shadow: none !important;
        color: #fff !important;
        font-size: 1rem !important;
        padding: 13px 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: color 0.2s ease, transform 0.2s ease !important;
        cursor: pointer !important;
    }

.search-bar-container-new .search-submit-btn-new:hover {
    color: var(--rose-primary) !important;
    transform: scale(1.1) !important;
}

/* Premium Admin Login Button */
.btn-admin-login {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 8px 18px;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.btn-admin-login:hover {
    color: var(--rose-primary);
    border-color: var(--rose-primary);
    background-color: var(--bg-pink-soft);
    transform: translateY(-1px);
}

/* Nav Links - New Layout style */
.nav-link-new {
    color: var(--text-dark) !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-alt);
    padding: 10px 18px !important;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.nav-link-new::after {
    display: none !important;
}

.nav-link-new:hover,
.nav-link-new.active {
    color: var(--rose-primary) !important;
    text-decoration: none !important;
}

/* Redefined Rate Ticker Grid with solid layout */
.rate-ticker-row {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 12px !important;
    margin-top: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .rate-ticker-row {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .rate-ticker-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .rate-ticker-row {
        grid-template-columns: 1fr !important;
    }
}

/* --- Shree Ghanshyam Jewellers Custom Layout overrides --- */

/* Header and Navbar row */
.navbar-row-container {
    background-color: #fff !important; /* Deep maroon/burgundy */
    border-top: 1px solid #d8b06a75 !important;
    /* border-bottom: 1px solid #D4AF37;*/
}

    .navbar-row-container .nav-link-new {
        color: #5a111e !important;
        font-weight: 700 !important;
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
        padding: 10px 16px !important;
        text-transform: uppercase;
    }

        .navbar-row-container .nav-link-new:hover,
        .navbar-row-container .nav-link-new.active {
            color: #ffc107 !important; /* Soft Champagne Gold */
        }

/* Header buttons */
.header-action-btn-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1F1A17;
    font-size: 0.72rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.header-action-btn-custom i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.header-action-btn-custom:hover {
    color: #5A111E;
    transform: translateY(-1px);
}

.btn-admin-login-icon {
    font-size: 1.35rem;
    color: #c5a059;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-admin-login-icon:hover {
    color: #5A111E;
}

/* Rate board card styling */
.rate-board-card {
    background-color: #FFFFFF;
    border: 1px solid #EAD5A8;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.08);
}

.rate-gold-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FAF4E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.rate-board-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #5A111E;
}

.rate-sub-box {
    background-color: #FAF8F5;
    border: 1px solid #EAD5A8;
    border-radius: 4px;
    padding: 10px;
}

.rate-sub-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #7E7570;
    margin-bottom: 3px;
}

.rate-sub-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F1A17;
}

.rate-sub-box-silver {
    background-color: #FAF8F5;
    border: 1px solid #EAD5A8;
    border-radius: 4px;
}

.silver-rate-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #5A111E;
}

.silver-rate-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F1A17;
}

/* Category circle approved design style */
.category-circle-item-approved {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-circle-img-wrap-approved {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #5A111E;
    background-color: #5A111E;
    padding: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.category-circle-img-wrap-approved img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: #FAF8F5;
}

.category-circle-label-approved {
    margin-top: 10px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: #1F1A17;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-circle-item-approved:hover .category-circle-img-wrap-approved {
    transform: scale(1.06);
    border-color: #D4AF37;
    box-shadow: 0 6px 15px rgba(90, 17, 30, 0.2);
}

/* Banner override styles */
.promo-banner-card-approved {
    background: linear-gradient(135deg, #4A0E17 0%, #7E1E2B 100%);
    color: #FFFFFF;
    border: 1px solid #D4AF37;
}

.promo-banner-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-banner-title {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-serif);
    margin: 4px 0;
}

.promo-banner-details {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.btn-promo-banner {
    background-color: #D4AF37;
    color: #4A0E17 !important;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 24px;
    border-radius: 4px;
    border: none;
    transition: all 0.2s;
}

.btn-promo-banner:hover {
    background-color: #FAF8F5;
    color: #4A0E17 !important;
}

.promo-banner-card-approved-green {
    background: linear-gradient(135deg, #0B3C2A 0%, #125B3E 100%);
}

.promo-banner-card-approved-purple {
    background: linear-gradient(135deg, #2D143D 0%, #4D2666 100%);
}

/* Product grid cards custom look */
.card-approved-product {
    background-color: #FFFFFF;
    border: 1px solid #EAD5A8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-img-wrap {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: #FAF8F5;
}

.product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wishlist-btn-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFFFFF;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7E7570;
    font-size: 0.85rem;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.2s;
}

.wishlist-btn-heart:hover {
    color: #5A111E;
    background-color: #FFF3F5;
}

.product-card-title {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    color: #1F1A17;
    margin-bottom: 2px;
}

.product-card-specs {
    font-size: 0.7rem;
    color: #7E7570;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #5A111E;
}

.btn-order-whatsapp {
    background-color: #25D366;
    color: #FFFFFF !important;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s;
}

.btn-order-whatsapp:hover {
    background-color: #1ebd54;
}

.card-approved-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(90, 17, 30, 0.08);
    border-color: #5A111E;
}

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

/* Floating WhatsApp layout */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #FFFFFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: transform 0.2s;
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.08);
}

/* Row-grid and layout helpers */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}
.col-md-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 992px) {
    .col-lg-2-4 {
        width: 33.33%;
    }
}
@media (max-width: 768px) {
    .col-lg-2-4, .col-md-2-4 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #EAD5A8 !important;
    }
}

.luxury-section-divider {
    position: relative;
    margin-top: 50px;
    margin-bottom: 30px;
}

.subtitle-gold {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #5A111E;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0 20px;
    background-color: var(--bg-light);
    position: relative;
    z-index: 2;
}

.divider-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #EAD5A8;
    z-index: 1;
}

/* Admin Dashboard Sub Navigation Menu styling */
.container.my-5 > .row.mb-4 .card {
    background-color: #FFFFFF !important;
    border: 1.5px solid #EAD5A8 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(90, 17, 30, 0.03) !important;
}

.container.my-5 > .row.mb-4 .card span.text-gold {
    color: #5A111E !important;
    font-size: 0.95rem !important;
}

.container.my-5 > .row.mb-4 .card .btn-outline-gold {
    border: 1px solid #D1C7BD !important;
    color: #7E7570 !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
}

.container.my-5 > .row.mb-4 .card .btn-outline-gold:hover {
    border-color: #5A111E !important;
    background-color: #FAF4E8 !important;
    color: #5A111E !important;
}

.container.my-5 > .row.mb-4 .card .btn-gold {
    background-color: #5A111E !important;
    border: 1px solid #5A111E !important;
    color: #FFFFFF !important;
    font-size: 0.78rem !important;
}

.container.my-5 > .row.mb-4 .card .btn-gold:hover {
    background-color: #7E1E2B !important;
}

/* --- Category Slider Style --- */
.category-slider-wrapper {
    position: relative;
    padding: 0 45px; /* space for arrows */
}

.category-slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.category-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-slider-card {
    flex: 0 0 calc(25% - 15px); /* 4 items on desktop */
    scroll-snap-align: start;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.category-slider-link {
    text-decoration: none;
    display: block;
    text-align: center;
}

.category-slider-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3; /* landscape ratio matching user request */
    overflow: hidden;
    background-color: #FAF8F5;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.category-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-slider-title {
    margin-top: 12px;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1F1A17;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Hover effects */
.category-slider-card:hover .category-slider-img {
    transform: scale(1.04);
}

.category-slider-card:hover .category-slider-img-wrap {
    box-shadow: 0 6px 15px rgba(90, 17, 30, 0.15);
}

.category-slider-card:hover .category-slider-title {
    color: #5A111E;
}

/* Navigation buttons styling matching the screenshot */
.category-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #D1C7BD;
    color: #1F1A17;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.category-slider-btn:hover {
    background-color: #5A111E;
    color: #FFFFFF;
    border-color: #5A111E;
    box-shadow: 0 4px 10px rgba(90, 17, 30, 0.2);
}

.category-slider-btn.prev-btn {
    left: 0;
}

.category-slider-btn.next-btn {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .category-slider-card {
        flex: 0 0 calc(33.333% - 13.33px); /* 3 items on tablet */
    }
}

@media (max-width: 768px) {
    .category-slider-wrapper {
        padding: 0 35px;
    }
    .category-slider-btn {
        width: 36px;
        height: 36px;
    }
    .category-slider-card {
        flex: 0 0 calc(50% - 10px); /* 2 items on mobile */
    }
}

/* --- Beautified Custom Jewellery Enquiry Section --- */
#customize-jewellery {
    position: relative;
}

.customize-banner {
    background: linear-gradient(135deg, #FCF9F6 0%, #FFF4F5 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(90, 17, 30, 0.06) !important;
    padding: 60px 50px !important;
}

@media (max-width: 768px) {
    .customize-banner {
        padding: 30px 20px !important;
    }
}

/* Beautiful Typography on left info */
#customize-jewellery .hero-crafted-tag {
    background-color: rgba(90, 17, 30, 0.05);
    color: #5A111E;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

#customize-jewellery h2 {
    color: #5A111E !important;
    font-family: var(--font-serif);
    font-weight: 800 !important;
    line-height: 1.25;
}

#customize-jewellery p.lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #5C5552 !important;
}

/* Premium Left Buttons */
#customize-jewellery .btn-phone-call {
    background: #5A111E !important;
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
    padding: 12px 28px !important;
    box-shadow: 0 4px 15px rgba(90, 17, 30, 0.15);
    transition: all 0.3s ease;
}

#customize-jewellery .btn-phone-call:hover {
    background: #7E1E2B !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 17, 30, 0.25);
}

#customize-jewellery .btn-whatsapp {
    background: #25D366 !important;
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
    padding: 12px 28px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
    transition: all 0.3s ease;
}

#customize-jewellery .btn-whatsapp:hover {
    background: #1ebd54 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* Beautified Custom Enquiry Form Card */
.customize-card {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 40px rgba(90, 17, 30, 0.08) !important;
    padding: 35px !important;
}

.customize-card h4 {
    font-family: var(--font-serif);
    color: #5A111E !important;
    font-weight: 700 !important;
    position: relative;
    padding-bottom: 12px;
}

.customize-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #D4AF37;
}

/* Beautified form inputs inside custom enquiry */
.customize-card .form-control {
    background-color: #FAF9F7 !important;
    border: 1.5px solid #EAD5A8 !important;
    color: #1F1A17 !important;
    border-radius: 6px !important;
    padding: 11px 16px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.customize-card .form-control:focus {
    background-color: #FFFFFF !important;
    border-color: #5A111E !important;
    box-shadow: 0 0 0 4px rgba(90, 17, 30, 0.08) !important;
    outline: none !important;
}

.customize-card label {
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: #5A111E !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

/* Custom styled file upload input button */
.customize-card input[type="file"] {
    padding: 8px 12px !important;
    cursor: pointer;
}

/* Submit Button in form */
.customize-card button[type="submit"] {
    background: linear-gradient(135deg, #25D366 0%, #1cbd54 100%) !important;
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 6px !important;
    padding: 14px 20px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.customize-card button[type="submit"]:hover {
    background: linear-gradient(135deg, #1cbd54 0%, #17a849 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
}


/* --- Full Width Dynamic Video Section --- */
.brand-video-section-container {
    height: 480px;
    width: 100%;
    position: relative;
    background-color: #000000;
}

@media (max-width: 768px) {
    .brand-video-section-container {
        height: 350px;
    }
}

.brand-video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.brand-full-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Elegant dark backdrop for text readability */
    z-index: 2;
    padding: 20px;
}

.video-overlay-content h2 {
    font-size: 3rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .video-overlay-content h2 {
        font-size: 2rem;
    }
}

/* --- Showcase Reels / Video Gallery Style --- */
.reel-card-wrap {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    background-color: #000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    aspect-ratio: 9 / 16; /* vertical reels format */
    width: 100%;
}

.reel-card-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(90, 17, 30, 0.16);
    border-color: #5A111E;
}

.reel-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.reel-thumbnail-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.reel-card-wrap:hover .reel-thumbnail-video {
    opacity: 1;
}

.reel-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    z-index: 2;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: #5A111E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0; /* invisible until hovered */
}

.reel-card-wrap:hover .reel-play-btn {
    transform: translate(-50%, -50%) scale(1);
    background-color: #5A111E;
    color: #FFFFFF;
    opacity: 1;
}

.reel-video-title {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}
/* --- Showcase Reels Slider Style --- */
.reel-slider-wrapper {
    position: relative;
    padding: 0 45px; /* space for arrows */
}

.reel-slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.reel-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.reel-slider-card {
    flex: 0 0 calc(25% - 15px); /* 4 reels visible on desktop */
    scroll-snap-align: start;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

/* Navigation buttons styling matching the screenshot & category buttons */
.reel-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #D1C7BD;
    color: #1F1A17;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.reel-slider-btn:hover {
    background-color: #5A111E;
    color: #FFFFFF;
    border-color: #5A111E;
    box-shadow: 0 4px 10px rgba(90, 17, 30, 0.2);
}

.reel-slider-btn.prev-btn {
    left: 0;
}

.reel-slider-btn.next-btn {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .reel-slider-card {
        flex: 0 0 calc(33.333% - 13.33px); /* 3 items on tablet */
    }
}

@media (max-width: 768px) {
    .reel-slider-wrapper {
        padding: 0 35px;
    }
    .reel-slider-btn {
        width: 36px;
        height: 36px;
    }
    .reel-slider-card {
        flex: 0 0 calc(50% - 10px); /* 2 items on mobile */
    }
}

/* --- Testimonials Slider Style --- */
.testimonial-slider-wrapper {
    position: relative;
    padding: 0 45px; /* space for arrows */
}

.testimonial-slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-slider-card {
    flex: 0 0 calc(33.333% - 13.33px); /* 3 cards visible on desktop */
    scroll-snap-align: start;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

/* Beautified Testimonial Card */
.testimonial-card {
    background-color: #FFFFFF !important;
    border: 1px solid #EAD5A8 !important;
    border-radius: 12px !important;
    padding: 35px 30px !important;
    box-shadow: 0 8px 24px rgba(90, 17, 30, 0.03) !important;
    transition: all 0.3s ease !important;
    text-align: center;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    border-color: #5A111E !important;
    box-shadow: 0 15px 35px rgba(90, 17, 30, 0.08) !important;
}

.testimonial-stars {
    color: #FFC107 !important;
    font-size: 1.1rem;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 0.95rem !important;
    color: #5C5552 !important;
    font-style: italic !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.testimonial-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #EAD5A8;
}

.testimonial-author-name {
    font-family: var(--font-alt);
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #1F1A17 !important;
}

.testimonial-author-city {
    font-size: 0.8rem !important;
    color: #7E7570 !important;
    font-weight: 500;
}

/* Testimonial navigation buttons styling matching the other sliders */
.testimonial-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #D1C7BD;
    color: #1F1A17;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.testimonial-slider-btn:hover {
    background-color: #5A111E;
    color: #FFFFFF;
    border-color: #5A111E;
    box-shadow: 0 4px 10px rgba(90, 17, 30, 0.2);
}

.testimonial-slider-btn.prev-btn {
    left: 0;
}

.testimonial-slider-btn.next-btn {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .testimonial-slider-card {
        flex: 0 0 calc(50% - 10px); /* 2 items on tablet */
    }
}

@media (max-width: 768px) {
    .testimonial-slider-wrapper {
        padding: 0 35px;
    }
    .testimonial-slider-btn {
        width: 36px;
        height: 36px;
    }
    .testimonial-slider-card {
        flex: 0 0 100%; /* 1 item on mobile */
    }
}

/* --- Premium Mobile Navigation Menu --- */
@media (max-width: 991px) {
    .navbar-row-container {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background-color: transparent !important;
    }
    
    .navbar-collapse {
        background-color: #FFFFFF !important;
        border-radius: 8px !important;
        box-shadow: 0 15px 35px rgba(90, 17, 30, 0.1) !important;
        border: 1px solid #EAD5A8 !important;
        padding: 15px 10px !important;
        margin: 5px 10px 15px 10px !important;
        position: relative;
        z-index: 1000;
        width: calc(100% - 20px);
    }
    
    .navbar-nav {
        align-items: stretch !important;
        gap: 4px !important;
        width: 100%;
    }
    
    .nav-link-new {
        padding: 12px 20px !important;
        border-radius: 6px;
        transition: all 0.2s ease;
        display: block !important;
        text-align: left;
        border-bottom: 1px solid #FAF6EE;
        color: #5A111E !important;
    }
    
    .nav-link-new:hover, 
    .nav-link-new.active {
        background-color: #FAF4E8 !important;
        color: #D4AF37 !important;
    }
    
    .navbar-row-container nav.navbar {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        min-height: 0 !important;
    }

    /* Sub dropdown menus layout on mobile */
    .navbar-nav .dropdown-menu {
        background-color: #FCFAF7 !important;
        border: 1px solid rgba(90, 17, 30, 0.05) !important;
        box-shadow: none !important;
        padding: 8px 15px !important;
        margin-top: 5px !important;
        border-radius: 6px !important;
    }

    .navbar-nav .dropdown-item {
        color: #5A111E !important;
        font-weight: 600 !important;
        font-size: 0.8rem !important;
        padding: 10px 15px !important;
        border-bottom: 1px solid rgba(0,0,0,0.02) !important;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: #FAF4E8 !important;
        color: #D4AF37 !important;
    }
}

/* Styled Toggler Button for light background */
.navbar-toggler {
    border: 1.5px solid rgba(90, 17, 30, 0.25) !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    background-color: #FAF4E8 !important;
    outline: none !important;
    transition: all 0.3s ease;
    margin: 5px auto !important; /* centers toggle button */
    display: block !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(90, 17, 30, 0.12) !important;
}

/* Make standard white bootstrap hamburger dark maroon */
.navbar-toggler-icon {
    filter: invert(15%) sepia(95%) saturate(1996%) hue-rotate(334deg) brightness(81%) contrast(98%) !important;
}

/* Enable dropdown hover on desktop */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        margin-top: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Ensure mobile dropdowns render correctly when clicked */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }
}
