/* ==========================================================================
   SM JEWELS MADURAI — Premium Style System
   Theme: Luxury Showroom (White background, Premium Gold Accents)
   Fonts: Playfair Display (Headers), Montserrat / Inter (Body)
   ========================================================================== */

/* ── Core Design Tokens ── */
:root {
    --bg-primary: #FCFAF6;
    --bg-secondary: #FAF6EE;
    --color-gold: #C5A85C;
    --color-gold-hover: #B3923C;
    --color-gold-light: #F4EEDC;
    --color-dark: #1E1D19;
    --color-dark-light: #2C2A24;
    --color-text-dark: #2B2A27;
    --color-text-light: #FFFFFF;
    --color-text-gray: #78756F;
    --color-border: #E8E2D5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(197, 168, 92, 0.08);
    --shadow-md: 0 10px 15px -3px rgba(197, 168, 92, 0.12), 0 4px 6px -2px rgba(197, 168, 92, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(197, 168, 92, 0.15);
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Reset & Base Styles ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--color-text-dark);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Sticky Top Gold Ticker ── */
.ticker-wrapper {
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-light));
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--color-gold);
    display: flex;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
}

.ticker-item i {
    color: var(--color-gold);
    margin-right: 8px;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ── Header Top Utility Bar ── */
.header-top-bar {
    background: #fcfaf6;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-left a:hover {
    color: var(--color-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right a {
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: #25D366; /* WhatsApp green */
}

.top-bar-right .separator {
    color: #ccc;
}

/* ── Header & Navigation ── */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header-main {
    border-bottom: 1px solid var(--color-border);
    background: #ffffff;
}

.header-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-box {
    background: linear-gradient(135deg, var(--color-dark), var(--color-gold));
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.logo-letters {
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-info h1 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark);
}

.brand-info p {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-top: 2px;
}

/* Bluestone-style Search Bar */
.header-search-container {
    flex-grow: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    height: 38px;
    transition: var(--transition);
}

.header-search-container:focus-within {
    border-color: var(--color-gold);
    box-shadow: 0 0 5px rgba(197, 168, 92, 0.2);
}

.header-search-container input {
    width: 100%;
    border: none;
    padding: 0 15px;
    font-size: 0.85rem;
    outline: none;
    background: transparent;
    height: 100%;
}

.header-search-container .search-btn {
    background: #f65e4e; /* Coral color matching Bluestone */
    border: none;
    color: #ffffff;
    padding: 0 20px;
    cursor: pointer;
    font-size: 0.9rem;
    height: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-container .search-btn:hover {
    background: #ec5345;
}

/* Utility Links */
.header-utilities {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.utility-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    gap: 4px;
    position: relative;
}

.utility-link i {
    font-size: 1.2rem;
    color: #444;
    transition: var(--transition);
}

.utility-link:hover {
    color: var(--color-gold);
}

.utility-link:hover i {
    color: var(--color-gold);
}

.cart-link i {
    color: #25D366; /* WhatsApp Green */
}

.cart-link:hover i {
    color: #128C7E;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #f65e4e;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sub-navigation Row (Dark Menu) */
.sub-nav-bar {
    background: #0f2942; /* Dark Blue */
    padding: 0 20px;
}

.sub-nav-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sub-nav-bar .nav-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.sub-nav-bar .nav-links a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.sub-nav-bar .nav-links a i {
    font-size: 0.6rem;
    opacity: 0.7;
    margin-top: 1px;
}

.sub-nav-bar .nav-links a:hover {
    color: var(--color-gold);
}

.sub-nav-bar .nav-links a.offers-link {
    margin-left: auto;
    color: #ffcc00;
    font-weight: 700;
}

.sub-nav-bar .nav-links a.offers-link:hover {
    color: #ffffff;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
}

.lang-btn {
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    background: transparent;
    cursor: pointer;
}

.lang-btn.active {
    background: var(--color-gold);
    color: var(--color-text-light);
}

.lang-btn:hover:not(.active) {
    background: var(--color-gold-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.35rem;
    color: var(--color-dark);
    background: transparent;
    border: none;
    cursor: pointer;
}

/* ── Layout & Sections ── */
section {
    padding: 80px 20px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 8px;
}

.section-title h3 {
    font-size: 2.2rem;
    color: var(--color-dark);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-gold);
}

/* ── Hero Banner ── */
.hero {
    padding: 0;
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-color: var(--color-dark);
    background-image: url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0?q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 29, 25, 0.9) 30%, rgba(30, 29, 25, 0.4) 100%);
    z-index: 1;
}

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

.hero-content .sub-hero {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 4rem;
    color: var(--color-text-light);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #CCC;
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-btn.primary {
    background: var(--color-gold);
    color: var(--color-text-light);
    border: 1px solid var(--color-gold);
}

.cta-btn.primary:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
}

.cta-btn.secondary:hover {
    background: var(--color-text-light);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.cta-btn.whatsapp {
    background: #25D366;
    color: var(--color-text-light);
    border: 1px solid #25D366;
    gap: 8px;
}

.cta-btn.whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

/* ── Live Rates Section ── */
.bullion-board-section {
    background: var(--bg-secondary);
    padding: 40px 20px;
    border-bottom: 1px solid var(--color-border);
}

.board-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.board-header {
    background: var(--color-dark);
    color: var(--color-text-light);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.board-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.board-title i {
    color: var(--color-gold);
}

.board-status {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #4CAF50;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.board-status.offline {
    color: #F44336;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px currentColor;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-border);
}

.rate-cell {
    padding: 25px;
    text-align: center;
    border-right: 1px solid var(--color-border);
    transition: var(--transition);
}

.rate-cell:last-child {
    border-right: none;
}

.rate-cell:hover {
    background: var(--bg-secondary);
}

.rate-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.rate-val {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.rate-meta {
    padding: 12px 25px;
    background: var(--bg-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-text-gray);
    font-weight: 600;
}

/* ── Collections ── */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.collection-card {
    background: var(--bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.coll-img-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-secondary);
}

.coll-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover .coll-img-wrap img {
    transform: scale(1.1);
}

.coll-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.coll-info h4 {
    font-size: 1.15rem;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.coll-info p {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 15px;
}

.coll-btn {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    align-self: center;
}

.collection-card:hover .coll-btn {
    color: var(--color-dark);
    border-bottom-color: var(--color-dark);
}

/* ── Why Choose Us ── */
.why-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 20px;
}

.why-icon {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.8rem;
    color: var(--color-text-gray);
}

/* ── Interactive Lookbook / Featured ── */
.catalogue-container {
    max-width: 1200px;
    margin: 0 auto;
}

.catalogue-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex-grow: 1;
    max-width: 500px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-sm);
}

.catalogue-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-gray);
    text-transform: uppercase;
}

.filter-group select {
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:focus {
    border-color: var(--color-gold);
}

.catalogue-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.img-container {
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-secondary);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 29, 25, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.zoom-overlay i {
    color: var(--color-text-light);
    font-size: 1.5rem;
    border: 1px solid var(--color-text-light);
    padding: 15px;
    border-radius: 50%;
}

.img-container:hover .zoom-overlay {
    opacity: 1;
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold);
    color: var(--color-text-light);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.brand-line {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-info h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.product-info .description {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 15px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
}

.weight {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-dark);
}

.enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enquire-btn:hover {
    background: var(--color-gold);
    color: var(--color-text-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.nav-btn {
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 1px;
    border-radius: 4px;
}

.nav-btn:hover:not(:disabled) {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 6px;
}

.page-numbers .nav-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-text-light);
}

/* ── Bridal Wedding Section ── */
.bridal-section {
    background-color: var(--color-dark);
    background-image: url('https://images.unsplash.com/photo-1610030469983-98e550d6193c?q=80&w=1600');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.bridal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 29, 25, 0.85);
    z-index: 1;
}

.bridal-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-light);
}

