:root {
    --primary: #1B5E20;
    --primary-light: #2E7D32;
    --secondary: #FBC02D;
    --secondary-hover: #F9A825;
    --bg-color: #FFFFFF;
    --bg-light: #F5F7F5;
    --text-color: #111111;
    --text-light: #555555;
    --accent: #E8F5E9;
    --border-color: #EEEEEE;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.text-white {
    color: white !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 192, 45, 0.2);
}

.btn-dark {
    background-color: var(--text-color);
    color: white;
}

.btn-dark:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}

.header.scrolled .header-inner {
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--secondary);
    font-size: 32px;
}

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

.desktop-nav {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: var(--text-light);
    transition: var(--transition);
}

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

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 10px 40px 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    width: 200px;
}

.search-bar input:focus {
    width: 250px;
    border-color: var(--primary);
    background-color: white;
}

.search-bar button {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 18px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 20px;
    transition: var(--transition);
    position: relative;
    border: none;
    cursor: pointer;
}

.icon-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.cart-toggle {
    background-color: var(--primary);
    color: white;
}

.cart-toggle:hover {
    background-color: var(--primary-light);
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-color);
    cursor: pointer;
}

/* Tooltips */
.tooltip-container {
    position: relative;
}
.tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: none;
}
.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    z-index: 1002;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

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

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-size: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-color);
    transform: rotate(90deg);
}

.cart-progress {
    padding: 20px 24px;
    background-color: var(--accent);
    text-align: center;
}

.cart-progress p {
    font-size: 14px;
    margin-bottom: 10px;
}

.cart-progress span {
    color: var(--primary);
    font-weight: 600;
}

.progress-bar {
    height: 6px;
    background-color: rgba(27, 94, 32, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary);
    border-radius: 10px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.item-details .price {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.qty-btn:hover {
    background-color: var(--bg-light);
}

.quantity-selector input {
    width: 30px;
    text-align: center;
    border: none;
    font-weight: 500;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

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

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: white;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.coupon-field {
    display: flex;
    margin-bottom: 20px;
    gap: 8px;
}

.coupon-field input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
}

.coupon-field button {
    padding: 0 20px;
    background-color: var(--text-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.checkout-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

.secure-badges {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background-color: var(--accent);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,192,45,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(251, 192, 45, 0.2);
    color: #e65100;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.badge.dark {
    background-color: var(--text-color);
    color: white;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.delivery-perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--primary);
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    box-shadow: var(--shadow-sm);
}

.delivery-perk i {
    font-size: 24px;
    color: var(--secondary);
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    border: 8px solid white;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(2deg);
    transition: var(--transition);
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--secondary);
    font-size: 20px;
}

.badge-1 {
    top: 30px;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    right: -30px;
    animation-delay: 2s;
}

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

/* Sections Common */
.section-header {

    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-header.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.view-all:hover {
    gap: 12px;
    color: var(--secondary-hover);
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 24px;
}

.category-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.category-card .img-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    padding: 10px;
    transition: var(--transition);
}

.category-card:hover .img-box {
    background-color: var(--secondary);
}

.category-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.category-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 12px;
}

.filter-tabs button {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
}

.filter-tabs button.active, .filter-tabs button:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

.product-badges span {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.product-badges .discount { background-color: #ef4444; }
.product-badges .organic { background-color: var(--primary); }

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions .icon-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.product-actions .icon-btn:hover {
    background: var(--primary);
    color: white;
}

.product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rating {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.rating span {
    color: var(--text-light);
    margin-left: 4px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info .desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
}

.price-row {
    margin-bottom: 16px;
}

.price-row .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-row .old-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
}

.cart-actions {
    display: flex;
    gap: 12px;
}

.add-to-cart-btn {
    flex: 1;
    padding: 10px;
    border-radius: var(--border-radius);
    font-size: 14px;
}

/* Horizontal Card for Best Sellers */
.carousel-container {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
}
.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome */
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.product-card.horizontal {
    flex-direction: row;
    width: 350px;
    height: 140px;
    align-items: center;
}

.product-card.horizontal .product-img {
    width: 120px;
    height: 100%;
}

.product-card.horizontal .product-info {
    padding: 16px;
}

.product-card.horizontal h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-card.horizontal .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.save-badge { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; padding: 2px 8px; font-size: 12px; border-radius: 4px; font-weight: 600;}
.fresh-tag { background-color: var(--accent); color: var(--primary); padding: 2px 8px; font-size: 12px; border-radius: 4px; font-weight: 600;}

.btn-quick-buy {
    background: none;
    border: none;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    margin-top: auto;
    text-align: left;
}

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

.carousel-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
    margin-left: 8px;
}
.carousel-nav button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}


/* Special Offers */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.offer-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--accent);
}

