/* ============================================
   PADMAJA HOME FOODS — CONVERSION-FOCUSED REDESIGN
   Mobile-First | Amazon/Flipkart-Inspired Cards
   Brand Colors Preserved 100%
   ============================================ */

:root {
    --primary-gold: #F4C430;
    --dark-gold: #D4A017;
    --deep-brown: #3E2723;
    --warm-cream: #FFF8E1;
    --spice-red: #C62828;
    --text-dark: #1a1a1a;
    --whatsapp-green: #1DA851;
    --whatsapp-dark: #158A40;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--warm-cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--warm-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--dark-gold);
    border-radius: 3px;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    height: 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.brand-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--deep-brown);
    line-height: 1.2;
    font-weight: 700;
}

.brand-text span {
    font-size: 0.65rem;
    color: var(--spice-red);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-brown);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--spice-red);
}

.nav-links a.active {
    color: var(--spice-red);
    font-weight: 600;
}

.nav-cart {
    position: relative;
    cursor: pointer;
    padding: 8px;
    font-size: 1.2rem;
    color: var(--deep-brown);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-cart:hover {
    color: var(--spice-red);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--spice-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    font-size: 1.4rem;
    color: var(--deep-brown);
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    width: 85%;
    max-width: 360px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.mobile-overlay.active .mobile-nav {
    transform: translateY(0);
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 8px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--deep-brown);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 14px;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.mobile-nav a:hover {
    background: var(--warm-cream);
    color: var(--spice-red);
}

.close-mobile {
    position: absolute;
    top: 16px;
    right: 16px;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ============================================
   SHOP HERO / TOP BAR
   ============================================ */
.shop-topbar {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--deep-brown) 0%, #5d4037 100%);
    padding: 24px 16px;
    text-align: center;
    color: white;
}

.shop-topbar h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.shop-topbar p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   SEARCH & FILTER BAR (Sticky)
   ============================================ */
.shop-controls {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: var(--warm-cream);
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
}

.search-container {
    max-width: 700px;
    margin: 0 auto 12px;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--radius-full);
    padding: 4px 6px 4px 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.2s;
}

.search-box:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 2px 12px rgba(244, 196, 48, 0.25);
}

.search-box i {
    color: var(--gray-500);
    font-size: 1rem;
    margin-right: 10px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--deep-brown);
    padding: 10px 0;
    background: transparent;
}

.search-box input::placeholder {
    color: var(--gray-400);
}

.search-clear {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 8px;
    font-size: 0.9rem;
    display: none;
    transition: color 0.2s;
}

.search-clear.active {
    display: block;
}

.search-clear:hover {
    color: var(--spice-red);
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 50;
    border: 1px solid var(--gray-200);
}

.search-results.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

.search-result-item {
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--warm-cream);
}

.search-result-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--gray-100);
}

.search-result-name {
    font-weight: 600;
    color: var(--deep-brown);
    font-size: 0.9rem;
}

.search-result-category {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.search-no-results {
    padding: 24px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Category Filter Pills */
.category-filter {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    padding-right: 16px;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 8px 18px;
    border: 1.5px solid var(--gray-300);
    background: white;
    color: var(--deep-brown);
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    background: var(--warm-cream);
}

.filter-btn.active {
    background: var(--spice-red);
    color: white;
    border-color: var(--spice-red);
    font-weight: 600;
}

/* ============================================
   FEATURED BANNER (On Shop Page)
   ============================================ */
.featured-banner {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    padding: 16px;
    margin: 16px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
}

.featured-banner img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
    background: white;
}

.featured-banner-content {
    flex: 1;
}

.featured-banner-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--deep-brown);
    margin-bottom: 4px;
}

.featured-banner-content p {
    font-size: 0.8rem;
    color: var(--deep-brown);
    opacity: 0.8;
    margin-bottom: 8px;
}

.featured-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--deep-brown);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.featured-banner-btn:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* ============================================
   PRODUCT SECTIONS
   ============================================ */
.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

.products-section {
    display: none;
    margin-bottom: 32px;
}

.products-section.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 4px;
}

.section-header-row h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header-row h3 i {
    color: var(--spice-red);
    font-size: 1.1rem;
}

.section-count {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================================
   PRODUCT GRID — Amazon/Flipkart Mobile Style
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

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

.product-card-link {
    display: block;
    flex: 1;
}

/* Product Image */
.product-image {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #faf8f5 0%, var(--warm-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 16px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Badges */
.product-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-bestseller {
    background: var(--spice-red);
    color: white;
}

.badge-popular {
    background: var(--primary-gold);
    color: var(--deep-brown);
}

.badge-new {
    background: var(--whatsapp-green);
    color: white;
}

.badge-premium {
    background: var(--deep-brown);
    color: var(--primary-gold);
}

/* Share Button */
.product-share-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.product-share-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--deep-brown);
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-brown);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.product-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Price Row */
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--spice-red);
}

