/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f0eb;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.nav-left, .nav-right {
    display: flex;
    gap: 30px;
}
.nav-left a, .nav-right a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-left a:hover, .nav-right a:hover {
    color: #d4a373;
}
.logo {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: bold;
}
/* Burger Menu Styles */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}
.burger span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}
/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    z-index: 999;
    padding: 100px 50px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-menu.active {
    left: 0;
}
.mobile-menu a {
    font-size: 18px;
    color: #2c2c2c;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}
.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    cursor: pointer;
    color: #2c2c2c;
}
/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-small-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
.hero-content {
    background-color: #f5f0eb;
    padding: 40px;
    text-align: center;
}
.hero-content h1 {
    font-size: 48px;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 30px;
}
.shop-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid #2c2c2c;
    text-decoration: none;
    color: #2c2c2c;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
}
.shop-btn:hover {
    background-color: #2c2c2c;
    color: #fff;
}
.hero-right {
    position: relative;
}
.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
/* Bestsellers Section */
.bestsellers {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 32px;
    letter-spacing: 2px;
}
.see-all {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Product grid and cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
}
.product-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}
.product-name {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-price {
    font-size: 14px;
    color: #666;
}
/* Multi-tasking Section */
.multi-tasking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 50px auto;
    background-color: #fff;
}
.multi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.multi-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.multi-content h2 {
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 30px;
}
.multi-images {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}
.multi-small-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 5px;
}
/* Recommendations */
.recommendations {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}
.recommendations h2 {
    text-align: center;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 50px;
}
.rec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rec-card {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}
.rec-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}
/* Footer */
footer {
    background-color: #fff;
    padding: 60px 50px 30px;
    max-width: 1400px;
    margin: 50px auto 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: #2c2c2c;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 30px;
    height: 30px;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.social-icons a:hover {
    background-color: #2c2c2c;
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 11px;
    color: #999;
}
/* Responsive */
@media (max-width: 768px) {
    .hero, .multi-tasking {
        grid-template-columns: 1fr;
    }
    .rec-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    nav {
        padding: 15px 20px;
    }
    .bestsellers, .recommendations {
        padding: 40px 20px;
    }
    /* Mobile Navigation */
    .nav-left, .nav-right {
        display: none;
    }
    .burger {
        display: flex;
    }
}
/* Cart items container */
.cart-section {
    max-width: 900px;
    margin: 50px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Cart item line */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #333;
}

/* Item product name and price */
.cart-item .item-name {
    flex: 1;
}

/* Remove button style */
.cart-item button.remove-btn {
    background-color: transparent;
    color: #c0392b;
    border: 1px solid #c0392b;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-item button.remove-btn:hover {
    background-color: #c0392b;
    color: white;
}

/* Total price styling */
.cart-total {
    text-align: right;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    color: #2c2c2c;
}

/* Cart buttons container */
.cart-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

/* Clear Cart button: red, no border radius */
.cart-buttons button.clear-cart {
    background-color: #e74c3c;
    border: none;
    color: white;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s;
}
.cart-buttons button.clear-cart:hover {
    background-color: #c0392b;
}

/* Checkout button: green, no border radius */
.cart-buttons button.checkout {
    background-color: #27ae60;
    border: none;
    color: white;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s;
}
.cart-buttons button.checkout:hover {
    background-color: #1e8449;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: #fff;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}
.modal-img { width: 100%; height: auto; border-radius: 5px; margin-bottom: 20px; }
.modal-name { font-size: 28px; letter-spacing: 1px; margin-bottom: 15px; }
.modal-desc { color: #666; line-height: 1.6; margin-bottom: 20px; }
.modal-price { font-size: 24px; font-weight: bold; margin-bottom: 25px; }


/* Cart items container */
.cart-section {
    max-width: 900px;
    margin: 50px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Cart item line */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #333;
}

/* Item product name and price */
.cart-item .item-name {
    flex: 1;
}

/* Remove button style */
.cart-item button.remove-btn {
    background-color: transparent;
    color: #c0392b;
    border: 1px solid #c0392b;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-item button.remove-btn:hover {
    background-color: #c0392b;
    color: white;
}

/* Total price styling */
.cart-total {
    text-align: right;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    color: #2c2c2c;
}

/* Cart buttons container */
.cart-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

/* Clear Cart button: red, no border radius */
.cart-buttons button.clear-cart {
    background-color: #e74c3c;
    border: none;
    color: white;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s;
}
.cart-buttons button.clear-cart:hover {
    background-color: #c0392b;
}

/* Checkout button: green, no border radius */
.cart-buttons button.checkout {
    background-color: #27ae60;
    border: none;
    color: white;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s;
}
.cart-buttons button.checkout:hover {
    background-color: #1e8449;
}
/* Remove button style */
.cart-item button.remove-btn {
    background-color: #e74c3c!important;
    color: white;
    border: 1px solid #e74c3c;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-item button.remove-btn:hover {
    background-color: #c0392b;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  background-color: #f5f0eb;
    padding: 40px;
    border-radius: 5px;
}


.product-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rec-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}