.bridal-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.bridal-container h3 {
    font-size: 2.8rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.bridal-container p {
    font-size: 1rem;
    color: #DDD;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.bridal-items-wrap {
    display: flex;
    justify-content: center;
    gap: 15px 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.bridal-items-wrap span i {
    margin-right: 6px;
}

/* ── Customer Reviews ── */
.reviews-section {
    background: var(--bg-secondary);
}

.review-slider-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 30px;
    text-align: center;
    background: var(--bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.reviewer-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    transition: var(--transition);
}

.slider-arrow:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ── About Us Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 25px;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-bullet-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.about-bullet-item h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.about-bullet-item p {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    margin-bottom: 0;
}

.about-img-frame {
    position: relative;
    border: 1px solid var(--color-gold);
    padding: 15px;
    border-radius: 8px;
}

.about-img-frame img {
    border-radius: 4px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ── Contact Section ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

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

.contact-block h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
}

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

.contact-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.map-container {
    height: 100%;
    min-height: 350px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
}

/* ── Footer ── */
footer {
    background: var(--color-dark);
    color: var(--color-text-light);
    border-top: 2px solid var(--color-gold);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}

.footer-logo h2 {
    color: var(--color-text-light);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
}

.footer-links h5 {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: #AAA;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    background: #141311;
    border-top: 1px solid #2B2A27;
    padding: 20px;
}

.footer-bottom-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.75rem;
    color: #777;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

/* ── Sticky floater buttons & actions ── */
.sticky-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.sticky-btn.wa {
    background: #25D366;
}

.sticky-btn.wa:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.sticky-btn.call-mobile {
    background: var(--color-gold);
    display: none; /* Only mobile */
}

.sticky-btn.call-mobile:hover {
    background: var(--color-gold-hover);
    transform: scale(1.1);
}

.sticky-btn.back-to-top {
    background: var(--color-dark);
    font-size: 1.1rem;
    transform: scale(0);
    opacity: 0;
}

.sticky-btn.back-to-top.show {
    transform: scale(1);
    opacity: 1;
}

.sticky-btn.back-to-top:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

/* ── Intelligent AI Chatbot interface ── */
.chatbot-bubble {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-dark), var(--color-gold));
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(197, 168, 92, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}

.chatbot-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(197, 168, 92, 0.6);
}