.product-price span {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* Weight Options */
.weight-options {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.weight-btn {
    padding: 5px 10px;
    border: 1.5px solid var(--gray-300);
    background: white;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.weight-btn:hover {
    border-color: var(--primary-gold);
    background: var(--warm-cream);
}

.weight-btn.active {
    border-color: var(--spice-red);
    background: var(--spice-red);
    color: white;
    font-weight: 600;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.btn-whatsapp {
    width: 100%;
    background: var(--whatsapp-green);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(29, 168, 81, 0.3);
}

.btn-whatsapp:active {
    transform: scale(0.98);
}

.btn-cart {
    width: 100%;
    background: white;
    color: var(--deep-brown);
    border: 1.5px solid var(--deep-brown);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-cart:hover {
    background: var(--deep-brown);
    color: white;
    transform: scale(1.02);
}

.btn-cart.added {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: white;
}

/* Quick View Link */
.quick-view-link {
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    transition: color 0.2s;
    border-top: 1px solid var(--gray-100);
    margin-top: 4px;
}

.quick-view-link:hover {
    color: var(--spice-red);
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
    display: none;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 1999;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--warm-cream);
    flex-shrink: 0;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    font-size: 1.4rem;
    color: var(--deep-brown);
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}

.cart-close:hover {
    color: var(--spice-red);
}

.cart-items {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: floatChilli 2s ease-in-out infinite;
}

@keyframes floatChilli {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

.cart-empty h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 8px;
}

.cart-empty p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    gap: 12px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--deep-brown);
    margin-bottom: 4px;
    font-weight: 600;
}

.cart-item-weight {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.cart-item-price {
    display: block;
    font-size: 0.8rem;
    color: var(--spice-red);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 3px;
}

.quantity-control button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--deep-brown);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.quantity-control button:hover {
    background: var(--spice-red);
    color: white;
}

.quantity-control span {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    color: var(--deep-brown);
    font-size: 0.9rem;
}

.cart-item-total {
    font-weight: 700;
    color: var(--spice-red);
    font-size: 0.95rem;
    min-width: 50px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s;
    padding: 6px;
}

.cart-item-remove:hover {
    color: var(--spice-red);
}

.cart-footer {
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--gray-200);
    background: var(--warm-cream);
    flex-shrink: 0;
}

.cart-delivery-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 12px;
    padding: 10px 12px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.cart-delivery-note i {
    color: var(--dark-gold);
    margin-top: 2px;
    font-size: 0.8rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
}

.cart-total span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-brown);
}

.cart-total span:last-child {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--spice-red);
}

.cart-order-btn {
    width: 100%;
    background: var(--whatsapp-green);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    text-decoration: none;
}

.cart-order-btn:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.01);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ============================================
   STICKY CART BUTTON (Mobile)
   ============================================ */
.sticky-cart-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: var(--spice-red);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.4);
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.2);
}

.sticky-cart-btn.active {
    display: flex;
    animation: slideUp 0.4s ease;
}

.sticky-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.5);
}

.sticky-cart-count {
    background: white;
    color: var(--spice-red);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.sticky-cart-total {
    font-size: 1rem;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-page {
    padding-top: 60px;
    min-height: 100vh;
    background: var(--warm-cream);
}

.pdp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

.pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pdp-breadcrumb a {
    color: var(--gray-600);
    transition: color 0.2s;
}

.pdp-breadcrumb a:hover {
    color: var(--spice-red);
}

.pdp-breadcrumb .current {
    color: var(--deep-brown);
    font-weight: 500;
}

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

@media (min-width: 768px) {
    .pdp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .pdp-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
    }
}

/* PDP Image Gallery */
.pdp-image-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.pdp-main-image {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #faf8f5 0%, var(--warm-cream) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
}

.pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.pdp-main-image:hover img {
    transform: scale(1.05);
}

.pdp-thumbnails {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pdp-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--warm-cream);
}

.pdp-thumbnail.active,
.pdp-thumbnail:hover {
    border-color: var(--primary-gold);
}

.pdp-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PDP Info */
.pdp-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pdp-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pdp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-brown);
    line-height: 1.3;
    font-weight: 700;
}

.pdp-subtitle {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Rating removed — only real reviews when available */

.pdp-price-block {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.pdp-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--spice-red);
}

.pdp-tax-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

/* Weight Selector on PDP */
.pdp-weight-section {
    margin-top: 8px;
}

.pdp-weight-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 10px;
    display: block;
}

.pdp-weight-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pdp-weight-btn {
    padding: 10px 18px;
    border: 2px solid var(--gray-300);
    background: white;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 80px;
}

.pdp-weight-btn .w-price {
    font-size: 0.75rem;
    color: var(--spice-red);
    font-weight: 600;
}

.pdp-weight-btn:hover {
    border-color: var(--primary-gold);
    background: var(--warm-cream);
}

.pdp-weight-btn.active {
    border-color: var(--spice-red);
    background: var(--spice-red);
    color: white;
}

.pdp-weight-btn.active .w-price {
    color: rgba(255,255,255,0.9);
}

/* PDP Actions */
.pdp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.pdp-actions .btn-whatsapp {
    padding: 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.pdp-actions .btn-cart {
    padding: 14px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.pdp-delivery-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 12px 0;
}

.pdp-delivery-info i {
    color: var(--dark-gold);
    width: 20px;
}

.pdp-delivery-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* PDP Description */
.pdp-description {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-top: 8px;
}

.pdp-description h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--deep-brown);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-description h4 i {
    color: var(--spice-red);
}

.pdp-description p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.pdp-description ul {
    list-style: none;
    padding: 0;
}

.pdp-description ul li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}

.pdp-description ul li:last-child {
    border-bottom: none;
}

.pdp-description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--whatsapp-green);
    font-weight: 700;
}

/* Related Products on PDP */
.pdp-related {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.pdp-related h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 16px;
}

/* ============================================
   HOME PAGE (Brand/Hero)
   ============================================ */
.hero {
    margin-top: 60px;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--warm-cream) 0%, #fff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244,196,48,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 60px;
    }
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-brown);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content h2 span {
    color: var(--spice-red);
    display: block;
}

.hero-content p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: var(--deep-brown);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.85rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-primary {
    background: var(--spice-red);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(198, 40, 40, 0.25);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 40, 40, 0.35);
    background: #b71c1c;
}

.btn-secondary {
    background: transparent;
    color: var(--deep-brown);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--deep-brown);
    transition: all 0.3s;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    background: var(--deep-brown);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--spice-red);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* Home Features */
.home-features {
    background: var(--deep-brown);
    padding: 60px 20px;
    color: white;
    position: relative;
}

.home-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    background-size: 80px;
    opacity: 0.5;
}

