/* --- Variables & Reset --- */
:root {
    /* Color Palette - Saffron, Gold, and Earth Tones */
    --primary: #B7410E;       /* Deep Saffron/Rust */
    --primary-dark: #8B2E06;
    --secondary: #D4AF37;     /* Temple Gold */
    --bg-body: #FDFBF7;       /* Off-white/Cream */
    --bg-alt: #F5F0E6;        /* Sandalwood Beige */
    --text-dark: #2C2420;     /* Dark Charcoal */
    --text-light: #6D6460;
    --white: #FFFFFF;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Utility Classes --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    width: 100%;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* --- Header --- */
.site-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo i { font-size: 1.8rem; }

.main-nav a {
    margin-left: 30px;
    font-weight: 500;
    color: var(--text-dark);
}
.main-nav a:hover { color: var(--primary); }

.cart-badge {
    background: var(--primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 5px;
    vertical-align: middle;
}

/* --- Hero Section --- */
.hero {
    /* Generic Temple/Diya Background Image */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1517840134015-4e7826227443?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary); /* Gold Text */
    line-height: 1.2;
}
.hero p { font-size: 1.2rem; opacity: 0.9; }

/* --- Grid & Product Cards --- */
.section { padding: 60px 0; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #eee;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

.p-img { height: 250px; overflow: hidden; background: #f9f9f9; }
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .p-img img { transform: scale(1.05); }

.p-info { padding: 20px; }
.p-info h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-dark); min-height: 50px; }
.price { color: var(--primary); font-weight: 700; font-size: 1.2rem; margin-bottom: 15px; }

/* --- Product Details Page --- */
.product-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px auto;
}

.product-gallery img { width: 100%; border-radius: var(--radius); }

.p-price-box {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 20px 0;
}

/* --- Cart Page --- */
.cart-items-container { margin-top: 20px; }

.cart-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
}

.c-details { flex: 1; }
.remove-btn {
    color: #D32F2F;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Footer --- */
footer {
    background: #1A120F; /* Very dark brown */
    color: #ccc;
    padding: 50px 0 20px 0;
    text-align: center;
    margin-top: 80px;
}

.logo.light { color: var(--secondary); font-size: 1.8rem; }
.footer-col p { opacity: 0.8; }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-wrapper { flex-direction: column; gap: 15px; }
    .main-nav { display: flex; gap: 20px; font-size: 0.9rem; }
    .main-nav a { margin-left: 0; }
    
    .hero h1 { font-size: 2rem; }
    
    .product-page-layout { grid-template-columns: 1fr; }
    
    .cart-item { flex-direction: column; align-items: flex-start; }
    .cart-item img { margin-bottom: 15px; }
    .c-details { margin-bottom: 15px; width: 100%; }
}

/* --- Variables & Reset --- */
:root {
    /* Color Palette */
    --primary: #B7410E;       /* Deep Saffron/Rust */
    --primary-dark: #8B2E06;
    --secondary: #D4AF37;     /* Temple Gold */
    --bg-body: #FDFBF7;       /* Off-white/Cream */
    --bg-alt: #F5F0E6;        /* Sandalwood Beige */
    --text-dark: #2C2420;     /* Dark Charcoal */
    --text-light: #6D6460;
    --white: #FFFFFF;
    
    /* Spacing & Layout */
    --container-width: 1280px;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(183, 65, 14, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; }

/* --- Utility Classes --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 60px 0; }
.bg-alt { background-color: var(--bg-alt); }

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}
.btn-primary:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); }

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 10px;
}
.btn-secondary:hover { background-color: var(--white); color: var(--primary); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 100%;
    border-radius: 8px;
    padding: 10px;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* --- Header --- */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--primary);
}
.logo i { font-size: 1.8rem; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 20px; }

.search-bar {
    position: relative;
    background: var(--bg-body);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid #E0E0E0;
    width: 250px;
}
.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 85%;
    font-size: 0.9rem;
}
.search-bar i { color: var(--text-light); }