.primary-offer {
    flex-direction: row;
    padding: 40px;
}

.primary-offer .offer-content {
    flex: 1;
    z-index: 2;
}

.primary-offer h2 {
    font-size: 36px;
    margin: 16px 0;
    line-height: 1.2;
}

.primary-offer p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.primary-offer .offer-img {
    flex: 1;
    height: 100%;
}
.primary-offer .offer-img img {
    height: 300px;
    object-fit: contain;
    transform: scale(1.2);
}

.secondary-offers {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.small-offer {
    height: calc(50% - 15px);
    background-color: rgba(251, 192, 45, 0.15);
    padding: 30px;
    justify-content: space-between;
}

.small-offer.green-bg {
    background-color: var(--primary);
}

.small-offer .offer-content {
    z-index: 2;
    max-width: 60%;
}

.small-offer h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.small-offer p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.small-offer.green-bg p {
    color: rgba(255,255,255,0.8);
}

.small-offer .link {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.small-offer .link:hover {
    gap: 8px;
}

.small-offer img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.small-offer:hover img {
    transform: scale(1.1);
}


/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background-color: var(--primary);
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
}

/* Shopping Experience */
.experience-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.experience-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
}

.experience-list i {
    color: var(--primary);
    font-size: 24px;
}

.experience-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 80%;
    animation: float 5s ease-in-out infinite;
}

.mockup-card {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 250px;
    z-index: 2;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 14px;
}

.mockup-header .status {
    color: var(--primary);
}

.mockup-body .step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.mockup-body .step:last-child {
    margin-bottom: 0;
}

.mockup-body .step::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: -16px;
    width: 2px;
    background-color: var(--border-color);
}

.mockup-body .step:last-child::before {
    display: none;
}

.mockup-body .step.active::before {
    background-color: var(--primary);
}

.mockup-body .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: 3px solid white;
    box-shadow: 0 0 0 1px var(--border-color);
    z-index: 1;
}

.mockup-body .step.active .dot {
    background-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.mockup-body p {
    font-size: 14px;
    color: var(--text-light);
}

.mockup-body .step.active p {
    color: var(--text-color);
    font-weight: 600;
}


/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.user-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.verified {
    font-size: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: var(--secondary);
    font-size: 14px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
}

/* Newsletter */
.newsletter {
    background-color: var(--primary);
    padding: 60px 0;
    color: white;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="20" fill="none"/></svg>') right center no-repeat;
    background-size: contain;
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
}

.newsletter-form button {
    background-color: var(--secondary);
    color: var(--text-color);
}
.newsletter-form button:hover {
    background-color: var(--secondary-hover);
    box-shadow: none;
}


/* Footer */
.footer {
    background-color: #111111;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-light);
}

.brand-col p {
    color: #999;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #999;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #999;
}

.contact-info li i {
    color: var(--primary-light);
    font-size: 20px;
    margin-top: 2px;
}

.contact-info li a {
    color: #999;
    transition: var(--transition);
}

.contact-info li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #777;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    font-size: 24px;
}


/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .delivery-perk {
        margin: 0 auto;
    }
    .offers-grid {
        grid-template-columns: 1fr;
    }
    .primary-offer {
        flex-direction: column;
        text-align: center;
    }
    .primary-offer .offer-img img {
        transform: scale(1);
    }
    .experience-content {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .search-bar input {
        display: none; /* Can be toggled with JS */
    }
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .newsletter-form {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 40px;
    }
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.privacy-policy {
   
    padding: 40px 60px;
    max-width: 1200px;
    margin: 30px auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 30px 20px;
    }
}

.terms-conditions {
    margin-top: 50px;
    padding: 50px 60px;
}

@media (max-width: 768px) {
    .terms-conditions {
        padding: 30px 20px;
    }

    .logo {
        font-size: 20px;
    }
}

/* ==========================================================================
   Quick View Modal & Toast Notifications Styles
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.quick-view-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 850px;
    background-color: #ffffff;
    border-radius: 20px;
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-img-box {
    position: relative;
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.modal-img-box img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.modal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.modal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.modal-info .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 14px;
}

.modal-info .price-row {
    margin-bottom: 16px;
}

.modal-info .price {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-dark);
}

.modal-info .old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 10px;
    font-weight: 400;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background-color: #1e293b;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    font-size: 18px;
    color: #10b981;
}

.toast.error i {
    color: #ef4444;
}

/* Wishlist Badge */
.wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.wishlist-btn.active i {
    color: #ef4444 !important;
    font-weight: fill !important;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        max-height: 80vh;
        overflow-y: auto;
    }
}