.home-features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .home-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-feature {
    text-align: center;
    padding: 20px;
}

.home-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(244,196,48,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.home-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-gold);
}

.home-feature p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Reviews on Home */
.home-reviews {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.home-reviews-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 8px;
}

.home-reviews-header p {
    color: var(--gray-500);
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}

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

.review-stars {
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--spice-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-author h4 {
    font-size: 0.9rem;
    color: var(--deep-brown);
    margin-bottom: 2px;
    font-weight: 600;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    padding: 48px 20px;
    text-align: center;
}

.contact-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-brown);
    margin-bottom: 12px;
}

.contact-banner p {
    font-size: 1rem;
    color: var(--deep-brown);
    margin-bottom: 24px;
    opacity: 0.85;
}

.contact-banner .phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-brown);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.contact-banner .phone:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.contact-banner .phone i {
    color: #25D366;
    font-size: 1.6rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--deep-brown);
    color: rgba(255,255,255,0.75);
    padding: 48px 20px 24px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto 16px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.footer-logo h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 6px;
}

.footer-logo p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--deep-brown);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    margin-top: 24px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    width: 90%;
    max-width: 400px;
}

.toast {
    background: var(--deep-brown);
    color: white;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
    pointer-events: auto;
}

.toast i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.toast.success {
    background: var(--whatsapp-green);
}

.toast.success i {
    color: white;
}

@keyframes toastIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(20px); opacity: 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1) rotate(0); }
    15% { transform: scale(1.3) rotate(-8deg); }
    30% { transform: scale(1.15) rotate(4deg); }
    45% { transform: scale(1.25) rotate(-4deg); }
    60% { transform: scale(1.1) rotate(2deg); }
    75% { transform: scale(1.12) rotate(-1deg); }
    90% { transform: scale(1.05) rotate(0.5deg); }
}

.cart-icon.cart-bounce {
    animation: cartBounce 0.5s ease;
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 24px 0 40px;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }

    .hero-image img {
        max-height: 220px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .shop-topbar h2 {
        font-size: 1.3rem;
    }

    .shop-topbar p {
        font-size: 0.8rem;
    }

    .products-grid {
        gap: 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .weight-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .btn-whatsapp {
        padding: 10px;
        font-size: 0.8rem;
    }

    .btn-cart {
        padding: 8px;
        font-size: 0.75rem;
    }

    .pdp-title {
        font-size: 1.3rem;
    }

    .pdp-price {
        font-size: 1.6rem;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .contact-banner h3 {
        font-size: 1.5rem;
    }

    .contact-banner .phone {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .footer-logo img {
        height: 60px;
    }
}

@media (max-width: 400px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-image {
        padding: 10px;
    }

    .product-info {
        padding: 8px;
    }

    .weight-btn {
        padding: 3px 6px;
        font-size: 0.65rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--primary-gold);
    color: var(--deep-brown);
}

/* ============================================
   TRUST BADGES — Real Business Credentials
   ============================================ */

/* ============================================
   OFFERS SECTION — Real Offers Only
   ============================================ */
.offers-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff 0%, var(--warm-cream) 100%);
}

.offers-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.offers-section .section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.offers-section .section-header h3 i {
    color: var(--spice-red);
}

.offers-section .section-header p {
    color: var(--gray-500);
    font-size: 1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}

.offer-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.offer-card.featured {
    border: 2px solid var(--primary-gold);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--spice-red);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-card.featured .offer-badge {
    background: var(--primary-gold);
    color: var(--deep-brown);
}

.offer-content {
    padding: 28px 24px;
    position: relative;
}

.offer-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 8px;
}

.offer-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.offer-price .current-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--spice-red);
}

.offer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp-green);
    color: white;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    width: 100%;
}

.offer-btn:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.02);
}

.trust-section {
    background: linear-gradient(135deg, var(--warm-cream) 0%, #fff 100%);
    padding: 48px 20px;
    text-align: center;
}

.trust-section-header {
    margin-bottom: 32px;
}

.trust-section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-brown);
    margin-bottom: 8px;
}

.trust-section-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.trust-badges-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .trust-badges-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.trust-badge {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.trust-badge-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--warm-cream) 0%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--spice-red);
    border: 2px solid var(--primary-gold);
}

.trust-badge h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin: 0;
}

.trust-badge p {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
    margin: 0;
}




/* ============================================
   BEST SELLERS SECTION
   ============================================ */
.best-sellers-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.best-sellers-header {
    text-align: center;
    margin-bottom: 32px;
}

.best-sellers-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.best-sellers-header h3 i {
    color: var(--spice-red);
}

.best-sellers-header p {
    color: var(--gray-500);
    font-size: 1rem;
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

@media (min-width: 640px) {
    .best-sellers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.best-seller-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.best-seller-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.best-seller-image {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #faf8f5 0%, var(--warm-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 16px;
}

.best-seller-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.best-seller-card:hover .best-seller-image img {
    transform: scale(1.08);
}

.best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--spice-red);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.best-seller-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.best-seller-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 4px;
    line-height: 1.3;
}

.best-seller-info p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1;
}

.best-seller-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--spice-red);
    margin-bottom: 10px;
}

.best-seller-price span {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
}

.best-seller-btn {
    width: 100%;
    background: var(--whatsapp-green);
    color: white;
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.best-seller-btn:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.02);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--deep-brown);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    margin: 0 auto;
}

.view-all-btn:hover {
    background: var(--spice-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   SOCIAL CARDS — REDESIGNED
   ============================================ */
.social-section {
    background: linear-gradient(135deg, var(--warm-cream) 0%, #fff 100%);
    padding: 60px 20px;
}

.social-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}



.social-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .social-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.social-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

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

.social-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.social-card-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card-icon.youtube {
    background: #FF0000;
}

.social-card-icon.whatsapp {
    background: #1DA851;
}

.social-card-handle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin: 0;
}

.social-card-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.social-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 220px;
    border: 2px solid transparent;
}

