/* ============================================
   ROOT VARIABLES & RESET
   ============================================ */
:root {
    --primary-dark: #0a1f1c;
    --primary-green: #0f4c45;
    --accent-gold: #d4af37;
    --text-light: #f5f5f5;
    --text-muted: #a8b2b1;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .brand-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { width: 100%; height: auto; display: block; }

/* ============================================
   NAVIGATION — DESKTOP
   ============================================ */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 31, 28, 0.97);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    gap: 16px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 4px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--accent-gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-gold); }
.nav-links a.active::after { width: 100%; }

.cta-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.cta-btn:hover { background: var(--accent-gold); color: var(--primary-dark); }

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    width: 100%;
    background: rgba(10, 31, 28, 0.99);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.mobile-menu.open {
    max-height: 400px;
    padding: 20px 0 30px;
}

.mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 14px 8%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--accent-gold); background: rgba(212, 175, 55, 0.04); }

.mobile-menu .mobile-cta {
    margin: 20px 8% 0;
    padding: 14px 20px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mobile-menu .mobile-cta:hover { background: var(--accent-gold); color: var(--primary-dark); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Using background-image instead of shorthand to prevent background-size/position reset */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
        url('images/heroBG.png');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-color: var(--primary-dark);
    padding: 0 20px;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.6); }
.hero-content p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; margin-bottom: 40px; color: #ddd; }

/* ============================================
   FEATURED CIRCLES
   ============================================ */
.featured {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    background: radial-gradient(circle at center, #0f4c45 0%, var(--primary-dark) 70%);
}

.circle-card { text-align: center; width: 220px; cursor: pointer; }

.circle-img-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
}

.circle-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.circle-card:hover .circle-img-wrapper { transform: scale(1.05); box-shadow: 0 0 35px rgba(212, 175, 55, 0.35); }
.circle-card:hover .circle-img-wrapper::after { opacity: 1; }
.circle-img-wrapper img { height: 100%; object-fit: cover; }
.circle-title { font-size: 1rem; color: var(--accent-gold); margin-top: 15px; text-transform: uppercase; font-family: 'Cinzel', serif; letter-spacing: 2px; }

/* ============================================
   GRID CATEGORIES
   ============================================ */
.categories { padding: 80px 5%; }

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 15px auto 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #0e2a27;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover { transform: translateY(-10px); border-color: var(--accent-gold); box-shadow: 0 20px 50px rgba(15,76,69,0.4); }

.card-img { height: 320px; overflow: hidden; background: #0e2a27; }
.card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s ease; display: block; }
.product-card:hover .card-img img { transform: scale(1.1); }

.card-info { padding: 25px; text-align: center; }
.card-info h3 { font-size: 1rem; margin-bottom: 8px; color: #fff; font-family: 'Playfair Display', serif; }
.card-info p { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================
   PLACEHOLDER CARDS
   ============================================ */
.placeholder-img {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0e2a27, #0f4c45 120%);
    border: 2px dashed rgba(212, 175, 55, 0.2);
    gap: 14px;
    transition: var(--transition);
    overflow: hidden;
    padding: 0;
}

/* When placeholder holds a real image, make it fill properly */
.placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    /* Remove any inherited flex-centering gaps */
    margin: 0;
    padding: 0;
}

/* When placeholder holds a real image, remove dashed border */
.placeholder-img:has(img) {
    border: none;
    background: #0e2a27;
}

.placeholder-img i { font-size: 2.5rem; color: rgba(212, 175, 55, 0.3); transition: var(--transition); }
.placeholder-img span { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 3px; color: rgba(212, 175, 55, 0.3); text-transform: uppercase; }
.product-card:hover .placeholder-img { border-color: rgba(212, 175, 55, 0.55); }
.product-card:hover .placeholder-img i { color: rgba(212, 175, 55, 0.7); }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 150px 5% 80px;
    text-align: center;
    background: radial-gradient(ellipse at top, #0f4c45 0%, var(--primary-dark) 65%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.07);
    pointer-events: none;
}

.page-header h1 { font-size: 3rem; margin-bottom: 16px; }
.page-header p { font-family: 'Playfair Display', serif; font-style: italic; color: var(--text-muted); font-size: 1.05rem; }
.gold-line { width: 80px; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-gold), transparent); margin: 18px auto; }

/* ============================================
   EVENT BANNER
   ============================================ */
.event-banner {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.banner-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.4);
    transform: scale(1.1);
}

.poster-wrapper {
    position: relative;
    z-index: 5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: floatingPulse 3s infinite ease-in-out;
    box-shadow: 0 0 30px rgba(15, 76, 69, 0.5);
}