.chatbot-bubble .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #FF3B30;
    color: white;
    font-size: 0.65rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 550px;
    max-height: calc(100vh - 120px);
    background: var(--bg-primary);
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-window.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    background: var(--color-dark);
    color: var(--color-text-light);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--color-gold);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-bot-avatar {
    width: 32px;
    height: 32px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
}

.chat-header-info h4 {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 700;
}

.chat-header-info p {
    font-size: 0.65rem;
    color: #AAA;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-header-actions {
    display: flex;
    gap: 12px;
    font-size: 1.1rem;
    color: #AAA;
}

.chat-header-actions i:hover {
    color: var(--color-gold);
    cursor: pointer;
}

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--bg-secondary);
}

.chat-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    position: relative;
}

.chat-msg.bot {
    background: var(--bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.chat-msg.user {
    background: var(--color-gold);
    color: var(--color-text-light);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chat-msg-time {
    font-size: 0.6rem;
    color: var(--color-text-gray);
    margin-top: 4px;
    display: block;
    text-align: right;
}

.chat-msg.user .chat-msg-time {
    color: var(--color-gold-light);
}

.msg-copy-btn {
    position: absolute;
    top: 5px;
    right: -25px;
    font-size: 0.75rem;
    color: var(--color-text-gray);
    opacity: 0;
    transition: var(--transition);
}

.chat-msg:hover .msg-copy-btn {
    opacity: 1;
}

/* Chat suggestions chips */
.chat-suggestions {
    padding: 10px 15px;
    background: var(--bg-primary);
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
}

.chat-suggestions::-webkit-scrollbar {
    height: 4px;
}

.chat-suggestions::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

.suggestion-chip {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition);
}

.suggestion-chip:hover {
    border-color: var(--color-gold);
    background: var(--color-gold-light);
    color: var(--color-gold-hover);
}

/* Chat Input Bar */
.chat-input-area {
    padding: 15px;
    background: var(--bg-primary);
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
    transition: var(--transition);
}

.chat-input-area input:focus {
    border-color: var(--color-gold);
}

.chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.chat-send-btn:hover {
    background: var(--color-gold-hover);
}

/* Typing Indicator Animation */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 6px;
    align-items: center;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.handoff-btn-container {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.handoff-chat-btn {
    flex: 1;
    padding: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: white;
}

.handoff-chat-btn.phone { background-color: var(--color-gold); }
.handoff-chat-btn.wa { background-color: #25D366; }

/* ── Responsive Media Queries ── */
@media (max-width: 1024px) {
    .hero-content h2 { font-size: 3.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-img-frame img { height: 320px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    section { padding: 50px 15px; }
    .section-title h3 { font-size: 1.8rem; }
    
    /* Navigation Redesign for Mobile */
    .header-top-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .header-main-container {
        flex-wrap: wrap;
        padding: 10px 15px;
        gap: 15px;
    }
    
    .logo-container {
        order: 1;
    }
    
    .header-utilities {
        order: 2;
        margin-left: auto;
        gap: 15px;
    }
    
    .utility-link .utility-text {
        display: none; /* Hide text under icons on mobile */
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
        margin-left: 5px;
    }
    
    .header-search-container {
        order: 4;
        width: 100%;
        max-width: 100%;
        margin-top: 5px;
    }
    
    .sub-nav-bar {
        display: none;
        width: 100%;
        background: #0f2942;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    }
    
    .sub-nav-bar.open {
        display: block;
    }
    
    .sub-nav-bar .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        display: flex;
    }
    
    .sub-nav-bar .nav-links a {
        width: 100%;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 0.85rem;
        color: #ffffff;
    }
    
    .sub-nav-bar .nav-links a.offers-link {
        margin-left: 0;
    }
    
    .logo-box { width: 40px; height: 40px; }
    .brand-info h1 { font-size: 1.2rem; }
    .brand-info p { font-size: 0.55rem; }
    
    /* Hero */
    .hero { height: 75vh; }
    .hero-content { padding: 0 20px; }
    .hero-content h2 { font-size: 2.4rem; }
    .hero-content p { font-size: 0.95rem; }
    
    /* Bullion Board */
    .board-grid { grid-template-columns: 1fr 1fr; }
    .rate-cell { padding: 15px; border-bottom: 1px solid var(--color-border); }
    .rate-cell:nth-child(2) { border-right: none; }
    .rate-cell:nth-child(3) { border-bottom: none; }
    .rate-cell:nth-child(4) { border-bottom: none; border-right: none; }
    
    /* Bridal */
    .bridal-container h3 { font-size: 2rem; }
    
    /* About */
    .about-bullets { grid-template-columns: 1fr; }
    
    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-wrap { flex-direction: column; text-align: center; }
    
    /* Sticky Actions */
    .sticky-btn.call-mobile { display: flex; }
    .chatbot-bubble { right: 20px; bottom: 100px; }
    .chat-window { width: calc(100vw - 40px); right: 20px; height: 480px; }
}

@media (max-width: 480px) {
    .board-grid { grid-template-columns: 1fr; }
    .rate-cell { border-right: none; }
    .rate-cell:nth-child(3) { border-bottom: 1px solid var(--color-border); }
    .hero-btns { flex-direction: column; gap: 12px; }
    .cta-btn { width: 100%; }
}