.social-card-btn.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-card-btn.instagram-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(220, 39, 67, 0.3);
}

.social-card-btn

.social-card-btn.youtube-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
}

.social-card-btn.whatsapp-btn {
    background: #1DA851;
    color: white;
}

.social-card-btn.whatsapp-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(29, 168, 81, 0.3);
}




/* ============================================
   MOBILE SHOP REDESIGN — BIGBASKET/BLINKIT STYLE
   Compact 2-column grocery cards
   Mobile only (≤767px). Desktop unchanged.
   ============================================ */

/* ---- Base overflow prevention ---- */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ---- Container max-width safety ---- */
.nav-container,
.shop-container,
.pdp-container,
.hero-container,
.home-features-grid,
.reviews-grid,
.offers-grid,
.trust-badges-grid,
.best-sellers-grid,
.social-cards-grid,
.footer-content {
    max-width: 100%;
}

/* ============================================
   1. PRODUCT GRID — 2-COLUMN COMPACT
   ============================================ */

@media (max-width: 767px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        align-items: stretch;
    }
}

/* ============================================
   2. PRODUCT CARD — COMPACT VERTICAL
   ============================================ */

@media (max-width: 767px) {
    .product-card {
        display: flex;
        flex-direction: column;
        background: white;
        border-radius: var(--radius-sm);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-200);
        transition: all 0.2s ease;
        position: relative;
        height: 100%;
        min-height: 0;
    }

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

    /* ---- Image Section (Top, ~55% of card) ---- */
    .product-card > .product-card-link {
        display: block;
        flex: 0 0 auto;
    }

    .product-card > .product-card-link .product-image {
        aspect-ratio: 1 / 1;
        background: linear-gradient(135deg, #faf8f5 0%, var(--warm-cream) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 12px;
        width: 100%;
    }

    .product-card > .product-card-link .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

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

    /* ---- Badges ---- */
    .product-badges {
        position: absolute;
        top: 6px;
        left: 6px;
        display: flex;
        flex-direction: column;
        gap: 3px;
        z-index: 2;
    }

    .badge {
        padding: 3px 8px;
        border-radius: var(--radius-sm);
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* ---- Hide Share Button ---- */
    .product-share-btn {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255,255,255,0.92);
        border: 1px solid var(--gray-200);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-500);
        font-size: 0.7rem;
        cursor: pointer;
        transition: all 0.2s;
        z-index: 3;
        backdrop-filter: blur(4px);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        padding: 0;
    }

    .product-share-btn:hover {
        background: var(--primary-gold);
        border-color: var(--primary-gold);
        color: var(--deep-brown);
        transform: scale(1.1);
    }

    .product-share-btn:active {
        transform: scale(0.95);
    }

    /* ---- Product Info (Bottom, compact) ---- */
    .product-card > .product-info {
        flex: 1 1 auto;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-width: 0;
        gap: 0;
    }

    /* ---- Inner link: name + price only (NO description) ---- */
    .product-info > .product-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
        margin-bottom: 6px;
    }

    .product-info > .product-card-link .product-name {
        font-family: 'Poppins', sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--deep-brown);
        line-height: 1.3;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 0;
    }

    /* ---- HIDE DESCRIPTION ON MOBILE LISTING ---- */
    .product-info > .product-card-link .product-desc {
        display: none !important;
    }

    .product-info > .product-card-link .product-price-row {
        display: flex;
        align-items: baseline;
        gap: 4px;
        margin-bottom: 0;
    }

    .product-info > .product-card-link .product-price {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--spice-red);
        line-height: 1.2;
    }

    .product-info > .product-card-link .product-price span {
        font-size: 0.68rem;
        color: var(--gray-500);
        font-weight: 400;
    }

    /* ---- Weight Options (Compact single row) ---- */
    .product-info > .weight-options {
        display: flex;
        gap: 4px;
        margin-bottom: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 2px;
    }

    .product-info > .weight-options::-webkit-scrollbar {
        display: none;
    }

    .product-info > .weight-options .weight-btn {
        padding: 3px 8px;
        border: 1.5px solid var(--gray-300);
        background: white;
        border-radius: var(--radius-sm);
        font-family: 'Poppins', sans-serif;
        font-size: 0.65rem;
        font-weight: 500;
        color: var(--gray-600);
        cursor: pointer;
        transition: all 0.2s;
        flex: 0 0 auto;
        text-align: center;
        min-height: 26px;
        min-width: 36px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }

    .product-info > .weight-options .weight-btn:hover {
        border-color: var(--primary-gold);
        background: var(--warm-cream);
    }

    .product-info > .weight-options .weight-btn.active {
        border-color: var(--spice-red);
        background: var(--spice-red);
        color: white;
        font-weight: 600;
    }

    /* ---- Product Actions: Single compact Add to Cart ---- */
    .product-info > .product-actions {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: auto;
        width: 100%;
    }

    .product-info > .product-actions .btn-whatsapp {
        display: none !important;
    }

    .product-info > .product-actions .btn-cart {
        width: 100%;
        background: var(--deep-brown);
        color: white;
        border: none;
        padding: 10px 12px;
        border-radius: var(--radius-sm);
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 0.78rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: all 0.2s;
        min-height: 38px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .product-info > .product-actions .btn-cart:hover {
        background: var(--spice-red);
        transform: scale(1.02);
        box-shadow: 0 2px 8px rgba(198, 40, 40, 0.2);
    }

    .product-info > .product-actions .btn-cart:active {
        transform: scale(0.98);
    }

    .product-info > .product-actions .btn-cart.added {
        background: var(--whatsapp-green);
    }

    /* ---- Hide Quick View Link ---- */
    .product-info > .quick-view-link {
        display: none !important;
    }
}

