/* =========================================
   ANAND CREATION - MASTER STYLESHEET
   Version: 4.0 (Final Polish)
   ========================================= */

/* --- 1. GLOBAL RESET & TYPOGRAPHY --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Lato', sans-serif; 
    color: #333; 
    line-height: 1.6; 
    overflow-x: hidden; 
    background-color: #fff; 
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Playfair Display', serif; 
    color: #111; 
    font-weight: 700; 
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Global Buttons */
.btn { 
    display: inline-block; 
    padding: 12px 30px; 
    background: #111; 
    color: #fff; 
    text-transform: uppercase; 
    font-weight: bold; 
    letter-spacing: 1px; 
    border: 1px solid #111; 
    cursor: pointer; 
    transition: 0.3s; 
    border-radius: 4px; 
    font-size: 0.9rem;
}

.btn:hover { 
    background: #d4af37; 
    border-color: #d4af37; 
    color: #fff; 
}

/* --- 2. HEADER & NAVIGATION --- */
.announcement-bar { background: #111; color: #fff; text-align: center; padding: 8px 0; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }

header { 
    background: #fff; 
    padding: 15px 0; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo img { height: 50px; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    font-weight: bold; 
    letter-spacing: 1px; 
    position: relative; 
    color: #333; 
}

.nav-links a:hover { color: #d4af37; }

.header-icons { display: flex; gap: 20px; font-size: 1.2rem; align-items: center; color: #333; }
.cart-icon-wrap { position: relative; }
.cart-count { 
    position: absolute; 
    top: -8px; 
    right: -8px; 
    background: #e43e3d; 
    color: #fff; 
    font-size: 0.7rem; 
    padding: 2px 6px; 
    border-radius: 50%; 
    font-weight: bold; 
}

/* --- 3. HERO SLIDER --- */
.hero-slider { position: relative; height: 80vh; overflow: hidden; }

.slide { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-size: cover; 
    background-position: top center; /* Fixes head cropping */
    display: flex; align-items: center; justify-content: center; 
    opacity: 0; transition: opacity 1s ease-in-out; 
}

.slide.active { opacity: 1; }

.hero-content { 
    text-align: center; color: #fff; 
    background: rgba(0, 0, 0, 0.4); 
    padding: 40px; 
    border: 1px solid rgba(255,255,255,0.3); 
    backdrop-filter: blur(2px);
}

.hero-content h1 { font-size: 3.5rem; margin: 10px 0; color: #fff; letter-spacing: 2px; }
.hero-subtitle { font-family: 'Lato', sans-serif; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; color: #fff; }
.hero-content .btn { background: #fff; color: #111; border-color: #fff; }
.hero-content .btn:hover { background: transparent; color: #fff; }

/* --- 4. TRUST BAR --- */
.trust-bar { background-color: #f9f9f9; padding: 30px 0; border-bottom: 1px solid #eee; }

.trust-grid { 
    display: flex; justify-content: space-around; align-items: center; 
    flex-wrap: wrap; gap: 20px; text-align: center; 
}

.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1 1 200px; }
.trust-item i { font-size: 2rem; color: #d4af37; margin-bottom: 5px; }
.trust-item h4 { font-family: 'Lato', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

/* --- 5. PRODUCTS & CATEGORIES --- */
.category-section, .collection { padding: 80px 0; text-align: center; }
.collection h2, .category-section h2 { font-size: 2.5rem; margin-bottom: 10px; color: #111; }
.subtitle { color: #777; margin-bottom: 40px; display: block; }

.category-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 60px; }
.category-box img { 
    width: 180px; height: 180px; border-radius: 50%; object-fit: cover; 
    margin-bottom: 15px; border: 3px solid transparent; transition: 0.3s; 
}
.category-box:hover img { border-color: #d4af37; transform: scale(1.05); }
.cat-label { font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }

.product-card { 
    background: #fff; border: 1px solid #eee; transition: 0.3s; 
    position: relative; cursor: pointer; text-align: left; border-radius: 4px; overflow: hidden; 
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: #d4af37; }

.discount-badge { 
    position: absolute; top: 10px; left: 10px; 
    background: #e43e3d; color: #fff; padding: 4px 8px; 
    font-size: 0.7rem; font-weight: bold; border-radius: 2px; z-index: 2; 
}

.product-image img { width: 100%; height: 320px; object-fit: cover; object-position: top; } 

.product-info { padding: 15px; }
.product-info h3 { font-size: 1rem; margin-bottom: 5px; font-family: 'Lato', sans-serif; color: #111; }
.price-container { font-weight: bold; }
.new-price { color: #111; margin-right: 10px; font-size: 1.1rem; }
.old-price { text-decoration: line-through; color: #999; font-size: 0.9rem; font-weight: normal; }

/* --- 6. BLOG SECTION --- */
.blog-section { padding: 80px 0; text-align: center; }
.blog-section h2 { font-size: 2.5rem; margin-bottom: 10px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }

.blog-card { 
    background: #fff; border-radius: 4px; overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); cursor: pointer; 
    transition: 0.3s; text-align: left; border: 1px solid #eee; 
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: #d4af37; }

.blog-card img { 
    width: 100%; height: 250px; object-fit: cover; 
    object-position: top center; /* KEEPS HEAD VISIBLE */
}

.blog-info { padding: 20px; }
.blog-date { font-size: 0.85rem; color: #999; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px;}
.blog-info h3 { font-size: 1.3rem; margin: 10px 0; color: #111; font-family: 'Playfair Display', serif; }
.read-more { font-size: 0.9rem; font-weight: bold; color: #d4af37; text-transform: uppercase; letter-spacing: 1px; }

/* --- 7. REVIEWS SECTION (FIXED) --- */
.reviews-section { background-color: #fff; padding: 80px 0; text-align: center; }
.reviews-section h2 { font-size: 2.5rem; margin-bottom: 40px; color: #111; }

.reviews-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; margin-top: 20px; 
}

.review-card { 
    background: #f9f9f9; padding: 30px; border-radius: 8px; 
    text-align: center; border: 1px solid #eee; position: relative; transition: 0.3s; 
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-color: #d4af37; }

.review-card::before { 
    content: '\201C'; font-family: 'Playfair Display', serif; 
    font-size: 5rem; color: #e0e0e0; position: absolute; 
    top: -10px; left: 20px; opacity: 0.5; line-height: 1; 
}

.review-card p { 
    font-family: 'Playfair Display', serif; font-size: 1.1rem; 
    font-style: italic; color: #555; margin-bottom: 20px; 
    position: relative; z-index: 1; 
}
.review-card h4 { 
    font-family: 'Lato', sans-serif; font-size: 0.9rem; 
    font-weight: bold; color: #111; text-transform: uppercase; letter-spacing: 1px; 
}

/* --- 8. NEWSLETTER BAR (FIXED) --- */
.newsletter-bar { background-color: #f9f9f9; padding: 60px 20px; text-align: center; border-top: 1px solid #eee; }
.newsletter-bar h2 { font-size: 2rem; margin-bottom: 10px; }
.newsletter-bar p { color: #777; margin-bottom: 30px; }

.nl-form { display: flex; justify-content: center; gap: 10px; max-width: 500px; margin: 0 auto; }
.nl-form input { flex: 1; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; outline: none; }
.nl-form button { 
    padding: 12px 25px; background: #111; color: #fff; border: none; 
    font-weight: bold; text-transform: uppercase; cursor: pointer; 
    border-radius: 4px; transition: 0.3s; 
}
.nl-form button:hover { background: #d4af37; }

/* --- 9. PRODUCT DETAIL PAGE --- */
.product-details-section { padding: 40px 0 80px; }
.breadcrumb { margin-bottom: 30px; font-size: 0.9rem; color: #777; }
.breadcrumb a { color: #111; font-weight: bold; }
.breadcrumb a:hover { color: #d4af37; }

.product-layout { display: flex; gap: 50px; margin-top: 20px; }
.product-gallery { flex: 1; }
.main-image-container { width: 100%; border-radius: 8px; overflow: hidden; margin-bottom: 15px; border: 1px solid #eee; }
.thumbnail-row { display: flex; gap: 15px; }
.thumb { width: 80px; height: 100px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: 0.6; border: 2px solid transparent; }
.thumb.active, .thumb:hover { opacity: 1; border-color: #d4af37; }

.product-info-col { flex: 1; }
.product-title { font-size: 2.2rem; margin-bottom: 10px; line-height: 1.2; }
.product-sku { color: #999; font-size: 0.85rem; margin-bottom: 20px; }

.price-box { margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.current-price { font-size: 1.8rem; font-weight: bold; color: #111; }
.discount-tag { color: #e43e3d; font-weight: bold; }
.tax-note { color: #25d366; font-size: 0.85rem; margin-bottom: 30px; font-weight: bold; }

.size-selector { margin-bottom: 30px; }
.size-header { display: flex; justify-content: space-between; margin-bottom: 15px; }
.size-chart-link { color: #d4af37; font-weight: bold; font-size: 0.9rem; text-decoration: underline; }
.size-options { display: flex; gap: 15px; }
.size-btn { width: 45px; height: 45px; border: 1px solid #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-weight: bold; transition: 0.2s; }
.size-btn:hover { border-color: #111; }
.size-btn.selected { background: #111; color: #fff; border-color: #111; }

.action-buttons { display: flex; gap: 20px; margin-bottom: 40px; }
.add-to-cart-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; }
.wishlist-btn { width: 54px; background: #fff; color: #111; border: 1px solid #ddd; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.wishlist-btn:hover { border-color: #d4af37; color: #d4af37; }

.details-box h3 { font-size: 1.2rem; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.details-box p { color: #555; margin-bottom: 20px; }
.detail-list li { margin-bottom: 8px; font-size: 0.95rem; color: #333; }
.delivery-check { display: flex; gap: 10px; align-items: center; color: #555; margin-top: 20px; padding: 15px; background: #f9f9f9; border-radius: 4px; }

/* --- 10. CART PAGE --- */
.cart-section { padding: 40px 0 80px; background-color: #f9f9f9; min-height: 80vh; }
.page-title { font-size: 2rem; margin-bottom: 30px; border-bottom: 1px solid #ddd; padding-bottom: 15px; }
.cart-wrapper { display: flex; gap: 40px; align-items: flex-start; }
.cart-items-container { flex: 2; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.cart-item { display: flex; padding-bottom: 25px; margin-bottom: 25px; border-bottom: 1px solid #eee; gap: 20px; }
.cart-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.item-img-box img { width: 90px; height: 110px; object-fit: cover; border-radius: 4px; }
.item-details { flex: 1; }
.item-name { font-size: 1.1rem; color: #111; margin-bottom: 5px; }
.item-meta { font-size: 0.9rem; color: #777; margin-bottom: 15px; }

.qty-selector { display: flex; align-items: center; border: 1px solid #ddd; width: fit-content; border-radius: 4px; }
.qty-btn { background: #f4f4f4; border: none; width: 30px; height: 30px; cursor: pointer; font-weight: bold; }
.qty-selector input { width: 40px; text-align: center; border: none; font-weight: bold; background: transparent; }

.item-price-action { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.remove-btn { background: none; border: none; color: #999; cursor: pointer; font-size: 1.1rem; }
.remove-btn:hover { color: #e43e3d; }
.continue-shopping { margin-top: 30px; }
.continue-shopping a { color: #d4af37; font-weight: bold; font-size: 0.9rem; }

.order-summary { flex: 1; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: sticky; top: 100px; }
.order-summary h3 { margin-bottom: 25px; font-size: 1.3rem; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.95rem; color: #555; }
.summary-total { display: flex; justify-content: space-between; margin-top: 20px; padding-top: 20px; border-top: 2px solid #eee; font-weight: bold; font-size: 1.2rem; color: #111; margin-bottom: 25px; }
.checkout-btn { width: 100%; text-align: center; }
.trust-icons-small { margin-top: 20px; text-align: center; color: #ccc; font-size: 1.5rem; display: flex; justify-content: center; gap: 15px; }

/* --- 11. CONTACT PAGE --- */
.contact-layout { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.contact-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee; }
.info-card { flex: 1; min-width: 300px; }
.form-card { flex: 2; min-width: 300px; }
.map-container { width: 100%; height: 450px; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee; }

.info-row { margin-bottom: 25px; display: flex; align-items: flex-start; gap: 15px; }
.info-row i { color: #d4af37; font-size: 1.4rem; margin-top: 3px; }
.info-row div { display: flex; flex-direction: column; }
.info-row strong { color: #111; font-size: 1.1rem; margin-bottom: 3px; }
.info-row span, .info-row a { color: #555; font-size: 0.95rem; }
.info-row a:hover { color: #d4af37; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; font-size: 0.9rem; }
.input-group input, .input-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }

/* --- 12. FOOTER --- */
footer { background-color: #111; color: #fff; padding-top: 60px; margin-top: 0; }
.footer-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px 50px; border-bottom: 1px solid #333; }
.footer-column h4 { font-size: 1.1rem; margin-bottom: 20px; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a { color: #bbb; font-size: 0.9rem; }
.footer-column ul li a:hover { color: #d4af37; padding-left: 5px; }
.payment-text { color: #bbb; font-size: 0.9rem; line-height: 1.8; }
.footer-bottom { background-color: #000; padding: 20px 0; }
.bottom-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.copyright { color: #777; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.social-icons a { color: #fff; margin-left: 20px; font-size: 1.2rem; transition: 0.3s; }
.social-icons a:hover { color: #d4af37; }

/* WhatsApp Float */
.float-btn { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50%; text-align: center; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; display: flex; align-items: center; justify-content: center; }

/* --- 13. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 900px) {
    .product-layout, .cart-wrapper, .contact-layout { flex-direction: column; }
    .product-gallery, .product-info-col, .cart-items-container, .order-summary, .info-card, .form-card { width: 100%; }
    .footer-container { grid-template-columns: 1fr 1fr; text-align: left; }
    .bottom-container { flex-direction: column; gap: 15px; }
}

@media (max-width: 600px) {
    .nav-links { display: none; } /* Hamburger menu logic handled in JS */
    .hero-content h1 { font-size: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .nl-form { flex-direction: column; }
    .nl-form button { width: 100%; }
    .product-layout { gap: 20px; }
    .thumbnail-row { justify-content: center; }
}
/* --- USER MENU DROPDOWN FIX --- */
.user-menu-container {
    position: relative;
    display: inline-block;
}

.user-btn {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

/* Hide the dropdown menu by default */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1100;
    border: 1px solid #eee;
    text-align: left; /* Ensure text aligns left, not center */
}

/* Show the dropdown when hovering over the container */
.user-menu-container:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #f9f9f9;
    transition: 0.2s;
    text-transform: none; /* Prevents forced uppercase */
    font-weight: normal;
}

.user-dropdown a:hover {
    background: #f9f9f9;
    color: #d4af37;
    padding-left: 25px; /* Small slide effect */
}
/* --- PROFILE DASHBOARD STYLES --- */

.page-header-banner {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.profile-layout {
    display: flex;
    gap: 40px;
    padding: 60px 20px;
    min-height: 60vh;
}

/* Sidebar */
.profile-sidebar {
    flex: 1;
    min-width: 250px;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.user-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.profile-menu li {
    margin-bottom: 10px;
}

.profile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 4px;
    color: #555;
    transition: 0.3s;
}

.profile-menu a:hover, .profile-menu a.active {
    background: #f4f4f4;
    color: #111;
    font-weight: bold;
}

/* Content Area */
.profile-content {
    flex: 3;
}

.order-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.order-header {
    background: #fbfbfb;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.order-id {
    display: block;
    font-weight: bold;
    color: #111;
}

.order-date {
    font-size: 0.85rem;
    color: #777;
}

/* Status Badges */
.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge.delivered {
    background: #e6fffa;
    color: #2c7a7b; /* Teal for success */
}

.badge.processing {
    background: #fffaf0;
    color: #c05621; /* Orange for processing */
}

.order-items {
    padding: 20px;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.order-item-row:last-child {
    margin-bottom: 0;
}

.order-item-row img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.oi-info {
    flex: 1;
}

.oi-info h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-family: 'Lato', sans-serif;
}

.oi-info p {
    font-size: 0.85rem;
    color: #777;
}

.oi-price {
    font-weight: bold;
}

.order-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-outline {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: #111;
    color: #111;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-layout {
        flex-direction: column;
    }
    .profile-sidebar {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
}
/* --- POLICY PAGE STYLES --- */

.policy-section {
    padding: 60px 20px;
    max-width: 900px; /* Limits width for better reading */
    margin: 0 auto;
}

.policy-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.policy-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.policy-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 15px;
}

.policy-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.policy-card ul {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.policy-card ul li {
    margin-bottom: 12px;
}

.contact-box {
    text-align: center;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.contact-box h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-box p {
    margin-bottom: 25px;
    color: #777;
}
/* --- POLICY PAGE STYLES --- */

.policy-section {
    padding: 60px 20px;
    max-width: 900px; /* Limits width for better reading */
    margin: 0 auto;
}

.policy-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.policy-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.policy-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 15px;
}

.policy-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.policy-card ul {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.policy-card ul li {
    margin-bottom: 12px;
}

.contact-box {
    text-align: center;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.contact-box h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-box p {
    margin-bottom: 25px;
    color: #777;
}
/* --- CONTACT PAGE STYLES --- */

.contact-section {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-box {
    flex: 1.2;
    min-width: 300px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: #555;
    line-height: 1.6;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
    margin-bottom: 25px;
}

.contact-form-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.contact-form-box input, 
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: inherit;
}

.contact-form-box input:focus, 
.contact-form-box textarea:focus {
    outline: none;
    border-color: #111;
}

@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
}
/* --- SHOP FILTERS LAYOUT --- */

.shop-layout {
    display: flex;
    gap: 40px;
    padding: 50px 20px;
    align-items: flex-start; /* Keeps sidebar at top */
}

/* Sidebar Styling */
.shop-sidebar {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    position: sticky; /* Keeps it visible while scrolling */
    top: 20px;
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Input */
#search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Checkboxes */
.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
}

.filter-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d4af37; /* Gold Checkbox */
}

/* Sort Dropdown */
#sort-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

/* Main Content */
.shop-content {
    flex: 3;
}

.results-bar {
    margin-bottom: 20px;
    color: #777;
    font-size: 0.9rem;
}

/* Fade In Animation for Filtering */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shop-layout {
        flex-direction: column;
    }
    .shop-sidebar {
        width: 100%;
        position: static; /* Remove sticky on mobile */
    }
}
/* --- HERO SLIDER ANIMATION --- */

.hero-slider {
    position: relative;
    height: 90vh; /* Full screen height */
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hidden by default */
    transition: opacity 1s ease-in-out; /* Smooth fade */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 0;
}

.slide.active {
    opacity: 1; /* Visible when active */
    z-index: 1;
}

/* Ensure content stays on top */
.hero-content {
    position: relative;
    z-index: 2;
}
/* --- CUSTOM NOTIFICATION TOASTS --- */
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%); /* Center on screen */
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: toastSlideUp 0.3s forwards;
    font-size: 0.9rem;
    font-weight: 500;
}

.toast.success i { color: #27ae60; }
.toast.error i { color: #e74c3c; }

@keyframes toastSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toastFadeOut {
    to { opacity: 0; transform: translateY(-10px); }
}

/* --- CUSTOM CONFIRM MODAL (Replaces Browser Confirm) --- */
.confirm-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    animation: fadeIn 0.2s;
}

.confirm-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0.9);
    animation: popIn 0.2s forwards;
}

.confirm-box h3 { margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.confirm-box p { color: #666; margin-bottom: 25px; font-size: 0.95rem; }

.confirm-actions { display: flex; gap: 10px; justify-content: center; }
.confirm-btn { padding: 10px 25px; border-radius: 5px; cursor: pointer; border: none; font-weight: bold; }
.confirm-btn.yes { background: #e74c3c; color: white; }
.confirm-btn.no { background: #eee; color: #333; }

@keyframes popIn { to { transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
/* Add this to your CSS */
.size-btn.selected {
    background-color: #d4af37; /* Gold Background */
    color: white;
    border-color: #d4af37;
    font-weight: bold;
    transform: scale(1.1); /* Slight pop effect */
    transition: all 0.2s ease;
}
/* --- LUXURY THEME VARIABLES --- */
:root {
    --gold: #D4AF37;
    --black: #111;
    --white: #fff;
    --gray: #f4f4f4;
    --text-light: #666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* GENERAL RESET */
body { font-family: var(--font-body); background: #fff; color: var(--black); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.5px; }

/* HEADER (Minimalist) */
header { padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px); z-index: 1000; }
.logo img { height: 35px; } 

/* BUTTONS (Sharp & Elegant) */
.btn-black {
    background: var(--black); color: var(--white);
    padding: 16px 40px; border: none; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 2px; cursor: pointer;
    transition: all 0.3s ease; width: 100%; display: block; text-align: center;
}
.btn-black:hover { background: var(--gold); transform: translateY(-2px); }

/* --- PRODUCT PAGE (ITEM.HTML) --- */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; align-items: start; }
.product-gallery { background: var(--gray); padding: 40px; display: flex; justify-content: center; }
.product-gallery img { max-width: 100%; max-height: 600px; mix-blend-mode: multiply; }

.product-details { padding-top: 20px; }
.breadcrumb { font-size: 0.85rem; color: #999; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.product-title { font-size: 2.8rem; margin-bottom: 10px; line-height: 1.2; }
.product-price { font-size: 1.5rem; color: var(--gold); margin-bottom: 30px; font-weight: 400; }

.size-selector { margin-bottom: 40px; }
.size-label { font-size: 0.9rem; font-weight: 700; margin-bottom: 15px; display: block; letter-spacing: 1px; }
.size-options { display: flex; gap: 10px; }
.size-btn {
    width: 50px; height: 50px; border: 1px solid #ddd; background: transparent;
    cursor: pointer; transition: 0.2s; font-family: var(--font-body);
}
.size-btn:hover { border-color: var(--black); }
.size-btn.selected { background: var(--black); color: var(--white); border-color: var(--black); }

/* --- CART PAGE (CART.HTML) --- */
.cart-header { text-align: center; margin-bottom: 50px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.cart-header h1 { font-size: 3rem; }

.cart-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.cart-items-container { border-top: 1px solid #eee; }

.cart-item-row {
    display: grid; grid-template-columns: 100px 1fr auto; gap: 20px;
    padding: 25px 0; border-bottom: 1px solid #eee; align-items: center;
}
.cart-item-row img { width: 100%; display: block; }
.item-info h4 { font-size: 1.1rem; margin-bottom: 5px; font-family: var(--font-heading); }
.item-meta { font-size: 0.85rem; color: #777; margin-bottom: 10px; }
.qty-controls { display: flex; align-items: center; gap: 10px; border: 1px solid #ddd; width: fit-content; padding: 5px; }
.qty-btn { background: none; border: none; width: 25px; cursor: pointer; }

.cart-summary { background: var(--gray); padding: 40px; height: fit-content; position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.95rem; }
.summary-total { border-top: 1px solid #ddd; padding-top: 20px; margin-top: 20px; font-size: 1.2rem; font-weight: 700; display: flex; justify-content: space-between; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .product-layout, .cart-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-title { font-size: 2rem; }
    .cart-item-row { grid-template-columns: 80px 1fr; }
    .cart-item-row .price-remove { grid-column: 2; text-align: left; margin-top: 10px; }
}
/* --- PREMIUM PRODUCT GRID --- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Responsive */
    gap: 25px;
    padding: 20px 0;
}

/* --- THE CARD --- */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative; /* For badges */
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* --- IMAGE AREA --- */
.product-image-container {
    width: 100%;
    aspect-ratio: 3 / 4; /* Perfect for Fashion (Portrait) */
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures no stretching */
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* --- BADGES (New!) --- */
.badge-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    color: #111;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c; /* Red for Sale */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
}

/* --- DETAILS AREA --- */
.product-info {
    padding: 15px;
    text-align: left; /* Aligns text cleanly */
}

.product-brand {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.product-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Adds "..." if name is too long */
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.current-price {
    font-weight: 700;
    color: #111;
}

.mrp-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.off-text {
    font-size: 0.75rem;
    color: #27ae60; /* Green */
    font-weight: 700;
}

/* Mobile Tweak */
@media(max-width: 480px) {
    .shop-grid { grid-template-columns: 1fr 1fr; gap: 15px; } /* 2 columns on mobile */
    .product-info { padding: 10px; }
}
/* =========================================
   PREMIUM PRODUCT CARD DESIGN (FIXED)
   Style: Myntra / Ajio Inspired
   ========================================= */

/* --- GRID LAYOUT --- */
.shop-grid {
    display: grid;
    /* Smart Columns: Fits as many as possible, minimum width 240px */
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
    gap: 20px;
    padding: 20px 0;
}

/* --- CARD CONTAINER --- */
.product-card {
    background: #fff;
    border: 1px solid #eaeaec; /* Very subtle border */
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none; /* Removes link underline */
}

.product-card:hover {
    transform: translateY(-4px); /* Lifts up slightly */
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* --- IMAGE AREA --- */
.product-image-container {
    width: 100%;
    aspect-ratio: 3/4; /* Standard Fashion Portrait Ratio */
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills box without stretching */
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05); /* Slight Zoom Effect */
}

/* --- BADGE (THE FIX) --- */
.discount-badge {
    position: absolute;
    bottom: 12px;       /* Puts it at the bottom */
    left: 12px;         /* Puts it at the left */
    background: rgba(255, 255, 255, 0.95); /* White background */
    color: #ff3f6c;     /* Premium Pink/Red text */
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
    max-width: fit-content; /* Prevents it from stretching */
    width: auto;
}

/* --- TEXT DETAILS --- */
.product-info {
    padding: 12px 15px;
    text-align: left;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #282c3f;
    margin-bottom: 6px;
    white-space: nowrap;      /* Keeps text on one line */
    overflow: hidden;         /* Hides extra text */
    text-overflow: ellipsis;  /* Adds "..." */
}

/* --- PRICING ROW --- */
.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-top: 5px;
}

.current-price {
    font-weight: 700;
    color: #282c3f;
}

.mrp-price {
    font-size: 0.8rem;
    color: #94969f;
    text-decoration: line-through; /* Cross out original price */
}

.off-text {
    font-size: 0.75rem;
    color: #ff905a; /* Trendy Orange for discount */
    font-weight: 700;
}

/* --- MOBILE RESPONSIVENESS --- */
@media(max-width: 480px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on mobile */
        gap: 10px;
    }
    .product-info { padding: 10px; }
    .product-brand { font-size: 0.65rem; }
    .product-title { font-size: 0.85rem; }
    .discount-badge { bottom: 8px; left: 8px; font-size: 0.65rem; }
}
/* =========================================
   CUTE & PREMIUM PRODUCT CARD
   Style: Soft, Rounded, with Hearts
   ========================================= */

/* --- GRID --- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); 
    gap: 25px;
    padding: 20px 0;
}

/* --- THE CUTE CARD --- */
.product-card {
    background: #fff;
    border-radius: 16px; /* Very Rounded Corners */
    border: none;        /* No border, just shadow */
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft Shadow */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- IMAGE AREA --- */
.product-image-container {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: #f8f0f0; /* Light Pinkish Grey bg */
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.08); /* Smooth Zoom */
}

/* --- CUTE BADGE (The Fix) --- */
.discount-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #ff3f6c; /* Hot Pink */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px; /* Pill Shape */
    box-shadow: 0 4px 10px rgba(255, 63, 108, 0.3); /* Pink Glow */
    z-index: 2;
    width: fit-content;
}

/* --- HEART ICON (New!) --- */
.wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%; /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3f6c; /* Pink Heart */
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
    transition: 0.2s;
}

.product-card:hover .wishlist-icon {
    transform: scale(1.1);
    background: #fff;
}

/* --- TEXT DETAILS --- */
.product-info {
    padding: 15px;
    text-align: left;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d4af37; /* Gold Color for Brand */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- PRICE --- */
.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-weight: 700;
    color: #111;
    font-size: 1.1rem;
}

.mrp-price {
    font-size: 0.85rem;
    color: #aaa;
    text-decoration: line-through;
}

.off-text {
    font-size: 0.75rem;
    color: #ff3f6c; /* Pink Discount Text */
    font-weight: 700;
    background: #fff0f3; /* Light Pink BG */
    padding: 2px 6px;
    border-radius: 4px;
}

/* Mobile */
@media(max-width: 480px) {
    .shop-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .product-info { padding: 10px; }
    .wishlist-icon { width: 30px; height: 30px; font-size: 0.9rem; }
}
/* =========================================
   CUTE & PREMIUM PRODUCT CARDS (ADD TO BOTTOM)
   ========================================= */

/* --- 1. THE LAYOUT --- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); 
    gap: 25px;
    padding: 20px 0;
}

/* --- 2. CUTE CARD STYLE --- */
.product-card {
    background: #fff;
    border-radius: 16px; /* Super Rounded Corners */
    border: none;        /* Removes hard borders */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft Float Shadow */
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px); /* Floats up on hover */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- 3. IMAGE ZOOM --- */
.product-image-container {
    width: 100%;
    aspect-ratio: 3/4; /* Perfect Portrait Mode */
    overflow: hidden;
    position: relative;
    background: #f8f0f0; 
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.08); /* Slow smooth zoom */
}

/* --- 4. THE LONG BAR FIX (Crucial) --- */
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff3f6c; /* Hot Pink */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px; /* Pill Shape */
    box-shadow: 0 4px 10px rgba(255, 63, 108, 0.3);
    z-index: 2;
    
    /* PREVENTS STRETCHING */
    width: fit-content;
    max-width: 80px;
}

/* --- 5. HEART ICON --- */
.wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff3f6c;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
    transition: 0.2s;
}

.product-card:hover .wishlist-icon {
    transform: scale(1.1);
    background: #fff;
}

/* --- 6. TEXT STYLING --- */
.product-info { padding: 15px; text-align: left; }

.product-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d4af37; /* Gold Brand Name */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- 7. PRICE --- */
.price-row { display: flex; align-items: center; gap: 8px; }

.current-price { font-weight: 700; color: #111; font-size: 1.1rem; }

.mrp-price { font-size: 0.85rem; color: #aaa; text-decoration: line-through; }

.off-text {
    font-size: 0.75rem;
    color: #ff3f6c; /* Pink Text */
    font-weight: 700;
    background: #fff0f3;
    padding: 2px 6px;
    border-radius: 4px;
}
/* --- FINAL FIX FOR STRETCHED RED BAR --- */
.discount-badge {
    /* 1. Reset dimensions so it hugs the text */
    width: fit-content !important;
    height: auto !important;
    line-height: normal !important;
    
    /* 2. CRITICAL: Cut the anchor to the bottom so it stops stretching */
    bottom: auto !important; 
    right: auto !important;

    /* 3. Position it nicely in the top-left */
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    
    /* 4. Cute Styling */
    background: #ff3f6c !important; /* Hot Pink */
    color: #fff !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important; /* Pill shape */
    box-shadow: 0 4px 10px rgba(255, 63, 108, 0.3) !important;
    z-index: 10;
}
/* --- MAKE PRODUCT NAME BIGGER --- */
.product-title {
    font-size: 1.15rem !important;  /* Increased from 1rem */
    font-weight: 700 !important;    /* Made it Bolder */
    color: #111 !important;         /* Darkest Black for readability */
    margin-bottom: 5px !important;  /* Little space below it */
    letter-spacing: 0.5px !important; /* Slight spacing for premium look */
}
/* --- HIDE BRAND & BOOST PRODUCT NAME --- */

/* 1. Hide the Brand Name */
.product-brand {
    display: none !important;
}

/* 2. Make Product Name Bigger */
.product-title {
    font-size: 1.3rem !important;  /* Much bigger size */
    font-weight: 800 !important;    /* Extra Bold */
    margin-top: 5px !important;     /* Add space at the top */
    color: #000 !important;         /* Jet Black */
    letter-spacing: 0.5px !important;
}
/* =========================================
   SHREE STYLE TRANSFORMATION
   ========================================= */

/* 1. Center Align Everything */
.product-info {
    text-align: center !important;
    padding: 15px 10px !important;
}

/* 2. Hide the Brand Name (It's your site, they know it's you!) */
.product-brand {
    display: none !important;
}

/* 3. Make Product Name Elegant (Thinner & Dark Grey) */
.product-title {
    font-weight: 400 !important; /* Regular weight, not bold */
    font-size: 0.95rem !important;
    color: #444 !important;      /* Dark Grey, softer than black */
    margin-bottom: 8px !important;
}

/* 4. Make Selling Price RED */
.current-price {
    color: #e43e3d !important; /* The "Sale" Red color */
    font-weight: 700 !important;
}

/* 5. Center the Price Row */
.price-row {
    justify-content: center !important; /* Centers the price items */
    gap: 10px !important;
}

/* Optional: Make the badge rectangular like Shree? 
   Remove this section if you prefer your Round Cute Badge */
/* .discount-badge {
    border-radius: 2px !important; 
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
*/
/* =========================================
   FINAL FIX: SMALL IMAGE, BIG TEXT
   ========================================= */

/* 1. Make the Grid Columns Narrower (Shrinks Image) */
.shop-grid {
    display: grid;
    /* This width (160px) forces the image to be small */
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important; 
    gap: 15px !important;
    padding: 20px 0;
}

/* 2. FORCE The Card to Handle Big Text */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;       /* Flexbox helps organize layout */
    flex-direction: column; 
    height: 100%;        /* Ensures all cards are same height */
}

/* 3. The Image Container (Small & Cute) */
.product-image-container {
    width: 100%;
    aspect-ratio: 3/4;   /* Standard Portrait */
    overflow: hidden;
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 4. The Text Area (Big & Bold) */
.product-info {
    padding: 10px !important;
    text-align: center !important; /* Center looks better for big text on small card */
}

.product-title {
    font-size: 1.1rem !important;  /* BIG TEXT */
    font-weight: 700 !important;
    color: #111 !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
    
    /* Prevent text from getting cut off */
    white-space: normal !important; 
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limits to 2 lines max */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.current-price {
    font-size: 1rem !important;    /* BIG PRICE */
    font-weight: 700 !important;
    color: #e43e3d !important;     /* Red Price like Shree */
}

/* 5. Fix Badges so they don't cover the small image */
.discount-badge {
    font-size: 0.6rem !important;
    padding: 3px 6px !important;
    top: 8px !important;
    left: 8px !important;
}

.wishlist-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.8rem !important;
    top: 8px !important;
    right: 8px !important;
}
/* --- BIGGER ADD TO CART BUTTON --- */
.add-to-cart-btn {
    width: 100% !important;        /* Full width */
    padding: 18px 30px !important; /* Taller button */
    font-size: 1.2rem !important;  /* Bigger text */
    font-weight: 800 !important;   /* Extra Bold */
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    
    /* Premium Pink Style */
    background: #ff3f6c !important; 
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important; /* Soft corners */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 63, 108, 0.4) !important; /* Pink Glow */
    transition: transform 0.2s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px) !important; /* Lifts up on hover */
    box-shadow: 0 8px 25px rgba(255, 63, 108, 0.6) !important;
}

.add-to-cart-btn i {
    font-size: 1.4rem !important; /* Bigger Icon inside button */
}
/* --- PREMIUM TOAST NOTIFICATION --- */
#toast-container {
    position: fixed;
    top: 20px;          /* Move to TOP of screen (more visible) */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    min-width: 320px;
    background: #fff;  /* White Background */
    color: #333;       /* Dark Text */
    padding: 16px 24px;
    border-radius: 12px; /* Soft Rounded Corners */
    
    /* Premium Shadow & Border */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-left: 5px solid #ff3f6c; /* Hot Pink Accent Bar */
    
    display: flex;
    align-items: center;
    gap: 15px;
    
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    
    opacity: 0;
    transform: translateY(-20px); /* Slide down effect */
    animation: toastSlideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Success Icon Style */
.toast-icon {
    width: 28px;
    height: 28px;
    background: #ff3f6c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@keyframes toastSlideDown {
    to { opacity: 1; transform: translateY(0); }
}
/* --- ATTRACTIVE BIG BADGE --- */
.discount-badge {
    /* 1. Make it Bigger & Bolder */
    font-size: 0.85rem !important;  /* Increased size */
    font-weight: 800 !important;    /* Extra Bold text */
    padding: 6px 12px !important;   /* Larger pill shape */
    
    /* 2. Position it nicely */
    top: 10px !important;
    left: 10px !important;
    
    /* 3. Add a "Hot" Glow Effect */
    box-shadow: 0 4px 15px rgba(255, 63, 108, 0.5) !important; 
    
    /* 4. Ensure it doesn't stretch */
    width: fit-content !important;
    border-radius: 50px !important; /* Perfectly round pill */
    z-index: 20 !important;
}
/* --- QUICK SHOP BUTTON (HOVER EFFECT) --- */

/* 1. Style the Button */
.quick-shop-btn {
    position: absolute;
    bottom: -50px; /* Hidden below the image initially */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95); /* Semi-transparent White */
    color: #ff3f6c; /* Hot Pink Text */
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 12px 0;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 5;
    letter-spacing: 1px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.quick-shop-btn:hover {
    background: #ff3f6c; /* Turns Pink on Hover */
    color: #fff;        /* White Text */
}

/* 2. The Animation (Slide Up) */
.product-card:hover .quick-shop-btn {
    bottom: 0; /* Slides up to be visible */
}
/* --- CART PAGE STYLES --- */
.cart-items-container {
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-img-box {
    width: 70px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-info {
    flex-grow: 1;
}

.cart-info h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #333;
}

.cart-meta {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: #777;
}

/* Quantity Buttons */
.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
}

.qty-control button {
    border: none;
    background: transparent;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    color: #333;
}

/* Remove Icon */
.cart-remove {
    color: #ff3f6c;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 10px;
}

/* Checkout Section */
.cart-summary-box {
    margin-top: 20px;
    border-top: 2px dashed #eee;
    padding-top: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkout-btn-main {
    width: 100%;
    background: #ff3f6c;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}
/* --- FIX FOR CART BUTTONS --- */
.qty-control {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-control button {
    cursor: pointer !important;
    position: relative;
    z-index: 20;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-control button:hover {
    background: #f0f0f0;
}
/* --- PREMIUM CART ROW DESIGN --- */

.cart-items-container {
    background: transparent !important; /* Remove container white bg */
    box-shadow: none !important; /* Remove container shadow */
    padding: 0 !important;
}

.cart-item {
    background: #fff;       /* White Card */
    border-radius: 12px;    /* Rounded Corners */
    padding: 15px;          /* Inner Spacing */
    margin-bottom: 15px;    /* Space between rows */
    display: flex;
    align-items: center;
    gap: 15px;
    
    /* Soft Float Shadow */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
    position: relative; /* For absolute Delete button */
}

.cart-item:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cart-img-box {
    width: 80px;  /* Bigger Image */
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f8f8;
}

.cart-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.cart-details-row {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    align-items: center;
}

.cart-size-badge {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cart-price-text {
    font-weight: 700;
    color: #ff3f6c;
}

/* --- NEW BUTTON STYLES --- */
.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0; /* Connected buttons */
    margin-top: 5px;
    background: #f5f5f5;
    width: fit-content;
    border-radius: 6px;
    padding: 2px;
}

.qty-btn-minus, .qty-btn-plus {
    width: 32px;
    height: 32px;
    background: #fff;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.qty-btn-minus:hover, .qty-btn-plus:hover {
    background: #ff3f6c;
    color: #fff;
}

.qty-number {
    width: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Delete Button (Trash Can) */
.cart-remove-btn {
    background: #fff0f3; /* Light Pink Background */
    color: #ff3f6c;      /* Hot Pink Icon */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.cart-remove-btn:hover {
    background: #ff3f6c;
    color: #fff;
    transform: rotate(90deg); /* Cool rotation effect */
}
/* --- FORCED PREMIUM ROW DESIGN (v86) --- */

/* 1. The Container */
.cart-items-container {
    background: transparent !important;
    box-shadow: none !important;
    padding: 10px 0 !important;
}

/* 2. The Card (Row) */
.cart-item {
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
    margin-bottom: 15px !important;
    padding: 15px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important; /* Soft Shadow */
    border: 1px solid #f0f0f0 !important;
    position: relative !important;
}

/* 3. Image */
.cart-img-box {
    width: 70px !important;
    height: 90px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    margin-right: 15px !important;
}

.cart-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 4. Text Info */
.cart-info {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

.cart-info h4 {
    margin: 0 !important;
    font-size: 1rem !important;
    color: #333 !important;
    font-weight: 700 !important;
}

.cart-details-row {
    font-size: 0.9rem !important;
    color: #666 !important;
    margin-bottom: 5px !important;
}

.cart-price-text {
    color: #ff3f6c !important;
    font-weight: 700 !important;
    margin-left: 10px !important;
}

/* 5. The Buttons (+ / -) */
.qty-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    background: #f5f5f5 !important;
    border-radius: 6px !important;
    padding: 2px !important;
    width: fit-content !important;
}

.qty-btn {
    width: 30px !important;
    height: 30px !important;
    border: none !important;
    background: #fff !important;
    color: #333 !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.qty-btn:active {
    background: #e0e0e0 !important;
}

.qty-number {
    width: 30px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}

/* 6. Trash Can */
.cart-remove-btn {
    background: #fff0f3 !important;
    color: #ff3f6c !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: none !important;
    cursor: pointer !important;
}
/* =========================================
   PREMIUM CART DESIGN (2026 Style)
   ========================================= */

/* 1. The Container - Clean & Airy */
.cart-items-container {
    background: transparent !important;
    box-shadow: none !important;
    padding: 10px 0 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

/* 2. The Cart Item (Floating Card) */
.cart-item {
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    margin-bottom: 20px !important;
    padding: 15px !important;
    border-radius: 20px !important; /* Super Rounded */
    border: 1px solid rgba(0,0,0,0.04) !important;
    
    /* The "Float" Effect */
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.cart-item:hover {
    transform: translateY(-5px) !important; /* Lifts up on hover */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-color: rgba(255, 63, 108, 0.3) !important; /* Subtle Pink Border */
}

/* 3. The Image (Big & Beautiful) */
.cart-img-box {
    width: 100px !important;   /* Bigger Image */
    height: 120px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
}

.cart-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 4. The Product Info (Clean Typography) */
.cart-info {
    flex-grow: 1 !important;
    padding-left: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.cart-info h4 {
    margin: 0 0 6px 0 !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.5px !important;
}

/* Size & Price Badge */
.cart-details-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}

.cart-size-badge {
    background: #f4f6f8 !important;
    color: #555 !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    border: 1px solid #eee !important;
}

.cart-price-text {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #ff3f6c !important; /* Hot Pink Price */
}

/* 5. The Quantity Controller (Pill Shape) */
.qty-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    background: #f9f9f9 !important; /* Light Grey BG */
    border-radius: 50px !important;  /* Pill Shape */
    padding: 3px !important;
    width: fit-content !important;
    border: 1px solid #eee !important;
}

.qty-btn {
    width: 32px !important;
    height: 32px !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 50% !important; /* Circle Buttons */
    box-shadow: 0 2px 5px rgba(0,0,0,0.08) !important;
    color: #333 !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: 0.2s !important;
}

.qty-btn:hover {
    background: #ff3f6c !important;
    color: #fff !important;
    transform: scale(1.1) !important;
}

.qty-number {
    width: 35px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #333 !important;
}

/* 6. The Delete Button (Trash Icon) */
.cart-remove-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    border: none !important;
    background: #fff0f3 !important; /* Light Pink BG */
    color: #ff3f6c !important;      /* Hot Pink Icon */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    margin-right: 5px !important;
    transition: all 0.2s ease !important;
}

.cart-remove-btn:hover {
    background: #ff3f6c !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(255, 63, 108, 0.3) !important;
    transform: rotate(90deg) !important; /* Cool interaction */
}

/* 7. Total & Checkout (Fixed at Bottom) */
.cart-summary-box {
    margin-top: 30px !important;
    background: #fff !important;
    padding: 25px !important;
    border-radius: 20px !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
}

.cart-total-row {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
}

.checkout-btn-main {
    width: 100% !important;
    background: #ff3f6c !important;
    color: #fff !important;
    padding: 18px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(255, 63, 108, 0.4) !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
}

.checkout-btn-main:hover {
    transform: scale(1.02) !important;
}
/* =========================================
   COMPACT & SLEEK CART ROWS (Fix)
   ========================================= */

/* 1. Make the Card Slimmer */
.cart-item {
    padding: 10px 15px !important; /* Less padding */
    margin-bottom: 12px !important; /* Less gap between rows */
    height: auto !important;
    min-height: 90px !important;
    align-items: center !important;
    gap: 15px !important;
}

/* 2. Smaller Image (Clean Look) */
.cart-img-box {
    width: 60px !important;  /* Smaller width */
    height: 80px !important; /* Smaller height */
    border-radius: 8px !important;
    margin-right: 0 !important;
}

/* 3. Horizontal Layout for Info (Name - Details - Qty) */
.cart-info {
    display: flex !important;
    flex-direction: row !important; /* Side by side on desktop */
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 15px !important;
}

/* On Mobile, keep it stacked */
@media (max-width: 600px) {
    .cart-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
    }
}

/* 4. Text Adjustments */
.cart-info h4 {
    font-size: 0.95rem !important;
    margin: 0 !important;
    min-width: 100px; /* Give name some space */
}

.cart-details-row {
    margin: 0 !important;
    gap: 10px !important;
}

.cart-size-badge {
    font-size: 0.75rem !important;
    padding: 2px 6px !important;
}

.cart-price-text {
    font-size: 1rem !important;
}

/* 5. Smaller Quantity Buttons */
.qty-wrapper {
    transform: scale(0.9) !important; /* Shrink the whole button set */
    margin-top: 0 !important;
}

.qty-btn {
    width: 28px !important;
    height: 28px !important;
}

/* 6. Fix the Remove Button */
.cart-remove-btn {
    width: 32px !important;
    height: 32px !important;
    background: transparent !important; /* Clear background */
    border: 1px solid #eee !important;
    color: #ff3f6c !important;
}
.cart-remove-btn:hover {
    background: #ff3f6c !important;
    color: #fff !important;
    border-color: #ff3f6c !important;
}

/* 7. HIDE THE DUPLICATE CHECKOUT (The big one on the left) */
/* Since you have an 'Order Summary' on the right, we hide the left one */
.cart-summary-box {
    display: none !important;
}
/* --- CART PAGE LAYOUT --- */
.cart-page-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-page-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #222;
}

.cart-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Left is wider, Right is narrower */
    gap: 40px;
    align-items: start;
}

/* RIGHT: ORDER SUMMARY BOX */
.order-summary-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    position: sticky;
    top: 20px; /* Stays visible when scrolling */
}

.order-summary-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.free-text {
    color: #27ae60;
    font-weight: 700;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 20px 0;
    color: #111;
}

.checkout-btn {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #333;
}

.secure-badge {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #777;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-grid-layout {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
}
/* =========================================
   PREMIUM CHECKOUT PAGE
   ========================================= */

.checkout-body {
    background: #f8f9fa; /* Light Grey BG */
    min-height: 100vh;
}

.checkout-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.checkout-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* CONTAINER GRID */
.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form is wider */
    gap: 30px;
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
}

/* SECTIONS (White Cards) */
.checkout-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: fit-content;
}

.section-title {
    margin-top: 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: #333;
}

/* FORM STYLES */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #ff3f6c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 63, 108, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* RIGHT COLUMN: SUMMARY & PAYMENT */
.mini-cart-list {
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.mini-cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}

.total-row-checkout {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 800;
    color: #222;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

/* PAYMENT BOX */
.payment-box {
    background: #f0fdf4; /* Very Light Green */
    border: 1px solid #bbf7d0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.qr-container {
    background: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.qr-img {
    width: 140px;
    height: 140px;
}

.pay-title {
    font-weight: 700;
    color: #166534;
    margin: 0;
}

.upi-id-text {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 15px;
}

.utr-input-box label {
    display: block;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.confirm-pay-btn {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.confirm-pay-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.secure-msg {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

/* SUCCESS OVERLAY */
.success-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    animation: popUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
    width: 60px; height: 60px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

@keyframes popUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* --- FILE INPUT STYLE --- */
.file-input-style {
    padding: 10px;
    background: #fff;
    border: 1px dashed #27ae60; /* Green dashed border */
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    font-size: 0.9rem;
}

.file-input-style::file-selector-button {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    font-weight: bold;
}

.file-input-style:hover {
    background: #f0fdf4;
}
/* --- OR DIVIDER --- */
.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
}

.or-divider::before, .or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.or-divider span {
    padding: 0 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
    background: #f0fdf4; /* Matches parent BG */
}
/* --- ADMIN PANEL STYLES --- */
.admin-order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.order-status-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.view-proof-btn {
    display: inline-block;
    text-decoration: none;
    background: #e3f2fd;
    color: #2980b9;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.2s;
}

.view-proof-btn:hover {
    background: #2980b9;
    color: #fff;
}

.admin-card-actions {
    display: flex;
    gap: 10px;
}

.verify-btn {
    flex: 1;
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.action-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}
/* =========================================
   PREMIUM PROFILE DASHBOARD
   ========================================= */
.profile-body {
    background: #f4f6f8;
    min-height: 100vh;
}

.profile-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar + Main */
    gap: 30px;
}

/* SIDEBAR */
.profile-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.user-card {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 80px; height: 80px;
    background: #e3f2fd;
    color: #2980b9;
    font-size: 2rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
}

#profile-name { margin: 0; font-size: 1.2rem; }
#profile-email { color: #777; font-size: 0.9rem; margin: 5px 0 15px; }

.wallet-badge {
    background: #e8f5e9; color: #27ae60;
    font-size: 0.8rem; font-weight: 700;
    padding: 5px 10px; border-radius: 20px;
    display: inline-block;
}

.menu-btn {
    width: 100%;
    text-align: left;
    background: none; border: none;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s;
    margin-bottom: 5px;
}

.menu-btn i { width: 25px; }
.menu-btn:hover, .menu-btn.active { background: #f8f9fa; color: #111; font-weight: 600; }

.logout-link {
    background: none; border: 1px solid #ddd;
    padding: 5px 15px; border-radius: 20px;
    cursor: pointer; font-size: 0.85rem;
}

/* ORDER CARDS */
.profile-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.order-card {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.order-card:hover { border-color: #ccc; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.order-header {
    background: #fcfcfc;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-meta { font-size: 0.85rem; color: #666; }
.order-meta strong { color: #333; display: block; margin-bottom: 2px; }

.status-badge {
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-verified { background: #d1e7dd; color: #0f5132; }
.status-shipped { background: #cff4fc; color: #055160; }

.order-body { padding: 20px; }

.order-item-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.order-item-img {
    width: 60px; height: 60px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
    border: 1px solid #eee;
}

.order-item-info h4 { margin: 0 0 5px; font-size: 0.95rem; }
.order-item-info span { font-size: 0.85rem; color: #777; }

.order-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-btn {
    text-decoration: none;
    color: #2980b9;
    font-weight: 600;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .profile-container { grid-template-columns: 1fr; }
    .profile-sidebar { text-align: center; }
    .sidebar-menu { display: flex; justify-content: space-around; }
    .menu-btn { text-align: center; font-size: 0.8rem; padding: 10px; }
    .menu-btn i { display: block; width: 100%; margin-bottom: 5px; font-size: 1.2rem; }
}
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid #27ae60; /* Success green */
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
/* =========================================
   FIXED: PROFILE & ADDRESS INPUTS
   ========================================= */

/* 1. Ensure the profile container is the base layer */
.profile-container {
    position: relative;
    z-index: 1;
}

/* 2. Fix the Address Section specifically */
#section-address {
    position: relative;
    z-index: 10; /* Brings the form to the front */
}

/* 3. Ensure inputs are clickable and not blocked */
#section-address input, 
#section-address textarea {
    position: relative;
    z-index: 11;
    pointer-events: auto !important; /* Forces the mouse to interact with it */
    background-color: #ffffff !important;
    cursor: text;
    display: block;
    width: 100%;
}

/* 4. Remove any hidden overlays that might be blocking the view */
.loading-spinner, 
.success-overlay {
    pointer-events: none; /* Allows clicks to "pass through" when hidden */
}

#success-overlay[style*="display: flex"] {
    pointer-events: auto; /* Re-enables clicks only when successful order is shown */
}

/* 5. Improve Visibility of the active tab */
.menu-btn.active {
    background: #111 !important;
    color: #fff !important;
    font-weight: 700;
}

/* 6. Form Group Styling for better spacing */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}
/* Force inputs to be interactive */
#edit-phone, #edit-address, #edit-city, #edit-pincode {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 999 !important;
    cursor: text !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
}

/* Ensure no hidden containers are blocking */
#toast-container, .loading-spinner {
    pointer-events: none;
}
/* ====================== PERFECT UPGRADES ====================== */
html { scroll-behavior: smooth; }

#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
#main-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* Modern Ticker */
.announcement-bar {
    background: #111;
    color: #d4af37;
    padding: 10px 0;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.95rem;
}
.ticker-content {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Slider */
.hero-slider { position: relative; height: 85vh; overflow: hidden; }
.slide { 
    position: absolute; inset: 0; 
    background-size: cover; background-position: center; 
    opacity: 0; transition: opacity 0.8s ease; pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.45); color: white;
    border: none; width: 55px; height: 55px; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer; z-index: 10;
    transition: all 0.3s;
}
.slider-arrow:hover { background: #d4af37; color: #000; transform: translateY(-50%) scale(1.1); }
#prev-slide { left: 20px; }
#next-slide { right: 20px; }

.slider-dots {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
}
.dot {
    width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.7);
    cursor: pointer; transition: all 0.3s;
}
.dot.active { background: #d4af37; transform: scale(1.4); }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 55px; height: 55px; background: #d4af37; color: #000;
    border: none; border-radius: 50%; font-size: 1.4rem;
    cursor: pointer; display: none; align-items: center; justify-content: center;
    z-index: 999; box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}
.back-to-top:hover { transform: scale(1.1); }
/* =========================================
   CART ROW OVERRIDES (Forces Full Width)
   ========================================= */
.cart-items-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
}

.cart-item {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix for mobile screens so it doesn't break */
@media (max-width: 600px) {
    .cart-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
}
/* =========================================
   COLLECTION PAGE GRID FIX
   ========================================= */
#shop-grid, .collection-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 25px !important;
    padding: 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Force images to stay inside their cards */
.product-card {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-image-container img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 3/4 !important; /* Keeps the professional catalog shape */
    object-fit: cover !important;
}

/* Mobile View: 2 items per row */
@media (max-width: 600px) {
    #shop-grid, .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 10px !important;
    }
}
/* =========================================
   CATEGORY FILTER MENU
   ========================================= */
.category-filters { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    flex-wrap: wrap; 
    margin-bottom: 40px; 
    padding: 0 20px;
}

.filter-btn { 
    padding: 10px 25px; 
    border: 2px solid #111; 
    background: transparent; 
    color: #111; 
    border-radius: 30px; /* Pill shape */
    cursor: pointer; 
    font-weight: 600; 
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: 0.3s; 
}

.filter-btn:hover, .filter-btn.active { 
    background: #111; 
    color: #fff; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* --- MOBILE MENU LOGIC --- */
@media (max-width: 768px) {
    .header-nav {
        display: none !important; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Sits right below the header */
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }
    /* This class is added by JavaScript when the button is clicked */
    .header-nav.active {
        display: flex !important; 
    }
    .header-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: center;
    }
}