/* PrimesPick Static Site Styles */
/* Converted from Tailwind CSS */

/* ==================== */
/* FONTS */
/* ==================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ==================== */
/* CSS VARIABLES */
/* ==================== */
:root {
    --primary: #E65100;
    --primary-hover: #CC4100;
    --secondary: #2E7D32;
    --background-main: #F9F9F5;
    --background-card: #FFFFFF;
    --background-subtle: #F0F0E8;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #757575;
    --highlight: #FFCC80;
    --error: #EF4444;
    --success: #10B981;
}

/* ==================== */
/* RESET & BASE */
/* ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background-main);
    color: var(--text-primary);
    line-height: 1.6;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
}

/* ==================== */
/* TYPOGRAPHY */
/* ==================== */
.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* ==================== */
/* LAYOUT UTILITIES */
/* ==================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:flex-row { flex-direction: row; }
    .md\:col-span-2 { grid-column: span 2; }
}

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

/* ==================== */
/* SPACING UTILITIES */
/* ==================== */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-24 { padding-top: 6rem; }
.pb-16 { padding-bottom: 4rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mr-1 { margin-right: 0.25rem; }

@media (min-width: 768px) {
    .md\:p-10 { padding: 2.5rem; }
    .md\:p-12 { padding: 3rem; }
    .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:gap-6 { gap: 1.5rem; }
    .md\:gap-8 { gap: 2rem; }
    .md\:gap-12 { gap: 3rem; }
}

/* ==================== */
/* TEXT UTILITIES */
/* ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

@media (min-width: 768px) {
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
}

@media (min-width: 1024px) {
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-through { text-decoration: line-through; }

/* ==================== */
/* COLOR UTILITIES */
/* ==================== */
.text-white { color: #FFFFFF; }
.text-gray-300 { color: #D1D5DB; }
.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-orange { color: var(--primary); }
.text-green { color: var(--secondary); }
.text-yellow { color: #EAB308; }
.text-red { color: #EF4444; }
.text-blue { color: #3B82F6; }

.bg-white { background-color: #FFFFFF; }
.bg-main { background-color: var(--background-main); }
.bg-subtle { background-color: var(--background-subtle); }
.bg-dark { background-color: var(--text-primary); }
.bg-orange { background-color: var(--primary); }
.bg-green { background-color: var(--secondary); }
.bg-yellow { background-color: var(--highlight); }
.bg-red { background-color: #EF4444; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-100 { background-color: #F3F4F6; }
.bg-gray-200 { background-color: #E5E7EB; }

.bg-orange-10 { background-color: rgba(230, 81, 0, 0.1); }
.bg-green-10 { background-color: rgba(46, 125, 50, 0.1); }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white-20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white-50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-white-80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white-90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white-95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-black-30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-black-40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black-70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-red-50 { background-color: #FEF2F2; }
.bg-red-100 { background-color: #FEE2E2; }
.bg-blue-10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-yellow-10 { background-color: rgba(234, 179, 8, 0.1); }
.bg-purple-10 { background-color: rgba(168, 85, 247, 0.1); }

.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }

.border-gray-100 { border-color: #F3F4F6; }
.border-gray-200 { border-color: #E5E7EB; }
.border-orange { border-color: var(--primary); }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }

/* ==================== */
/* SIZING UTILITIES */
/* ==================== */
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-full { width: 100%; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

@media (min-width: 768px) {
    .md\:h-40 { height: 10rem; }
    .md\:h-64 { height: 16rem; }
}

.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

/* ==================== */
/* BORDER UTILITIES */
/* ==================== */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-0 { border-width: 0; }

/* ==================== */
/* POSITIONING */
/* ==================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.right-0 { right: 0; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-20 { bottom: 5rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.-top-1 { top: -0.25rem; }
.-right-1 { right: -0.25rem; }
.transform { transform: translateZ(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-y-2 { transform: translateY(-0.5rem); }

/* ==================== */
/* OVERFLOW */
/* ==================== */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* ==================== */
/* SHADOW & EFFECTS */
/* ==================== */
.card-shadow {
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
    transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
}

.btn-shadow {
    box-shadow: 0 4px 14px 0 rgba(230, 81, 0, 0.39);
}

.btn-shadow:hover {
    box-shadow: 0 6px 20px 0 rgba(230, 81, 0, 0.5);
}

.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-50 { opacity: 0.5; }
.opacity-90 { opacity: 0.9; }

/* ==================== */
/* TRANSITIONS */
/* ==================== */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:scale-110:hover { transform: scale(1.1); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* ==================== */
/* VISIBILITY */
/* ==================== */
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:col-span-1 { grid-column: span 1; }
}

@media (min-width: 1024px) {
    .lg\:col-span-2 { grid-column: span 2; }
    .lg\:text-left { text-align: left; }
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-pulse-slow {
    animation: pulse 2s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce 2s ease-in-out infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.stagger-1 { animation-delay: 0.1s; opacity: 0; }
.stagger-2 { animation-delay: 0.2s; opacity: 0; }
.stagger-3 { animation-delay: 0.3s; opacity: 0; }

/* Trigger animations when visible */
.animate-fade-in-up { opacity: 1; }

/* ==================== */
/* SCROLLBAR */
/* ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-subtle);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* ==================== */
/* HEADER */
/* ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.logo-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-link {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active {
    font-weight: 500;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    padding: 1rem 0;
}

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

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background-color: rgba(230, 81, 0, 0.05);
}

/* ==================== */
/* BUTTONS */
/* ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 14px 0 rgba(230, 81, 0, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(230, 81, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
}

.btn-outline:hover {
    background: rgba(230, 81, 0, 0.05);
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-white:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cart-btn {
    position: relative;
    padding: 0.5rem 1rem;
}

.cart-count {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 249, 245, 0.95) 0%, rgba(249, 249, 245, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.75rem; }
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.25rem; }
}

/* Trust Strip */
.trust-strip {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .trust-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
}

.trust-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(46, 125, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary);
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ==================== */
/* SECTION STYLES */
/* ==================== */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section { padding: 6rem 0; }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-subtitle { font-size: 1.125rem; }
}

/* ==================== */
/* PROBLEM/SOLUTION */
/* ==================== */
.problem-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .problem-card { padding: 2.5rem; }
}

.solution-card {
    background: var(--secondary);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .solution-card { padding: 2.5rem; }
}

.problem-header,
.solution-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.problem-icon,
.solution-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon {
    background: #FEE2E2;
}

.problem-icon svg {
    color: #EF4444;
}

.solution-icon {
    background: rgba(255, 255, 255, 0.2);
}

.solution-icon svg {
    color: white;
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.problem-item,
.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.problem-item-icon,
.solution-item-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-item-icon {
    background: #FEE2E2;
}

.problem-item-icon svg {
    width: 1rem;
    height: 1rem;
    color: #EF4444;
}

.solution-item-icon {
    background: rgba(255, 255, 255, 0.2);
}

.solution-item-icon svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.problem-item span {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.solution-item span {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== */
/* PRODUCT CARDS */
/* ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #F3F4F6;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F9FAFB;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-red { background: #EF4444; color: white; }
.badge-orange { background: var(--primary); color: white; }
.badge-green { background: var(--secondary); color: white; }
.badge-yellow { background: #EAB308; color: white; }

.product-discount {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.product-info {
    padding: 1rem;
}

.product-benefit {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .product-name { font-size: 1rem; }
}

.product-name:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-current {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.price-original {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-cod {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--secondary);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-cod svg {
    width: 0.75rem;
    height: 0.75rem;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border-radius: 0.75rem;
    padding: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.add-to-cart-btn svg {
    width: 1rem;
    height: 1rem;
}

/* ==================== */
/* PRODUCT DEMO */
/* ==================== */
.demo-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.demo-tab {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.demo-tab:hover {
    background: rgba(255, 255, 255, 0.2);
}

.demo-tab.active {
    background: var(--primary);
    color: white;
}

.demo-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
}

.demo-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.demo-video:hover .demo-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.demo-play-btn {
    width: 5rem;
    height: 5rem;
    background: var(--primary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
}

.demo-video:hover .demo-play-btn {
    transform: scale(1.1);
}

.demo-play-btn svg {
    width: 2rem;
    height: 2rem;
    color: white;
    margin-left: 0.25rem;
}

.demo-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.demo-duration svg {
    width: 0.75rem;
    height: 0.75rem;
}

.demo-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .demo-info h3 { font-size: 1.875rem; }
}

.demo-info p {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demo-feature-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(46, 125, 50, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--secondary);
}

.demo-feature span {
    font-family: 'Inter', sans-serif;
    color: #D1D5DB;
}

/* ==================== */
/* BENTO GRID (Why Love Us) */
/* ==================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

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

.bento-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
    transition: box-shadow 0.3s ease;
}

.bento-card:hover {
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
}

.bento-card.large {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .bento-card.large { grid-column: span 2; }
}

.bento-card.green {
    background: var(--secondary);
}

.bento-card.yellow {
    background: var(--highlight);
}

.bento-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bento-icon.large {
    width: 4rem;
    height: 4rem;
}

.bento-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.bento-icon.large svg {
    width: 2rem;
    height: 2rem;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento-card.large h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.bento-card p {
    font-family: 'Inter', sans-serif;
}

.bento-card.large p {
    font-size: 1.125rem;
    line-height: 1.625;
}

/* ==================== */
/* INDIAN KITCHENS */
/* ==================== */
.indian-kitchens-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-size: cover;
    background-position: center;
}

.indian-feature {
    display: flex;
    gap: 1.25rem;
}

.indian-feature-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(230, 81, 0, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indian-feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.indian-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.indian-feature p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
}

.indian-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.indian-images img {
    border-radius: 1.5rem;
    object-fit: cover;
}

.indian-stat-card {
    background: var(--primary);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.indian-stat-card p:first-child {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    color: white;
}

@media (min-width: 768px) {
    .indian-stat-card p:first-child { font-size: 2.25rem; }
}

.indian-stat-card p:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== */
/* REVIEWS */
/* ==================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .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: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
    position: relative;
}

.review-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(230, 81, 0, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-quote svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 1rem;
    height: 1rem;
}

.star-filled {
    color: #FBBF24;
    fill: #FBBF24;
}

.star-empty {
    color: #D1D5DB;
}

.review-text {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    object-fit: cover;
}

.review-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.review-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 125, 50, 0.1);
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
}

/* ==================== */
/* LIMITED TIME DEAL */
/* ==================== */
.deal-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.deal-bg-circle {
    position: absolute;
    border-radius: 9999px;
    background: white;
    opacity: 0.1;
}

.deal-bg-circle.top {
    width: 16rem;
    height: 16rem;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.deal-bg-circle.bottom {
    width: 24rem;
    height: 24rem;
    bottom: 0;
    right: 0;
    transform: translate(33%, 33%);
}

.deal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .deal-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.deal-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .deal-title { font-size: 3rem; }
}

.deal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.deal-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .deal-benefits { flex-direction: row; }
}

.deal-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.deal-benefit svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ==================== */
/* HOW IT WORKS */
/* ==================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-container { grid-template-columns: repeat(3, 1fr); }
}

.steps-line {
    display: none;
    position: absolute;
    top: 6rem;
    left: 25%;
    right: 25%;
    height: 2px;
    background: rgba(230, 81, 0, 0.2);
}

@media (min-width: 768px) {
    .steps-line { display: block; }
}

.step {
    position: relative;
    text-align: center;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: var(--primary);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-0.5rem);
    background: white;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.625;
}

/* ==================== */
/* GALLERY */
/* ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    grid-auto-rows: 150px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item.span-2 {
    grid-column: span 2;
}

.gallery-item.row-2 {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: white;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* LEAD CAPTURE */
/* ==================== */
.lead-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.lead-bg-circle {
    position: absolute;
    border-radius: 9999px;
    background: white;
    opacity: 0.1;
}

.lead-bg-circle.top {
    width: 24rem;
    height: 24rem;
    top: 0;
    right: 0;
    transform: translate(33%, -33%);
}

.lead-bg-circle.bottom {
    width: 16rem;
    height: 16rem;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
}

.lead-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.lead-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.lead-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .lead-title { font-size: 3rem; }
}

.lead-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 36rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .lead-form { flex-direction: row; }
}

.lead-input-wrapper {
    position: relative;
    flex: 1;
}

.lead-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

.lead-input-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.lead-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 0.75rem;
    border: none;
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
}

.lead-input::placeholder {
    color: #9CA3AF;
}

.lead-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.lead-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.lead-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.lead-success {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lead-success-icon {
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-success-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--secondary);
}

.lead-privacy {
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== */
/* FOOTER */
/* ==================== */
.footer {
    background: var(--text-primary);
    color: white;
}

.footer-main {
    padding: 3rem 0 4rem;
}

@media (min-width: 768px) {
    .footer-main { padding: 4rem 0; }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand { grid-column: span 1; }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-item span,
.footer-contact-item a {
    font-family: 'Inter', sans-serif;
    color: #9CA3AF;
    display: block;
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-contact-hours {
    font-size: 0.75rem;
    color: #6B7280;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #9CA3AF;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-payment img {
    height: 1.5rem;
    opacity: 0.5;
}

.footer-payment span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* ==================== */
/* WHATSAPP BUTTON */
/* ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .whatsapp-btn { bottom: 1.5rem; }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

/* ==================== */
/* STICKY BOTTOM CTA (Mobile) */
/* ==================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #E5E7EB;
    padding: 0.75rem;
    display: flex;
}

@media (min-width: 768px) {
    .sticky-cta { display: none; }
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
}

.sticky-cod {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

.sticky-cod svg {
    width: 1rem;
    height: 1rem;
}

.sticky-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== */
/* CART DRAWER */
/* ==================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 28rem;
    background: white;
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.cart-title svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.cart-close {
    padding: 0.5rem;
    border-radius: 9999px;
    transition: background 0.3s ease;
}

.cart-close:hover {
    background: #F3F4F6;
}

.cart-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 1rem;
}

.cart-empty-icon {
    width: 5rem;
    height: 5rem;
    background: #F3F4F6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cart-empty-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #9CA3AF;
}

.cart-empty h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-empty p {
    font-family: 'Inter', sans-serif;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 1rem;
}

.cart-item-image {
    width: 5rem;
    height: 5rem;
    border-radius: 0.75rem;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-benefit {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--primary);
}

.cart-item-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 0.25rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cart-qty-btn {
    width: 2rem;
    height: 2rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.cart-qty-btn:hover {
    border-color: var(--primary);
}

.cart-qty-btn svg {
    width: 1rem;
    height: 1rem;
}

.cart-qty {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    width: 2rem;
    text-align: center;
}

.cart-remove-btn {
    margin-left: auto;
    width: 2rem;
    height: 2rem;
    background: #FEF2F2;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.cart-remove-btn:hover {
    background: #FEE2E2;
}

.cart-remove-btn svg {
    width: 1rem;
    height: 1rem;
    color: #EF4444;
}

.cart-footer {
    border-top: 1px solid #E5E7EB;
    padding: 1rem 1.5rem;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-subtotal span:first-child {
    font-family: 'Inter', sans-serif;
    color: #6B7280;
}

.cart-subtotal span:last-child {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.cart-cod-notice {
    text-align: center;
    font-size: 0.875rem;
    color: var(--secondary);
    background: rgba(46, 125, 50, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(230, 81, 0, 0.39);
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px 0 rgba(230, 81, 0, 0.5);
}

/* ==================== */
/* PAGE SPECIFIC */
/* ==================== */

/* Shop Page */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.category-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: white;
    color: var(--text-secondary);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #F3F4F6;
}

.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Product Page */
.product-detail {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .product-detail {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.product-detail-image {
    position: relative;
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1.5rem;
}

.product-detail-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-detail-discount {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--primary);
}

.product-detail-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-detail-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .product-detail-title { font-size: 2.25rem; }
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-detail-price .current {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
}

.product-detail-price .original {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail-price .savings {
    background: rgba(46, 125, 50, 0.1);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-benefit-box {
    background: rgba(230, 81, 0, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.product-benefit-box p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

.product-description {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: #F3F4F6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #E5E7EB;
}

.qty-btn svg {
    width: 1rem;
    height: 1rem;
}

.qty-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    width: 3rem;
    text-align: center;
}

.add-to-cart-large {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px 0 rgba(230, 81, 0, 0.39);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.add-to-cart-large:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(230, 81, 0, 0.5);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
}

.trust-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary);
}

.trust-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.related-products {
    margin-top: 4rem;
}

.related-products h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Policy Pages */
.policy-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
}

@media (min-width: 768px) {
    .policy-content { padding: 3rem; }
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.policy-content ul,
.policy-content ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    list-style-type: disc;
}

.policy-content ol {
    list-style-type: decimal;
}

.policy-content li {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* About Page */
.about-hero {
    background: var(--text-primary);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .about-hero { padding: 6rem 0; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number { font-size: 2.25rem; }
}

.stat-label {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

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

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

.value-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(230, 81, 0, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Contact Page */
.contact-hero {
    background: var(--secondary);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .contact-hero { padding: 5rem 0; }
}

.contact-form {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9CA3AF;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(230, 81, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: rgba(230, 81, 0, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-info-item h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
}

.contact-map {
    margin-top: 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 16rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Shipping Page */
.shipping-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .shipping-cards { grid-template-columns: repeat(3, 1fr); }
}

.shipping-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
}

.shipping-card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(230, 81, 0, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.shipping-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.shipping-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.shipping-card .time {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.shipping-card .price {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.shipping-card .desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 3rem 0;
}

.form-success-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.form-success-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--secondary);
}

.form-success h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-success p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Spinner */
.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 9999px;
    animation: spin 1s linear infinite;
}

/* ==================== */
/* RESPONSIVE HELPERS */
/* ==================== */
@media (min-width: 640px) {
    .sm\:max-w-md { max-width: 28rem; }
}

@media (min-width: 768px) {
    .md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
    .lg\:flex-row { flex-direction: row; }
}
