@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap'); /* Royal Font */

:root {
    --primary: #431407; /* Royal Brown */
    --accent: #ea580c;  /* Orange/Gold */
    --dark: #0f172a;    /* Premium Black/Blue */
    --bg: #fff7ed;      /* Cream */
    --white: #ffffff;
    --green: #15803d;
    --amazon-orange: #fea569;
}

body { font-family: 'Inter', sans-serif; background: var(--bg); margin: 0; padding-bottom: 90px; overflow-x: hidden; color: #0F1111; }
a { text-decoration: none; transition: 0.2s; }

/* --- HEADER --- */
.header {
    background: #1a1a1a; /* Pure Black */
    padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid #333;
}

/* PREMIUM GOLD LOGO */
.brand { 
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 900; 
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: flex; align-items: center; gap: 8px; letter-spacing: 1px;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.5);
}
.brand i { font-size: 28px; color: #fcf6ba; -webkit-text-fill-color: #fcf6ba; filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5)); }
.menu-btn { font-size: 26px; color: #d4af37; cursor: pointer; }

/* --- SIDEBAR MENU --- */
.side-menu {
    position: fixed; top: 0; right: 0; height: 100%; width: 280px;
    background: white; z-index: 2000;
    transform: translateX(100%); transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}
.side-menu.active { transform: translateX(0); }
.menu-header { background: #1a1a1a; color: #d4af37; padding: 25px 20px; font-size: 22px; font-weight: 700; display: flex; justify-content: space-between; font-family: 'Playfair Display', serif; }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list a { display: flex; align-items: center; gap: 12px; padding: 16px 20px; color: #333; font-weight: 600; border-bottom: 1px solid #f3f4f6; }
.menu-list i { font-size: 18px; color: var(--accent); }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1500; opacity: 0; visibility: hidden; transition: 0.3s; }
.overlay.active { opacity: 1; visibility: visible; }

/* --- HERO SECTION --- */
.hero { background: white; padding-bottom: 25px; border-radius: 0 0 30px 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; }
.p-img { width: 100%; max-width: 450px; margin: 0 auto; display: block; }
.p-content { text-align: left; padding: 10px 20px; }
.rating { background: #fffbeb; color: #b45309; padding: 6px 12px; border-radius: 50px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.title { font-size: 20px; font-weight: 800; color: var(--primary); margin: 5px 0; line-height: 1.3; }

.price-box { display: flex; align-items: center; gap: 12px; margin: 15px 0; }
.price { font-size: 32px; font-weight: 800; color: var(--accent); }
.mrp { text-decoration: line-through; color: #9ca3af; font-size: 18px; }
.off { background: #dcfce7; color: var(--green); padding: 5px 10px; border-radius: 6px; font-weight: 800; font-size: 13px; }

/* Prepaid Nudge */
.prepaid-alert {
    background: #f0fdf4; border: 1px solid #16a34a; color: #14532d;
    padding: 12px; border-radius: 12px; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 12px; margin-top: 15px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.1);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0% {box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);} 70% {box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);} 100% {box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);} }

/* --- HEALTH & PACK --- */
.health-section { padding: 0 20px; margin: 30px 0; }
.section-head { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.health-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.health-card { background: white; padding: 15px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: center; }
.h-icon { font-size: 28px; display: block; margin-bottom: 5px; }
.h-title { font-weight: 700; font-size: 14px; color: #334155; }

.desc-box { background: white; margin: 20px; padding: 20px; border-radius: 16px; border: 1px solid #e2e8f0; }
.desc-list { list-style: none; padding: 0; margin: 0; }
.desc-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: #334155; font-weight: 500; }
.check-icon { color: var(--green); background: #dcfce7; padding: 2px; border-radius: 50%; }

/* --- TRUST BADGES (Fixed Grid Layout) --- */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns */
    gap: 10px;
    padding: 20px 15px;
    background: #ffffff;
    margin-top: 15px;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    align-items: start;
}
.t-badge { display: flex; flex-direction: column; align-items: center; text-align: center; }
.t-img { width: 50px; height: 50px; object-fit: contain; margin-bottom: 8px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.t-text { font-size: 11px; font-weight: 700; color: #334155; line-height: 1.3; }

/* --- WHY CHOOSE US --- */
.features-container { padding: 0 20px; margin-bottom: 30px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 20px 15px; text-align: center; }
.f-icon { width: 45px; height: 45px; background: #fff7ed; color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 12px; }
.f-title { font-weight: 800; font-size: 14px; color: var(--primary); margin-bottom: 4px; display: block; }
.f-desc { font-size: 11px; color: #666; line-height: 1.4; }

/* --- AMAZON REVIEWS --- */
.review-section { background: white; margin-top: 10px; padding-top: 20px; border-top: 4px solid #f3f4f6; }
.review-card { background: white; padding: 15px 20px; border-bottom: 1px solid #e7e7e7; border-radius: 0; }
.r-profile { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.r-avatar { width: 24px; height: 24px; border-radius: 50%; opacity: 0.6; }
.r-name { font-size: 13px; font-weight: 600; color: #0F1111; }
.r-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.r-stars { color: var(--amazon-orange); font-size: 14px; }
.r-title { font-size: 14px; font-weight: 700; color: #0F1111; }
.r-meta { font-size: 12px; color: #565959; margin-bottom: 5px; }
.r-verified { color: #c45500; font-size: 11px; font-weight: 700; margin-bottom: 8px; display: block; }
.r-body { font-size: 14px; line-height: 1.4; color: #0F1111; margin-bottom: 10px; }
.r-helpful { font-size: 12px; color: #565959; border: 1px solid #d5d9d9; border-radius: 8px; padding: 6px 12px; display: inline-block; cursor: pointer; }
.load-btn { display: block; width: calc(100% - 40px); margin: 20px auto; padding: 12px; background: #fff; border: 1px solid #d5d9d9; border-radius: 8px; font-weight: 500; cursor: pointer; color: #0F1111; box-shadow: 0 2px 5px rgba(213,217,217,.5); }

/* --- FOOTER & STICKY --- */
.premium-footer { background: #1a1a1a; color: #cbd5e1; padding: 50px 20px 120px; margin-top: 40px; border-top-left-radius: 30px; border-top-right-radius: 30px; }
.footer-brand { color: #d4af37; font-size: 28px; margin-bottom: 15px; display: block; font-family: 'Playfair Display', serif; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.f-head { color: white; font-weight: 700; margin-bottom: 15px; display: block; font-size: 15px; }
.f-links a { display: block; color: #94a3b8; margin-bottom: 10px; font-size: 13px; }
.copyright { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 12px; opacity: 0.6; }

.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: white; padding: 12px 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); display: flex; gap: 12px; z-index: 999; }
.btn-cart { flex: 1; background: white; border: 2px solid var(--primary); color: var(--primary); padding: 14px; border-radius: 50px; font-weight: 700; cursor: pointer; }
.btn-buy { flex: 2; background: var(--accent); color: white; border: none; padding: 14px; border-radius: 50px; font-weight: 700; font-size: 16px; box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4); cursor: pointer; }

/* --- EXTRA PAGES STYLING (Add to bottom of style.css) --- */
.page-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 1.7;
    color: #334155;
}
.page-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    font-family: 'Playfair Display', serif;
}
.page-content h3 { font-size: 18px; color: #0f172a; margin-top: 25px; margin-bottom: 10px; font-weight: 700; }
.page-content p { margin-bottom: 15px; font-size: 15px; }
.page-content ul { margin-bottom: 15px; padding-left: 20px; }
.page-content li { margin-bottom: 8px; }

/* Contact Page Specific */
.contact-box { background: #f8fafc; padding: 20px; border-radius: 12px; border: 1px solid #e2e8f0; margin-top: 20px; }
.contact-row { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.c-icon { width: 40px; height: 40px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); box-shadow: 0 2px 5px rgba(0,0,0,0.05); font-size: 20px; flex-shrink: 0;}