/* ============================================
   3. SMALL PHONES — ≤374px
   ============================================ */

@media (max-width: 374px) {
    .products-grid {
        gap: 8px;
    }

    .product-card > .product-card-link .product-image {
        padding: 8px;
    }

    .product-card > .product-info {
        padding: 8px;
    }

    .product-info > .product-card-link .product-name {
        font-size: 0.75rem;
        line-height: 1.25;
        margin-bottom: 3px;
    }

    .product-info > .product-card-link .product-price {
        font-size: 0.88rem;
    }

    .product-info > .weight-options {
        margin-bottom: 6px;
        gap: 3px;
    }

    .product-info > .weight-options .weight-btn {
        padding: 2px 6px;
        font-size: 0.6rem;
        min-height: 24px;
        min-width: 32px;
    }

    .product-info > .product-actions .btn-cart {
        padding: 8px 10px;
        font-size: 0.72rem;
        min-height: 34px;
    }
}

/* ============================================
   4. MEDIUM PHONES — 375px to 413px
   ============================================ */

@media (min-width: 375px) and (max-width: 413px) {
    .product-card > .product-info {
        padding: 10px;
    }

    .product-info > .product-card-link .product-name {
        font-size: 0.85rem;
    }

    .product-info > .product-card-link .product-price {
        font-size: 1rem;
    }

    .product-info > .weight-options .weight-btn {
        padding: 3px 9px;
        font-size: 0.68rem;
    }

    .product-info > .product-actions .btn-cart {
        font-size: 0.8rem;
        min-height: 40px;
    }
}

/* ============================================
   5. LARGER PHONES — 414px to 767px
   ============================================ */

@media (min-width: 414px) and (max-width: 767px) {
    .products-grid {
        gap: 12px;
    }

    .product-card > .product-card-link .product-image {
        padding: 14px;
    }

    .product-card > .product-info {
        padding: 12px;
    }

    .product-info > .product-card-link .product-name {
        font-size: 0.9rem;
    }

    .product-info > .product-card-link .product-price {
        font-size: 1.05rem;
    }

    .product-info > .weight-options .weight-btn {
        padding: 4px 10px;
        font-size: 0.7rem;
        min-height: 28px;
    }

    .product-info > .product-actions .btn-cart {
        font-size: 0.82rem;
        padding: 11px 14px;
        min-height: 42px;
    }
}

/* ============================================
   6. CATEGORY TABS — Horizontal scroll
   ============================================ */

.category-filter {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    padding-left: 4px;
    padding-right: 16px;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 36px;
}

/* ============================================
   7. HEADER / NAVIGATION — Mobile
   ============================================ */

@media (max-width: 768px) {
    .nav-container {
        height: 52px;
        padding: 8px 12px;
    }

    .logo-section img {
        height: 36px;
    }

    .brand-text h1 {
        font-size: 0.95rem;
    }

    .brand-text span {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .mobile-menu {
        padding: 6px;
        font-size: 1.3rem;
    }

    .nav-cart {
        padding: 6px;
        font-size: 1.1rem;
    }

    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
        top: 0;
        right: 0;
    }
}

/* ============================================
   8. SHOP TOP BAR — Mobile
   ============================================ */

