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

:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --tertiary-color: #14b8a6;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --accent-gradient: linear-gradient(135deg, #6366f1, #ec4899);
    --neon-gradient: linear-gradient(135deg, #6366f1, #14b8a6);
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --whatsapp-color: #25d366;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.navbar-menu a:hover {
    opacity: 0.8;
}

.badge {
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    margin-left: 5px;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: var(--light-bg);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

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

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

.btn-success:hover {
    background: #2d8659;
}

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

.btn-danger:hover {
    background: #d13219;
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: white;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.btn-whatsapp:hover {
    background: #22c158;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 10px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: var(--neon-gradient);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ==================== FILTERS ==================== */
.filters {
    background: var(--light-bg);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.filters .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filters-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Search Box */
.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 0 15px;
    transition: all 0.3s;
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-box i {
    color: var(--text-light);
    margin-right: 10px;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 12px 0;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.search-box input::placeholder {
    color: var(--text-light);
}

/* Sort & Filter Controls */
.sort-filter-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sort-dropdown {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.sort-dropdown:hover,
.sort-dropdown:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    outline: none;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* ==================== PRODUCTS SECTION ==================== */
.products {
    padding: 60px 0;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 250px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ccc;
    overflow: hidden;
    perspective: 1000px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
}

/* Quick view and overlays */
.product-overlays {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.wishlist-btn {
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border-color);
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}

.wishlist-btn .fa-heart { color: #ef4444; }

.quick-view-btn {
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal[aria-hidden="false"] { display: flex; }

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 8px 30px rgba(2,6,23,0.2);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.stock-badge.in-stock { color: #16a34a; font-weight:700; }
.stock-badge.low-stock { color: #f59e0b; font-weight:700; }
.stock-badge.out-of-stock { color: var(--danger-color); font-weight:700; }

.trust-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: 8px;
    margin-right: 8px;
    font-weight: 600;
}

.bulk-discount-info small { color: #065f46; font-weight:700; }

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

@keyframes float-3d {
    0%, 100% {
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translateZ(10px) rotateX(5deg) rotateY(5deg);
    }
}

.product-card:hover .product-image {
    animation: float-3d 3s ease-in-out infinite;
}

.product-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    min-height: 40px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ========== DISCOUNT BADGE ========== */
.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    animation: slideIn 0.3s ease;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 600;
}

.discounted-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ef4444;
}

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

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions button,
.product-actions a {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-add-cart {
    background: var(--accent-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add-cart:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add-cart:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-view-details {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn-view-details:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25);
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail {
    padding: 40px 0;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    transition: all 0.3s;
}

.back-link:hover {
    gap: 5px;
}

.product-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
}

.product-detail-image {
    width: 100%;
    height: 400px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #ccc;
    overflow: hidden;
    perspective: 1200px;
    position: relative;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
}

.product-detail-image:hover img {
    transform: rotateX(10deg) rotateY(-10deg) scale(1.08);
}

.product-image-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-image-gallery .main-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.product-image-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-gallery .image-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.product-image-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    object-fit: cover;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-image-gallery .thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-image-gallery .thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.3);
}

.product-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-detail-info .price {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.price-display-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price-display-detail .original-price {
    font-size: 1.4rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 600;
}

.price-display-detail .discounted-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ef4444;
}

.reviews-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.reviews-section .review-item {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.reviews-section .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews-section .add-review input,
.reviews-section .add-review textarea,
.reviews-section .add-review select {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.bulk-applied {
    color: #065f46;
    font-weight: 700;
    margin-top: 8px;
}

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

.quick-view-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 8px;
    height: 240px;
}

.product-detail-info .features {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-detail-info .features h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-detail-info .features ul {
    list-style: none;
}

.product-detail-info .features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.product-detail-info .features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-selector input {
    width: 80px;
    padding: 8px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
}

.product-detail-info .btn-add-cart {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* ==================== CART PAGE ==================== */
.cart-section {
    padding: 40px 0;
    min-height: 60vh;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 30px;
}

.cart-items {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: start;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ccc;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.cart-item-discount {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cart-item-discount .original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.cart-item-discount .discount-label {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

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

.cart-item-controls button {
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
}

.cart-item-controls input {
    width: 50px;
    padding: 5px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.cart-item-total {
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.cart-item-remove {
    color: var(--danger-color);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-light);
}

.summary-item.total {
    border-top: 2px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* ==================== CHECKOUT PAGE ==================== */
.checkout-section {
    padding: 40px 0;
    min-height: 60vh;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 30px;
}

.checkout-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.checkout-form h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkout-summary {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

#order-items {
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.whatsapp-payment {
    background: #f0fdf4;
    border: 2px solid var(--whatsapp-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.whatsapp-payment h4 {
    color: var(--whatsapp-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-payment p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.whatsapp-contact {
    margin-top: 15px;
    text-align: center;
}

.whatsapp-number {
    display: inline-block;
    background: var(--whatsapp-color);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.whatsapp-number:hover {
    background: #22c158;
    transform: translateY(-2px);
}

.info-box {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    color: var(--text-light);
}

.info-box i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ==================== NEWSLETTER ==================== */
.newsletter {
    background: var(--accent-gradient);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter button {
    padding: 12px 30px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #202124;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #9aa0a6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #9aa0a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #9aa0a6;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar-brand h1 {
        font-size: 1.4rem;
    }

    .navbar-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-wrapper,
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .checkout-summary {
        position: static;
    }

    .product-detail-image {
        height: 300px;
    }

    .newsletter form {
        flex-direction: column;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .filters .container {
        gap: 8px;
    }

    .cart-item {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .navbar-brand h1 {
        font-size: 1.2rem;
    }

    .navbar-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

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

    .products h2 {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px;
    }

    .checkout-form {
        padding: 20px;
    }

    .whatsapp-payment {
        padding: 15px;
    }
}