.poster-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

.highlight-poster { display: block; max-height: 480px; width: auto; transition: transform 0.5s ease; }
.poster-wrapper:hover .highlight-poster { transform: scale(1.03); }

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    background: var(--primary-green);
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item { text-align: center; color: #fff; min-width: 160px; }
.feature-icon { font-size: 2rem; color: var(--accent-gold); margin-bottom: 10px; display: block; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content { max-width: 1100px; margin: 0 auto; padding: 80px 5%; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-grid img {
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}
.about-grid img:hover { border-color: var(--accent-gold); box-shadow: 0 0 50px rgba(212, 175, 55, 0.2); }
.about-text h2 { font-size: 2.2rem; margin-bottom: 25px; }
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; font-size: 1rem; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item h4 { color: var(--accent-gold); font-family: 'Cinzel', serif; margin-bottom: 5px; font-size: 0.85rem; letter-spacing: 2px; }
.stat-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.info-stack { display: flex; flex-direction: column; gap: 24px; }

.info-card {
    background: linear-gradient(135deg, #0e2a27, #080808);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.info-card:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateX(6px); }
.info-card:hover::before { transform: scaleY(1); }
.info-card-icon { font-size: 1.4rem; color: var(--accent-gold); margin-bottom: 14px; }
.info-card h3 { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 3px; color: var(--accent-gold); text-transform: uppercase; margin-bottom: 10px; }
.info-card p, .info-card a { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.info-card a:hover { color: var(--accent-gold); }

.timings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-top: 6px; }
.timing-day { color: var(--text-muted); font-size: 0.85rem; }
.timing-time { color: var(--text-light); font-size: 0.85rem; }

.open-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    font-size: 0.68rem;
    letter-spacing: 2px;
    padding: 3px 10px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.social-row { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}
.social-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

.map-panel { position: sticky; top: 100px; }
.map-label { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 4px; color: var(--accent-gold); text-transform: uppercase; margin-bottom: 16px; opacity: 0.7; }

.map-frame-wrapper {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.map-frame-wrapper iframe { display: block; width: 100%; height: 440px; border: 0; filter: grayscale(30%) brightness(0.85) contrast(1.1); transition: filter 0.4s ease; }
.map-frame-wrapper:hover iframe { filter: grayscale(0%) brightness(1) contrast(1); }

.map-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 16px;
    background: var(--primary-green);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}
.map-cta:hover { background: var(--accent-gold); color: var(--primary-dark); }

.contact-strip {
    background: linear-gradient(90deg, #080808, #0f4c45, #080808);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 5%;
    text-align: center;
}

.contact-strip p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--text-muted); margin-bottom: 24px; }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid #25d366;
    color: #25d366;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}
.whatsapp-btn:hover { background: #25d366; color: #000; }

/* ============================================
   ORNAMENTS PAGE — CTA STRIP
   ============================================ */
.ornament-cta {
    background: linear-gradient(90deg, #080808, #0f4c45, #080808);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 5%;
    text-align: center;
}

.ornament-cta p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.ornament-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================================
   GIFTING PAGE EXTRAS
   ============================================ */
.occasions-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 60px 5% 20px;
    background: radial-gradient(circle at center, #0f4c45 0%, var(--primary-dark) 70%);
}

.occasion-tag {
    padding: 10px 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.occasion-tag:hover, .occasion-tag.active { background: rgba(212, 175, 55, 0.1); border-color: var(--accent-gold); color: var(--accent-gold); }

.why-silver {
    background: linear-gradient(135deg, #080808, #0f4c45);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 80px 5%;
    text-align: center;
}

.why-silver h2 { font-size: 2rem; margin-bottom: 16px; }
.why-silver p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto 50px; font-family: 'Playfair Display', serif; font-style: italic; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }

.why-item {
    padding: 30px 20px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(8, 8, 8, 0.6);
    transition: var(--transition);
}
.why-item:hover { border-color: var(--accent-gold); transform: translateY(-6px); }
.why-item i { font-size: 2rem; color: var(--accent-gold); margin-bottom: 16px; display: block; }
.why-item h4 { font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 2px; color: var(--text-light); margin-bottom: 8px; }
.why-item p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

.gift-cta { text-align: center; padding: 80px 5%; background: var(--primary-dark); }
.gift-cta h2 { font-size: 2rem; margin-bottom: 16px; }
.gift-cta p { color: var(--text-muted); font-family: 'Playfair Display', serif; font-style: italic; margin-bottom: 40px; font-size: 1.05rem; }
.gift-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-gold { padding: 16px 36px; background: var(--accent-gold); color: var(--primary-dark); font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); }
.btn-gold:hover { background: #c9a227; }

.btn-outline { padding: 16px 36px; background: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); display: flex; align-items: center; gap: 10px; }
.btn-outline:hover { background: var(--accent-gold); color: var(--primary-dark); }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #000000;
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: #888;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-col h4 { color: #fff; margin-bottom: 20px; font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 2px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent-gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes shimmer {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

@keyframes floatingPulse {
    0% { transform: translateY(0px); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
    50% { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(15,76,69,0.6), 0 0 20px rgba(212,175,55,0.1); }
    100% { transform: translateY(0px); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .map-panel { position: static; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .cta-btn { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .logo { font-size: 0.9rem; letter-spacing: 1px; }

    .hero-content h1 { font-size: 2rem; letter-spacing: 1px; }
    .hero-content p { font-size: 1.1rem; }

    /* Poster sized to fit screen with badges visible below */
    .event-banner { height: auto; min-height: unset; padding: 18px 0; }
    .poster-wrapper { width: 100%; border-radius: 0; border-left: none; border-right: none; }
    .highlight-poster { width: 100%; max-height: 55vh; object-fit: cover; }

    /* Push rate badges down slightly below the poster */
    .rate-badges-section { margin-top: 12px; }

    .page-header { padding: 120px 5% 60px; }
    .page-header h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.6rem; }

    .featured { gap: 30px; padding: 60px 5%; }
    .circle-card { width: 140px; }
    .circle-img-wrapper { width: 140px; height: 140px; }

    .grid-container { grid-template-columns: 1fr; gap: 20px; }
    .categories { padding: 50px 5%; }

    .about-grid { grid-template-columns: 1fr; }
    .about-content { padding: 50px 5%; }
    .about-stats { grid-template-columns: 1fr 1fr; }

    .contact-wrapper { padding: 50px 5%; gap: 30px; }
    .map-frame-wrapper iframe { height: 300px; }

    .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
}

@media (max-width: 400px) {
    .logo { font-size: 0.75rem; }
    .hero-content h1 { font-size: 1.6rem; }
    .circle-card { width: 110px; }
    .circle-img-wrapper { width: 110px; height: 110px; }
}

/* ============================================
   VISITOR COUNTER
   ============================================ */
.visitor-counter {
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
}

.counter-inner {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #0e2a27, #0a1f1c);
    position: relative;
    overflow: hidden;
}

.counter-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.04), transparent);
    animation: counterShimmer 3s infinite;
}

@keyframes counterShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.counter-icon {
    font-size: 1.6rem;
    color: #d4af37;
    opacity: 0.7;
}

.counter-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.counter-number {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #d4af37;
    letter-spacing: 3px;
    line-height: 1;
    font-weight: 700;
}

.counter-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: #666;
    text-transform: uppercase;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .counter-inner { padding: 14px 28px; }
    .counter-number { font-size: 1.4rem; }
}

/* ============================================
   SILVER RATE BAR
   ============================================ */
.silver-rate-bar {
    width: 100%;
    background: linear-gradient(90deg, #0a1f1c, #0f4c45, #0a1f1c);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 18px 5%;
}

.silver-rate-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.silver-rate-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.silver-icon {
    font-size: 1.4rem;
    color: #d4af37;
    opacity: 0.85;
}

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

.silver-rate-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: #a8b2b1;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.silver-rate-value {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #d4af37;
    letter-spacing: 2px;
    font-weight: 700;
}

.silver-rate-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
}

#silverRatePerGram {
    display: inline-block;
    animation: ratePulse 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .silver-rate-inner { gap: 20px; }
    .silver-rate-divider { display: none; }
    .silver-rate-value { font-size: 0.85rem; }
    .silver-rate-inner { justify-content: flex-start; }
}

/* ============================================
   RATE BADGES — SILVER & GOLD SIDE BY SIDE
   ============================================ */
.rate-badges-section {
    width: 100%;
    background: linear-gradient(180deg, #0a1f1c 0%, #0a1f1c 100%);
    padding: 28px 5%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.rate-badge-container {
    perspective: 1000px;
    flex: 1;
    max-width: 320px;
    min-width: 240px;
}

/* ── BASE CARD ── */
.rate-card {
    position: relative;
    padding: 20px 30px;
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rate-card:hover {
    transform: translateY(-6px) rotateX(4deg);
}

/* ── SILVER CARD ── */
.silver-rate-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 40%, #888 55%, #3a3a3a 70%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: silverShift 6s ease infinite;
    border: 1px solid rgba(200, 200, 200, 0.4);
    box-shadow:
        0 0 30px rgba(192,192,192,0.15),
        0 15px 40px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

.silver-rate-card:hover {
    box-shadow:
        0 0 50px rgba(192,192,192,0.3),
        0 25px 60px rgba(0,0,0,0.8);
}

@keyframes silverShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── GOLD CARD ── */
.gold-rate-card {
    background: linear-gradient(135deg, #1a0f00 0%, #3d2200 40%, #c8860a 55%, #3d2200 70%, #1a0f00 100%);
    background-size: 200% 200%;
    animation: goldShift 6s ease infinite;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow:
        0 0 30px rgba(212,175,55,0.2),
        0 15px 40px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,220,80,0.2);
}

.gold-rate-card:hover {
    box-shadow:
        0 0 50px rgba(212,175,55,0.4),
        0 25px 60px rgba(0,0,0,0.8);
}

@keyframes goldShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── SHIMMER ── */
.rate-shimmer {
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.18) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: rateSweep 4s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes rateSweep {
    0%   { left: -150%; }
    30%  { left: 160%; }
    100% { left: 160%; }
}

/* ── GLOW RING ── */
.rate-glow-ring {
    position: absolute;
    inset: -1px;
    border-radius: 4px;
    border: 1px solid rgba(200, 200, 200, 0.25);
    pointer-events: none;
    animation: ringPulse 2.5s ease-in-out infinite;
    z-index: 0;
}

.gold-ring {
    border-color: rgba(212, 175, 55, 0.35);
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.2; }
    50%       { opacity: 0.9; }
}

/* ── LABEL ── */
.rate-card-label {
    position: relative;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    /* Solid dark background behind text so shimmer doesn't wash it out */
    background: rgba(0,0,0,0.55);
    padding: 3px 10px;
    border-radius: 2px;
    color: #e0e0e0;
    white-space: nowrap;
}

.gold-label {
    color: #ffe08a;
}

/* ── PRICE ROW ── */
.rate-price-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin: 4px 0;
}

.rate-currency {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px rgba(200,200,200,0.6);
}

.rate-price {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 3px;
    text-shadow:
        0 0 20px rgba(220,220,220,0.9),
        0 0 40px rgba(200,200,200,0.4),
        2px 2px 0 rgba(0,0,0,0.6);
}

.rate-unit {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: rgba(210,210,210,0.7);
    letter-spacing: 2px;
    padding-bottom: 5px;
}

/* Gold overrides */
.gold-currency {
    text-shadow: 0 0 15px rgba(212,175,55,0.7);
}

.gold-price {
    text-shadow:
        0 0 20px rgba(255,200,50,1),
        0 0 40px rgba(212,175,55,0.5),
        2px 2px 0 rgba(0,0,0,0.6);
}

.gold-unit {
    color: rgba(255,200,80,0.7);
}

/* ── FOOTER ── */
.rate-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 2px;
}

.rate-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.silver-dot {
    background: #aaa;
    box-shadow: 0 0 8px #ccc;
    animation: silvDotPulse 2s infinite;
}

.gold-dot {
    background: #f0b429;
    box-shadow: 0 0 8px #d4af37;
    animation: goldDotPulse 2s infinite;
}

@keyframes silvDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: 0.5; }
}

@keyframes goldDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: 0.5; }
}

.rate-updated {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    color: rgba(210, 210, 210, 0.6);
    letter-spacing: 0.5px;
}

.gold-updated {
    color: rgba(255, 200, 80, 0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    /* Keep both rate badges side by side */
    .rate-badges-section { flex-direction: row; align-items: stretch; gap: 8px; padding: 10px 3%; }
    .rate-badge-container { max-width: 50%; min-width: 0; flex: 1; }
    .rate-card { padding: 10px 8px; gap: 3px; }
    .rate-price { font-size: 1.35rem; letter-spacing: 1px; }
    .rate-card-label { font-size: 0.44rem; letter-spacing: 1px; padding: 2px 5px; }
    .rate-currency { font-size: 0.85rem; }
    .rate-unit { font-size: 0.58rem; }
    .rate-updated { font-size: 0.5rem; }
    .rate-live-dot { width: 5px; height: 5px; }
}

/* ============================================
   IMAGE FIT FIXES — Global
   ============================================ */

/* About page image fills its grid cell */
.about-grid > div:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

/* Circle images on homepage fill their circular wrapper */
.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover zoom still works for placeholder-contained images */
.product-card:hover .placeholder-img img {
    transform: scale(1.1);
    transition: transform 0.6s ease;
}