@media (max-width: 768px) {
    .shop-topbar {
        margin-top: 52px;
        padding: 14px 12px;
    }

    .shop-topbar h2 {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .shop-topbar p {
        font-size: 0.8rem;
        margin-top: 2px;
    }
}

/* ============================================
   9. SEARCH & FILTER — Mobile
   ============================================ */

@media (max-width: 768px) {
    .shop-controls {
        top: 52px;
        padding: 10px 12px;
    }

    .search-container {
        margin-bottom: 10px;
    }

    .search-box input {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .category-filter {
        gap: 6px;
    }
}

/* ============================================
   10. SHOP CONTAINER — Mobile padding
   ============================================ */

@media (max-width: 768px) {
    .shop-container {
        padding: 12px;
        padding-bottom: 80px;
    }

    .section-header-row {
        margin-bottom: 12px;
        padding: 0 2px;
    }

    .section-header-row h3 {
        font-size: 1.1rem;
    }

    .section-count {
        font-size: 0.75rem;
    }
}

/* ============================================
   11. FLOATING CART — Blinkit-style compact
   ============================================ */

@media (max-width: 768px) {
    .sticky-cart-btn {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
        border-radius: 50%;
        padding: 0;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--spice-red);
        color: white;
        box-shadow: 0 4px 16px rgba(198, 40, 40, 0.4);
        z-index: 998;
        border: 2px solid rgba(255,255,255,0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .sticky-cart-btn:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
    }

    .sticky-cart-btn:active {
        transform: scale(0.95);
    }

    .sticky-cart-btn .fa-shopping-cart {
        font-size: 1.2rem;
    }

    .sticky-cart-count {
        position: absolute;
        top: -4px;
        right: -4px;
        background: white;
        color: var(--spice-red);
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 700;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .sticky-cart-total {
        display: none !important;
    }
}

/* ============================================
   12. PRODUCT DETAIL PAGE — Mobile
   ============================================ */

@media (max-width: 768px) {
    .pdp-container {
        padding: 12px;
        padding-bottom: 80px;
    }

    .pdp-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 12px;
        gap: 6px;
    }

    .pdp-image-section {
        padding: 12px;
        border-radius: var(--radius-md);
    }

    .pdp-main-image {
        border-radius: var(--radius-sm);
        margin-bottom: 10px;
    }

    .pdp-thumbnails {
        gap: 6px;
    }

    .pdp-thumbnail {
        width: 48px;
        height: 48px;
    }

    .pdp-info-section {
        gap: 12px;
    }

    .pdp-title {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .pdp-subtitle {
        font-size: 0.88rem;
    }

    .pdp-price-block {
        padding: 16px;
        border-radius: var(--radius-md);
    }

    .pdp-price {
        font-size: 1.5rem;
    }

    .pdp-tax-note {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .pdp-weight-section {
        margin-top: 6px;
    }

    .pdp-weight-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .pdp-weight-options {
        gap: 8px;
    }

    .pdp-weight-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 70px;
        min-height: 44px;
    }

    .pdp-weight-btn .w-price {
        font-size: 0.7rem;
    }

    .pdp-actions {
        gap: 8px;
        margin-top: 6px;
    }

    .pdp-actions .btn-whatsapp {
        padding: 14px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .pdp-actions .btn-cart {
        padding: 12px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .pdp-delivery-info {
        gap: 6px;
        padding: 10px 0;
        font-size: 0.8rem;
    }

    .pdp-delivery-row {
        gap: 6px;
    }

    .pdp-delivery-row i {
        width: 18px;
        font-size: 0.85rem;
    }

    .pdp-description {
        padding: 16px;
        border-radius: var(--radius-md);
        margin-top: 6px;
    }

    .pdp-description h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .pdp-description p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .pdp-description ul li {
        font-size: 0.8rem;
        padding: 5px 0 5px 20px;
    }

    .pdp-related {
        margin-top: 24px;
        padding-top: 20px;
    }

    .pdp-related h3 {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }
}

/* ============================================
   13. CART SIDEBAR — Mobile
   ============================================ */

@media (max-width: 768px) {
    .cart-sidebar {
        max-width: 100%;
        width: 100%;
    }

    .cart-header {
        padding: 16px 20px;
    }

    .cart-header h3 {
        font-size: 1.15rem;
    }

    .cart-items {
        padding: 12px;
    }

    .cart-item {
        padding: 12px 0;
        gap: 10px;
    }

    .cart-item-info h4 {
        font-size: 0.9rem;
    }

    .cart-item-weight,
    .cart-item-price {
        font-size: 0.75rem;
    }

    .quantity-control button {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
        min-height: 32px;
        min-width: 32px;
    }

    .quantity-control span {
        font-size: 0.85rem;
        min-width: 20px;
    }

    .cart-item-total {
        font-size: 0.9rem;
        min-width: 45px;
    }

    .cart-footer {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 12px));
    }

    .cart-delivery-note {
        font-size: 0.7rem;
        padding: 8px 10px;
        margin-bottom: 10px;
    }

    .cart-total span:first-child {
        font-size: 0.95rem;
    }

    .cart-total span:last-child {
        font-size: 1.2rem;
    }

    .cart-order-btn {
        padding: 14px;
        font-size: 0.95rem;
        min-height: 48px;
    }
}

/* ============================================
   14. HOME PAGE — Mobile
   ============================================ */

@media (max-width: 768px) {
    .hero {
        margin-top: 52px;
        min-height: auto;
        padding: 20px 0 32px;
    }

    .hero-container {
        padding: 24px 16px;
        gap: 28px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 0.92rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 24px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 22px;
        font-size: 0.88rem;
        min-height: 44px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-image img {
        max-height: 200px;
    }

    .home-features {
        padding: 40px 16px;
    }

    .home-features-grid {
        gap: 16px;
    }

    .home-feature {
        padding: 16px 12px;
    }

    .home-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .home-feature h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .home-feature p {
        font-size: 0.78rem;
    }

    .home-reviews {
        padding: 40px 16px;
    }

    .home-reviews-header h3 {
        font-size: 1.5rem;
    }

    .home-reviews-header p {
        font-size: 0.9rem;
    }

    .review-card {
        padding: 18px;
    }

    .review-stars {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .review-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .contact-banner {
        padding: 36px 16px;
    }

    .contact-banner h3 {
        font-size: 1.4rem;
    }

    .contact-banner p {
        font-size: 0.9rem;
    }

    .contact-banner .phone {
        font-size: 1rem;
        padding: 12px 24px;
        min-height: 48px;
    }

    .offers-section {
        padding: 40px 16px;
    }

    .offers-section .section-header h3 {
        font-size: 1.5rem;
    }

    .offers-section .section-header p {
        font-size: 0.9rem;
    }

    .offer-content {
        padding: 24px 18px !important;
    }

    .offer-content h4 {
        font-size: 1.15rem !important;
    }

    .offer-content p {
        font-size: 0.88rem !important;
    }

    .trust-section {
        padding: 36px 16px;
    }

    .trust-section-header h3 {
        font-size: 1.4rem;
    }

    .trust-section-header p {
        font-size: 0.9rem;
    }

    .trust-badges-grid {
        gap: 12px;
    }

    .trust-badge {
        padding: 18px 12px;
    }

    .trust-badge-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .trust-badge h4 {
        font-size: 0.85rem;
    }

    .trust-badge p {
        font-size: 0.7rem;
    }

    .best-sellers-section {
        padding: 40px 16px;
    }

    .best-sellers-header h3 {
        font-size: 1.5rem;
    }

    .best-sellers-header p {
        font-size: 0.9rem;
    }

    .best-sellers-grid {
        gap: 12px;
    }

    .best-seller-image {
        padding: 12px;
    }

    .best-seller-info {
        padding: 12px;
    }

    .best-seller-info h4 {
        font-size: 0.85rem;
    }

    .best-seller-info p {
        font-size: 0.72rem;
    }

    .best-seller-price {
        font-size: 1rem;
    }

    .best-seller-btn {
        padding: 8px;
        font-size: 0.75rem;
        min-height: 40px;
    }

    .view-all-btn {
        padding: 12px 24px;
        font-size: 0.88rem;
        min-height: 44px;
    }

    .social-section {
        padding: 40px 16px;
    }

    .social-container h3 {
        font-size: 1.5rem;
    }

    .social-container > p {
        font-size: 0.9rem;
    }

    .social-card {
        padding: 24px 18px;
    }

    .social-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .social-card-handle {
        font-size: 1rem;
    }

    .social-card-desc {
        font-size: 0.8rem;
    }

    .social-card-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        min-height: 44px;
    }

    footer {
        padding: 36px 16px 20px;
    }

    .footer-logo img {
        height: 56px;
    }

    .footer-logo h4 {
        font-size: 1.3rem;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .footer-links {
        gap: 16px;
        margin: 20px 0;
    }

    .footer-links a {
        font-size: 0.85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .social-links {
        gap: 12px;
        margin: 20px 0;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
        font-size: 0.75rem;
    }
}

/* ============================================
   15. EXTRA SMALL SCREENS — ≤374px overrides
   ============================================ */

@media (max-width: 374px) {
    .nav-container {
        height: 48px;
        padding: 6px 10px;
    }

    .logo-section img {
        height: 32px;
    }

    .brand-text h1 {
        font-size: 0.85rem;
    }

    .brand-text span {
        font-size: 0.55rem;
    }

    .shop-topbar {
        margin-top: 48px;
        padding: 12px 10px;
    }

    .shop-topbar h2 {
        font-size: 1.1rem;
    }

    .shop-controls {
        top: 48px;
        padding: 8px 10px;
    }

    .search-box input {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .filter-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 18px;
        font-size: 0.82rem;
    }

    .pdp-title {
        font-size: 1.1rem;
    }

    .pdp-price {
        font-size: 1.3rem;
    }

    .pdp-weight-btn {
        padding: 8px 12px;
        font-size: 0.78rem;
        min-width: 60px;
    }

    .pdp-actions .btn-whatsapp {
        padding: 12px;
        font-size: 0.88rem;
    }

    .pdp-actions .btn-cart {
        padding: 10px;
        font-size: 0.82rem;
    }

    .sticky-cart-btn {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .sticky-cart-btn .fa-shopping-cart {
        font-size: 1.1rem;
    }

    .sticky-cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        top: -3px;
        right: -3px;
    }

    /* Cart as bottom sheet */
    .cart-sidebar {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        top: auto;
        bottom: 0;
        height: 85vh;
        height: 85dvh;
        right: 0;
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cart-sidebar.active {
        transform: translateY(0);
        right: 0;
    }
}

/* ============================================
   16. TABLET — 768px to 1023px
   ============================================ */

@media (min-width: 768px) and (max-width: 1023px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-content h2 {
        font-size: 1.9rem;
    }
}

/* ============================================
   17. SAFE AREA INSETS — Notch devices
   ============================================ */

@supports (padding-top: env(safe-area-inset-top)) {
    .nav-container {
        padding-top: calc(10px + env(safe-area-inset-top, 0px));
    }

    .shop-topbar {
        margin-top: calc(60px + env(safe-area-inset-top, 0px));
    }

    @media (max-width: 768px) {
        .shop-topbar {
            margin-top: calc(52px + env(safe-area-inset-top, 0px));
        }
    }

    @media (max-width: 374px) {
        .shop-topbar {
            margin-top: calc(48px + env(safe-area-inset-top, 0px));
        }
    }

    .cart-sidebar {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .cart-footer {
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 12px));
    }

    .sticky-cart-btn {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    @media (max-width: 768px) {
        .sticky-cart-btn {
            bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        }
    }
}

/* ============================================
   18. REDUCED MOTION — Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .product-card,
    .best-seller-card,
    .offer-card,
    .trust-badge,
    .social-card,
    .review-card {
        transition: none !important;
    }

    .product-card:hover,
    .best-seller-card:hover,
    .offer-card:hover,
    .trust-badge:hover,
    .social-card:hover,
    .review-card:hover {
        transform: none !important;
    }

    .hero-image img {
        animation: none !important;
    }

    .hero-badge {
        animation: none !important;
    }
}


/* ============================================
   AUTHENTICATION — Login/Signup Modal
   ============================================ */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 16px;
}

.auth-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.auth-modal {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 28px;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.auth-modal-overlay.active .auth-modal {
    transform: translateY(0);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.auth-modal-close:hover {
    background: var(--spice-red);
    color: white;
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-modal-header img {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: var(--radius-md);
}

.auth-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--deep-brown);
    margin-bottom: 6px;
}

.auth-modal-header p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 2px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
}

.auth-tab.active {
    color: var(--spice-red);
    border-bottom-color: var(--spice-red);
}

.auth-tab:hover {
    color: var(--deep-brown);
}

.auth-fields {
    display: none;
}

.auth-fields.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.auth-error {
    background: #ffebee;
    color: #c62828;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 16px;
    border-left: 3px solid var(--spice-red);
}

.auth-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 16px;
    border-left: 3px solid var(--whatsapp-green);
}

.auth-submit-btn {
    width: 100%;
    background: var(--spice-red);
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.auth-submit-btn:hover {
    background: #b71c1c;
    transform: scale(1.01);
}

.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-toggle {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.auth-toggle a {
    color: var(--spice-red);
    font-weight: 600;
    text-decoration: none;
}

.auth-toggle a:hover {
    text-decoration: underline;
}

/* ============================================
   NAV AUTH BUTTON & ACCOUNT MENU
   ============================================ */

.nav-auth {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--warm-cream);
    border: 1.5px solid var(--primary-gold);
    border-radius: var(--radius-full);
    color: var(--deep-brown);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-auth:hover {
    background: var(--primary-gold);
    border-color: var(--dark-gold);
}

.nav-auth i {
    font-size: 1rem;
}

.account-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    min-width: 180px;
    padding: 8px 0;
    z-index: 1001;
    display: none;
    animation: fadeIn 0.2s ease;
}

.account-menu.active {
    display: block;
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--deep-brown);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.account-menu a:hover {
    background: var(--warm-cream);
    color: var(--spice-red);
}

.account-menu a i {
    width: 18px;
    text-align: center;
    color: var(--gray-500);
}

.account-menu a:hover i {
    color: var(--spice-red);
}

/* ============================================
   ACCOUNT PAGE (My Account Sidebar)
   ============================================ */

.account-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2500;
    display: none;
}

.account-page.active {
    display: block;
}

.account-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
}

.account-page-sidebar {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 480px;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--warm-cream);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.account-page.active .account-page-sidebar {
    right: 0;
}

.account-page-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.account-page-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-page-header h3 i {
    color: var(--spice-red);
}

.account-page-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.account-page-close:hover {
    background: var(--spice-red);
    color: white;
}

.account-tabs {
    display: flex;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.account-tabs::-webkit-scrollbar {
    display: none;
}

.account-tab-btn {
    flex: 1;
    padding: 14px 16px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    min-width: 100px;
}

.account-tab-btn i {
    font-size: 0.9rem;
}

.account-tab-btn.active {
    color: var(--spice-red);
    border-bottom-color: var(--spice-red);
    background: var(--warm-cream);
}

.account-tab-btn:hover {
    color: var(--deep-brown);
}

.account-page-content {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.account-tab-content {
    display: none;
}

.account-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ============================================
   ACCOUNT SECTIONS (Profile, Addresses, Orders)
   ============================================ */

.account-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.account-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--deep-brown);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-section h4 i {
    color: var(--spice-red);
}

.account-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.account-section-header h4 {
    margin-bottom: 0;
}

.account-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--gray-500);
}

.account-empty i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 16px;
    display: block;
}

.account-empty p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Forms */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--deep-brown);
    background: white;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.15);
}