.cart-icon { position: relative; font-size: 1.5rem; }
.cart-icon .badge {
    position: absolute;
    top: -5px; right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lato', sans-serif;
}

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer;}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1517840134015-4e7826227443?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(44, 36, 32, 0.9) 0%, rgba(44, 36, 32, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: #FFD700; /* Gold text */ }
.hero p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- Categories --- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary-dark); }
.divider { color: var(--secondary); font-size: 1.5rem; margin-top: 10px; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cat-card {
    text-align: center;
    cursor: pointer;
}
.cat-card .img-wrapper {
    overflow: hidden;
    border-radius: var(--radius);
    height: 300px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}
.cat-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card h3 { font-size: 1.2rem; color: var(--text-dark); }

/* --- Featured Products --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.p-img { position: relative; height: 250px; background: #f9f9f9; }
.p-img img { height: 100%; object-fit: contain; padding: 20px; }

.tag {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}
.tag.new { background: #4CAF50; }

.p-info { padding: 20px; }
.p-info h3 { font-size: 1.1rem; margin-bottom: 5px; height: 48px; } /* Fixed height for alignment */
.rating { color: #FFC107; font-size: 0.9rem; margin-bottom: 10px; }
.review-count { color: var(--text-light); font-size: 0.8rem; }
.price { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; }

/* --- Trust Section --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.trust-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.trust-item h4 { font-size: 1.1rem; margin-bottom: 5px; }
.trust-item p { font-size: 0.9rem; color: var(--text-light); }

/* --- Footer --- */
footer {
    background: #1A120F; /* Very dark brown */
    color: #CCC;
    padding-top: 60px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}
.footer-col h4 { color: var(--white); margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--secondary); padding-left: 5px; }
.quote { font-style: italic; margin: 20px 0; color: var(--secondary);text-align: left; }
.socials { display: flex; gap: 15px; font-size: 1.2rem; }
.copyright { text-align: center; padding: 20px 0; font-size: 0.9rem; }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .main-nav, .search-bar { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .nav-actions { gap: 10px; }
    .container { padding: 0 15px; }
}

/* --- Shop By Deity --- */
.deity-nav { background: #fff; padding: 50px 0; }
.deity-scroll {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.deity-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}
.deity-item:hover { transform: translateY(-10px); }

.circle-frame {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary); /* Gold Border */
    padding: 3px; /* Gap between border and image */
    margin-bottom: 10px;
}
.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.deity-item span {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-dark);
}

/* --- Festival Banner --- */
.festival-banner {
    background: linear-gradient(135deg, #8B2E06 0%, #B7410E 100%);
    color: var(--white);
    padding: 60px 0;
    margin: 40px 0;
}
.festival-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.upcoming-tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.f-text h2 { margin: 10px 0; font-size: 2.5rem; color: #FFD700; }
.f-timer { display: flex; align-items: center; gap: 20px; }
.time-box { text-align: center; }
.time-box .num { font-size: 2.5rem; font-weight: 700; display: block; line-height: 1; }
.time-box .label { font-size: 0.8rem; opacity: 0.8; }
.colon { font-size: 2rem; padding-bottom: 15px; }

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img { height: 400px; background: #f5f5f5; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-details { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.close-modal {
    position: absolute;
    top: 15px; right: 15px;
    background: none; border: none;
    font-size: 1.5rem; cursor: pointer;
    z-index: 10;
}

/* Quantity Selector in Modal */
.qty-selector {
    display: flex;
    border: 1px solid #ddd;
    width: 120px;
    border-radius: 5px;
    margin: 20px 0;
}
.qty-selector button { width: 35px; background: none; border: none; cursor: pointer; font-size: 1.2rem; }
.qty-selector input { width: 50px; text-align: center; border: none; outline: none; }

/* Mobile fixes for new sections */
@media (max-width: 768px) {
    .festival-content { text-align: center; justify-content: center; gap: 30px; }
    .f-timer { width: 100%; justify-content: center; }
    .modal-body { grid-template-columns: 1fr; }
    .modal-img { height: 250px; }
    .modal-details { padding: 20px; }
}

/* --- Shop Page Specifics --- */
.shop-header {
    background-color: var(--bg-alt);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}
.shop-header h1 { color: var(--primary-dark); font-size: 2.5rem; margin-bottom: 10px; }
.breadcrumbs { color: var(--text-light); font-size: 0.9rem; }
.breadcrumbs span.current { color: var(--primary); font-weight: 700; }

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar width + Content */
    gap: 40px;
    margin-bottom: 80px;
}

/* Sidebar Styles */
.shop-sidebar { background: #fff; padding: 20px; border-radius: var(--radius); border: 1px solid #eee; height: fit-content; }
.filter-group { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.filter-group:last-child { border: none; }
.filter-group h3 { font-size: 1.1rem; margin-bottom: 15px; color: var(--text-dark); }
.filter-group ul li { margin-bottom: 10px; display: flex; align-items: center; }
.filter-group label { cursor: pointer; color: var(--text-light); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.filter-group input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; }

/* Price Slider (Simple visual) */
.price-slider input { width: 100%; accent-color: var(--primary); }
.range-values { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-light); margin-top: 5px; }

/* Main Area */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.sort-dropdown {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
}

/* Grid Override to fit 3 columns nicely in the main area */
.shop-grid-override {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.pagination a {
    width: 40px; height: 40px;
    display: flex; justify-content: center; align-items: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--text-dark);
    font-weight: 700;
}
.pagination a.active, .pagination a:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; /* In real app, make this a drawer */ }
}