.form-group input.disabled-input {
    background: var(--gray-100);
    color: var(--gray-500);
    cursor: not-allowed;
}

.form-group small {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--spice-red);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.form-actions button {
    flex: 1;
}

/* Address Cards */
.addresses-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-card {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1.5px solid var(--gray-200);
    transition: all 0.2s;
}

.address-card:hover {
    border-color: var(--primary-gold);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.address-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--deep-brown);
    background: var(--primary-gold);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
}

.address-default-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--whatsapp-green);
    background: rgba(29, 168, 81, 0.1);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
}

.address-card-body {
    margin-bottom: 12px;
}

.address-name {
    font-weight: 600;
    color: var(--deep-brown);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.address-text,
.address-city,
.address-phone {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 2px;
}

.address-phone {
    color: var(--spice-red);
    font-weight: 500;
}

.address-phone i {
    font-size: 0.8rem;
    margin-right: 4px;
}

.address-card-actions {
    display: flex;
    gap: 8px;
}

.btn-edit,
.btn-delete {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-edit {
    background: var(--warm-cream);
    color: var(--deep-brown);
    border: 1.5px solid var(--gray-300);
}

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

.btn-delete {
    background: #ffebee;
    color: var(--spice-red);
    border: 1.5px solid #ffcdd2;
}

.btn-delete:hover {
    background: var(--spice-red);
    color: white;
    border-color: var(--spice-red);
}

/* Address Form Modal */
.address-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2600;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.address-form-modal.active {
    display: flex;
    opacity: 1;
}

.address-form-content {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.address-form-modal.active .address-form-content {
    transform: translateY(0);
}

.address-form-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 20px;
}

/* Order Cards */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.order-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.order-number {
    font-weight: 700;
    color: var(--deep-brown);
    font-size: 0.95rem;
    display: block;
}

.order-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.order-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.status-pending {
    background: #fff3e0;
    color: #e65100;
}

.status-confirmed {
    background: #e3f2fd;
    color: #1565c0;
}

.status-shipped {
    background: #f3e5f5;
    color: #7b1fa2;
}

.status-delivered {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-cancelled {
    background: #ffebee;
    color: #c62828;
}

.order-card-body {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.order-items-count {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.order-total {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.order-total strong {
    color: var(--spice-red);
    font-size: 1.05rem;
}

.order-address {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.order-address i {
    color: var(--dark-gold);
    margin-right: 4px;
}

.order-card-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-item-name {
    flex: 1;
    color: var(--deep-brown);
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-item-detail {
    color: var(--gray-500);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.order-item-price {
    color: var(--spice-red);
    font-weight: 600;
    flex-shrink: 0;
    min-width: 60px;
    text-align: right;
}

/* ============================================
   RESPONSIVE — Auth & Account Mobile
   ============================================ */

@media (max-width: 768px) {
    .auth-modal {
        padding: 24px 20px;
        max-height: 85vh;
    }

    .auth-modal-header h3 {
        font-size: 1.2rem;
    }

    .auth-tab {
        font-size: 0.9rem;
        padding: 10px;
    }

    .account-page-sidebar {
        max-width: 100%;
    }

    .account-page-header h3 {
        font-size: 1.15rem;
    }

    .account-tab-btn {
        font-size: 0.8rem;
        padding: 12px 10px;
        min-width: 80px;
    }

    .account-page-content {
        padding: 16px;
    }

    .account-section {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 16px;
    }

    .address-form-content {
        padding: 20px;
        max-height: 85vh;
    }

    .nav-auth span {
        display: none;
    }

    .nav-auth {
        padding: 8px 10px;
    }
}

@media (max-width: 374px) {
    .auth-modal {
        padding: 20px 16px;
    }

    .account-tab-btn {
        font-size: 0.75rem;
        padding: 10px 8px;
        min-width: 70px;
    }

    .account-tab-btn i {
        display: none;
    }

    .account-section {
        padding: 16px;
    }
}

/* ============================================
   REDUCED MOTION — Auth & Account
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .auth-modal-overlay,
    .auth-modal,
    .account-page-sidebar,
    .address-form-modal,
    .address-form-content {
        transition: none !important;
    }
}