/* --- Pooja Kits Page Specifics --- */
.kit-detail-card {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.k-img-col { width: 40%; }
.k-img-col img { width: 100%; height: 100%; object-fit: cover; }

.k-info-col { width: 60%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.k-info-col h2 { font-size: 1.8rem; margin-bottom: 10px; color: var(--primary-dark); }
.k-info-col .desc { color: var(--text-light); margin-bottom: 20px; }

.kit-includes {
    background: #FAFAFA;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}
.kit-includes h4 { margin-bottom: 10px; font-size: 1rem; }
.kit-includes ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kit-includes li { font-size: 0.9rem; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
.kit-includes li i { color: #4CAF50; }

.k-action { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 20px; }
.price-block .strike { text-decoration: line-through; color: #999; margin-right: 10px; }
.price-block .final { font-size: 1.8rem; font-weight: 700; color: var(--primary); }

@media (max-width: 768px) {
    .kit-detail-card { flex-direction: column; }
    .k-img-col, .k-info-col { width: 100%; }
    .k-img-col { height: 250px; }
    .kit-includes ul { grid-template-columns: 1fr; }
}


/* --- About Page Specifics --- */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1591206369811-4eeb2f04bc95?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.about-hero h1 { font-size: 3.5rem; color: var(--secondary); margin-bottom: 20px; }
.about-hero p { font-size: 1.2rem; opacity: 0.9; }

.split-layout { display: flex; align-items: center; gap: 60px; }
.split-text { flex: 1; }
.split-image { flex: 1; height: 400px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-image img { width: 100%; height: 100%; object-fit: cover; }

.split-text p { margin-bottom: 20px; color: var(--text-light); font-size: 1.05rem; }
.signature { margin-top: 30px; font-family: 'Playfair Display', serif; border-left: 3px solid var(--secondary); padding-left: 20px; }
.signature p { font-size: 1.2rem; font-style: italic; color: var(--primary-dark); margin-bottom: 5px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.v-card { background: #fff; padding: 40px 20px; border-radius: var(--radius); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.v-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.v-card h3 { margin-bottom: 10px; }

@media (max-width: 768px) {
    .split-layout { flex-direction: column; }
    .about-hero h1 { font-size: 2.5rem; }
    .values-grid { grid-template-columns: 1fr; }
}

/* --- Product Page Specifics --- */
.breadcrumb-strip { padding: 20px 0; background: #fafafa; font-size: 0.9rem; color: var(--text-light); }
.breadcrumb-strip a:hover { color: var(--primary); }

.product-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    margin-bottom: 80px;
}

/* Gallery */
.product-gallery { position: sticky; top: 100px; height: fit-content; }
.main-image-frame {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #eee;
    position: relative;
    background: #fff;
}
.main-image-frame img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: 0.3s; }

.badge-trust {
    position: absolute;
    top: 20px; left: 20px;
    background: #FFF8E1;
    color: #B78A00;
    border: 1px solid #FFE082;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex; align-items: center; gap: 5px;
    z-index: 2;
}

.thumbnail-row { display: flex; gap: 15px; margin-top: 20px; }
.thumb {
    width: 80px; height: 80px;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.2s;
}
.thumb.active, .thumb:hover { opacity: 1; border-color: var(--primary); border-width: 2px; }

/* Details Column */
.p-title { font-size: 2.2rem; line-height: 1.2; margin-bottom: 10px; color: var(--text-dark); }
.p-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.stars { color: #FFC107; font-size: 1.1rem; }
.stars span { color: var(--text-light); font-size: 0.9rem; margin-left: 5px; vertical-align: middle; }
.stock-status { color: #4CAF50; font-weight: 700; font-size: 0.9rem; background: #E8F5E9; padding: 3px 10px; border-radius: 4px; }

.p-price-box { display: flex; align-items: baseline; gap: 15px; margin-bottom: 5px; }
.selling-price { font-size: 2rem; color: var(--primary); font-weight: 700; }
.mrp { text-decoration: line-through; color: #999; font-size: 1.1rem; }
.discount-tag { color: #D32F2F; background: #FFEBEE; padding: 2px 8px; font-size: 0.8rem; font-weight: 700; border-radius: 4px; }
.tax-note { font-size: 0.85rem; color: var(--text-light); margin-bottom: 25px; }

/* Sensory Box */
.sensory-box {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary);
}
.sense-item { display: flex; gap: 15px; align-items: flex-start; }
.sense-item i { font-size: 1.5rem; color: var(--primary); margin-top: 3px; }
.sense-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.sense-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Pincode */
.pincode-checker { display: flex; gap: 10px; margin-bottom: 10px; max-width: 350px; }
.pincode-checker input {
    flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 6px; outline: none;
}
.btn-check { padding: 0 20px; background: #333; color: #fff; border: none; border-radius: 6px; cursor: pointer; }
.delivery-note { font-size: 0.9rem; color: #4CAF50; margin-bottom: 30px; display: flex; align-items: center; gap: 6px; }

/* Actions */
.purchase-actions { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.qty-control {
    display: flex; border: 1px solid #ddd; border-radius: 50px; overflow: hidden; height: 50px;
}
.qty-control button { width: 40px; background: #fff; border: none; cursor: pointer; font-size: 1.2rem; }
.qty-control button:hover { background: #f5f5f5; }
.qty-control input { width: 50px; border: none; text-align: center; font-weight: 700; font-size: 1.1rem; pointer-events: none; }

.btn-lg { padding: 0 40px; height: 50px; font-size: 1.1rem; }

/* Accordion */
.p-accordion details { border-bottom: 1px solid #eee; padding: 15px 0; }
.p-accordion summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.p-accordion .details-content { padding-top: 15px; color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.p-accordion ul { margin-left: 20px; margin-top: 10px; list-style: disc; }

/* Trust Badges */
.trust-row { display: flex; gap: 20px; margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.t-badge { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 20px; }
.review-card { background: #fff; padding: 20px; border: 1px solid #eee; border-radius: 8px; }
.r-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.r-name { font-weight: 700; }
.r-ver { font-size: 0.8rem; color: #4CAF50; }
.r-stars { color: #FFC107; font-size: 0.9rem; margin-bottom: 10px; }
.review-card p { font-size: 0.9rem; color: var(--text-light); font-style: italic; }

/* Mobile */
@media (max-width: 900px) {
    .product-page-layout { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
    .main-image-frame { height: 350px; }
    .purchase-actions { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; padding: 15px; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 100; justify-content: space-between; }
    .qty-control { display: none; /* Hide qty on mobile sticky footer to save space */ }
    .btn-lg { flex: 1; padding: 0 10px; font-size: 1rem; }
    .p-title { font-size: 1.6rem; }
}

/* --- Cart Page Specifics --- */
.cart-page-wrapper { margin-top: 40px; margin-bottom: 80px; }

.cart-header { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.cart-header h1 { font-size: 2rem; color: var(--text-dark); }
.cart-count { font-size: 1.2rem; color: var(--text-light); font-weight: 400; }

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2 parts items, 1 part summary */
    gap: 40px;
}

/* Cart Item Card */
.cart-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.c-img { width: 100px; height: 100px; border-radius: 8px; overflow: hidden; background: #f9f9f9; flex-shrink: 0; }
.c-img img { width: 100%; height: 100%; object-fit: cover; }

.c-details { flex: 1; padding: 0 20px; }
.c-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.c-meta { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; }

.c-actions { display: flex; align-items: center; justify-content: space-between; }
.c-price { font-weight: 700; color: var(--primary); font-size: 1.1rem; }

/* Small Qty Control for Cart */
.cart-qty { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 4px; }
.cart-qty button { width: 25px; height: 25px; background: none; border: none; cursor: pointer; color: var(--text-dark); }
.cart-qty input { width: 30px; text-align: center; border: none; font-size: 0.9rem; pointer-events: none; }

.btn-remove {
    background: none; border: none; color: #999; cursor: pointer; font-size: 1.2rem;
    position: absolute; top: 15px; right: 15px; transition: 0.3s;
}
.btn-remove:hover { color: #D32F2F; }

/* Order Summary Box */
.cart-summary {
    background: #FAFAFA;
    padding: 30px;
    border-radius: var(--radius);
    height: fit-content;
    border: 1px solid #eee;
}
.cart-summary h3 { margin-bottom: 20px; border-bottom: 1px solid #ddd; padding-bottom: 10px; }

.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.95rem; color: var(--text-dark); }
.summary-row.total { font-weight: 700; font-size: 1.3rem; color: var(--primary-dark); margin-top: 10px; }
.free-ship { color: #4CAF50; font-weight: 700; }

.checkout-btn { margin-top: 20px; height: 50px; font-size: 1rem; display: flex; justify-content: center; align-items: center; gap: 10px; }

.cart-trust { margin-top: 25px; text-align: center; font-size: 0.85rem; color: var(--text-light); }
.cart-trust p { margin-bottom: 5px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Empty State */
.empty-state { text-align: center; padding: 60px 0; }
.empty-state i { font-size: 4rem; color: #ddd; margin-bottom: 20px; }
.empty-state h2 { margin-bottom: 10px; color: var(--text-dark); }
.empty-state p { margin-bottom: 30px; color: var(--text-light); }

/* Responsive */
@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-item { flex-direction: row; align-items: flex-start; }
    .c-details { padding-right: 0; }
}

/* Quantity Buttons Styling */
.qty-control-wrapper {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.qty-btn {
    background: #f9f9f9;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.qty-btn:hover {
    background: var(--primary);
    color: #fff;
}

.qty-display {
    font-size: 1rem;
    color: var(--text-dark);
    min-width: 30px;
}

/* Quantity Buttons Styling */
.qty-control-wrapper {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.qty-btn {
    background: #f9f9f9;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--primary); /* Uses your existing variable */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.qty-btn:hover {
    background: var(--primary);
    color: #fff;
}

.qty-display {
    font-size: 0.95rem;
    color: #333;
    min-width: 35px;
    text-align: center;
    font-weight: 600;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    height: 30px;
    line-height: 30px;
}

/* Aligning the right side (Price + Trash) */
.c-right-actions {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Sidebar Filter Links */
.filter-group ul li {
    margin-bottom: 12px;
}

.filter-group a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: 0.2s;
    text-decoration: none;
}

.filter-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Active State (Selected Category) */
.active-filter {
    color: var(--primary) !important;
    font-weight: 700;
}

.active-filter i {
    color: var(--primary);
}



/* Logo Container */
.logo a {
    display: flex;
    align-items: center;
}

/* The Logo Image */
.header-logo-img {
    height: 50px; /* Adjust this height to fit your navbar */
    width: auto;  /* Maintains the aspect ratio */
    object-fit: contain;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-logo-img {
        height: 40px; /* Slightly smaller on mobile */
    }
}

/* --- Contact Page Styles --- */

.page-header {
    background: #F9F5EB; /* Beige Background */
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
}
.page-header h1 { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 10px; }
.page-header p { color: #666; font-size: 1.1rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info takes less space than form */
    gap: 60px;
    align-items: start;
}

/* Contact Info (Left) */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.icon-box {
    width: 50px; height: 50px;
    background: #FFF8E1; /* Light Yellow */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.info-item h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: #333; }
.info-item p { margin: 0; color: #666; font-size: 0.95rem; line-height: 1.6; }

.contact-socials { display: flex; gap: 15px; margin-top: 40px; }
.contact-socials a {
    width: 40px; height: 40px;
    background: var(--primary);
    color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.contact-socials a:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Contact Form (Right) */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.contact-form-wrapper h3 { margin-bottom: 25px; color: var(--primary); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(183, 65, 14, 0.1);
}

.success-msg {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #C8E6C9;
}

/* Map */
.map-container { margin-top: 80px; filter: grayscale(20%); }

/* Responsive */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrapper { padding: 25px; }
}


/* --- Policy Pages (Shipping, Returns, etc.) --- */

.policy-header {
    background: #FAFAFA;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.policy-header p {
    color: var(--text-light);
    font-style: italic;
}

.policy-content {
    max-width: 900px; /* Limits width for better readability */
    margin: 0 auto;
}

.policy-card {
    margin-bottom: 40px;
}

.policy-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary);
    padding-left: 15px;
}

.policy-card p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

/* Shipping Table */
.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.shipping-table th, .shipping-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: left;
}

.shipping-table th {
    background: #f9f9f9;
    color: var(--text-dark);
    font-weight: 700;
}

.note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-header h1 { font-size: 2rem; }
    .shipping-table th, .shipping-table td { padding: 10px; font-size: 0.9rem; }
}


/* --- Checkout Page --- */

.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.checkout-title {
    font-size: 1.3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-row {
    display: flex;
    gap: 20px;
}
.form-row .form-group { flex: 1; }

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.payment-card.selected {
    border-color: var(--primary);
    background: #FFF8E1;
}

.payment-card input { width: 20px; height: 20px; accent-color: var(--primary); }
.p-info { flex: 1; }
.p-info strong { display: block; color: var(--text-dark); }
.p-info p { margin: 0; font-size: 0.85rem; color: #666; }
.payment-card i { font-size: 1.5rem; color: var(--primary); }

.payment-card.disabled { opacity: 0.6; cursor: not-allowed; background: #f9f9f9; }

/* Summary Box */
.summary-box {
    background: #FAFAFA;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.s-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}
.s-item small { color: #999; }

.s-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.s-row.total {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed #ddd;
}

.place-order-btn {
    height: 55px;
    font-size: 1.1rem;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.security-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .summary-box { order: -1; /* Shows summary first on mobile */ margin-bottom: 30px; }
}

/* --- Order Success Page --- */

.success-page {
    text-align: center;
    max-width: 600px; /* Limits width so it looks like a receipt */
    margin: 60px auto;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.order-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* Receipt Card */
.receipt-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left; /* Aligns text inside card to left */
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

/* Decorative top border */
.receipt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 5px;
    background: var(--primary);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.receipt-header strong { font-size: 1.1rem; display: block; }
.receipt-header .date { font-size: 0.85rem; color: #888; }

.status-badge {
    background: #FFF3E0;
    color: #F57C00;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.receipt-items { margin: 15px 0; }
.r-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}
.r-qty { color: #888; font-size: 0.85rem; margin-left: 5px; }

.receipt-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0;
}

.customer-info {
    background: #FAFAFA;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wa-btn {
    border-color: #25D366;
    color: #25D366;
}
.wa-btn:hover {
    background: #25D366;
    color: white;
}

/* --- Product Page Specific Styles --- */

/* Breadcrumbs */
.breadcrumb-strip {
    padding: 15px 0;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.breadcrumb-strip a:hover { color: var(--primary); }

/* Layout Grid */
.product-page-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image wider, details slightly narrower */
    gap: 50px;
    margin-bottom: 80px;
}

/* --- Left Column: Gallery --- */
.product-gallery { position: sticky; top: 100px; height: fit-content; }

.main-image-frame {
    width: 100%;
    height: 500px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-image-frame img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* The Yellow "GI Tagged" Badge */
.badge-trust {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFF8E1; /* Light Yellow */
    color: #B78A00;       /* Dark Gold text */
    border: 1px solid #FFE082;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.thumbnail-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.thumb {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    cursor: pointer;
    transition: 0.2s;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb:hover, .thumb.active { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }

/* --- Right Column: Details --- */
.p-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
}

.p-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars { color: #FFC107; font-size: 1rem; }
.stars span { color: #888; font-size: 0.9rem; margin-left: 5px; }

.stock-status {
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Price Block */
.p-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.mrp { text-decoration: line-through; color: #999; font-size: 1.1rem; }
.selling-price { color: #C62828; font-size: 2rem; font-weight: 700; } /* Red color for price */
.discount-tag {
    background: #FFEBEE;
    color: #C62828;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}
.tax-note { color: #999; font-size: 0.85rem; margin-bottom: 25px; margin-top: 5px;}

/* Sensory Box (Beige Background) */
.sensory-box {
    background: #F9F5EB; /* Match the screenshot beige */
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.sense-item { display: flex; gap: 12px; align-items: flex-start; }
.sense-item .icon-wrap { color: var(--primary); font-size: 1.4rem; margin-top: 2px; }
.sense-item strong { display: block; font-size: 0.95rem; color: #333; margin-bottom: 4px; }
.sense-item p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.4; }

/* Pincode */
.pincode-area { margin-bottom: 30px; }
.pincode-input-group {
    display: flex;
    max-width: 350px;
    margin-bottom: 10px;
}
.pincode-input-group input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    outline: none;
}
.btn-check {
    background: #333;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 600;
}
.delivery-note { font-size: 0.9rem; color: #555; display: flex; align-items: center; gap: 6px; }
.delivery-note i { color: #4CAF50; }

/* Purchase Actions */
.purchase-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

/* +/- Counter */
.qty-counter {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px; /* Rounded pill shape */
    height: 50px;
    padding: 0 5px;
}
.qty-counter button {
    background: none; border: none; font-size: 1.2rem; width: 35px; cursor: pointer; color: #333;
}
.qty-counter input {
    width: 30px; border: none; text-align: center; font-weight: 600; font-size: 1.1rem;
}

/* Buttons */
.btn-lg {
    height: 50px;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 700;
    padding: 0 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary {
    background: #B7410E; /* Rust/Brown */
    color: white;
    border: none;
}
.btn-primary:hover { background: #96340a; }

.btn-secondary {
    background: transparent;
    border: 2px solid #B7410E;
    color: #B7410E;
    flex: 1;
}
.btn-secondary:hover { background: #B7410E; color: white; }

/* Accordions */
.p-accordion-group { border-top: 1px solid #eee; margin-bottom: 30px; }
.p-accordion { border-bottom: 1px solid #eee; }
.p-accordion summary {
    padding: 15px 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}
.p-accordion .content {
    padding-bottom: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}
.p-accordion ul { margin-left: 20px; margin-top: 10px; }
.p-accordion li { margin-bottom: 5px; }

/* Trust Badges Footer */
.trust-row {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}
.t-badge { display: flex; align-items: center; gap: 8px; }

/* Responsive */
@media (max-width: 900px) {
    .product-page-layout { grid-template-columns: 1fr; gap: 30px; }
    .purchase-actions {
        position: fixed; bottom: 0; left: 0; width: 100%;
        background: #fff; padding: 15px; box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        z-index: 100; margin-bottom: 0;
    }
    .main-image-frame { height: 350px; }
}



/* --- POOJA KIT SPECIAL PAGE --- */

.kit-header-strip {
    background: #FFF8E1;
    padding: 15px 0;
    border-bottom: 1px solid #FFE082;
}
.kit-header-strip .container { display: flex; justify-content: space-between; align-items: center; }
.kit-header-strip a { color: #8D6E63; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.kit-badge { background: var(--primary); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }

/* Top Layout */
.kit-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.kit-gallery img { width: 100%; border-radius: 12px; }
.main-kit-img { border: 1px solid #eee; padding: 10px; border-radius: 12px; margin-bottom: 15px; }
.kit-thumbnails { display: flex; gap: 10px; }
.kit-thumbnails img { width: 70px; height: 70px; object-fit: cover; cursor: pointer; border: 1px solid #ddd; }

/* Info Card */
.kit-info-card { padding: 20px; }
.kit-title { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 10px; }
.kit-tagline { color: #666; font-style: italic; margin-bottom: 20px; }
.kit-price-row { font-size: 1.8rem; color: var(--primary); font-weight: bold; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; }
.price-old { font-size: 1.2rem; color: #999; text-decoration: line-through; font-weight: normal; }
.save-badge { background: #E8F5E9; color: #2E7D32; font-size: 0.8rem; padding: 5px 10px; border-radius: 4px; }

.kit-trust-points {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.kit-trust-points div { display: flex; align-items: center; gap: 8px; color: #555; font-size: 0.9rem; }
.kit-trust-points i { color: var(--primary); }

/* Unboxing Grid */
.kit-content-section { margin-bottom: 60px; text-align: center; }
.section-title span { border-bottom: 3px solid #FFECB3; padding-bottom: 5px; }
.section-subtitle { margin-bottom: 40px; color: #777; }

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.ing-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: 0.3s;
}
.ing-card:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.ing-icon {
    width: 40px; height: 40px;
    background: #FFF3E0;
    color: #F57C00;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.ing-text strong { display: block; color: #333; font-size: 0.95rem; }
.ing-text span { color: #888; font-size: 0.85rem; }

/* Guide Section */
.kit-guide-section { background: #FAFAFA; padding: 40px; border-radius: 12px; border-left: 5px solid var(--primary); }
.steps-list { margin-top: 15px; padding-left: 20px; color: #555; line-height: 1.8; }

/* Mobile */
@media (max-width: 768px) {
    .kit-layout { grid-template-columns: 1fr; gap: 30px; }
}


/* --- Auth Pages (Login/Signup) --- */
.auth-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.auth-card h2 { text-align: center; color: var(--primary); margin-bottom: 20px; }
.auth-footer { text-align: center; margin-top: 15px; font-size: 0.9rem; }
.error-msg { color: red; background: #ffebee; padding: 10px; border-radius: 4px; font-size: 0.9rem; margin-bottom: 15px; }

/* --- Header User Dropdown --- */
.user-dropdown { position: relative; display: inline-block; }

.user-greeting {
    display: flex; align-items: center; gap: 5px;
    color: var(--primary-dark);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 100;
    border: 1px solid #eee;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.dropdown-content a:hover { background-color: #f1f1f1; }

.user-dropdown:hover .dropdown-content { display: block; }


.qty-control-wrapper.small-counter .qty-btn {
    width: 40px;
    height: 100%;
    background: transparent;
    border: none;
    color: #B7410E; /* Text Color */
    font-size: 1.5rem; /* Make symbol bigger */
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px; /* Adjust alignment */
    transition: background 0.2s;
}

