/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    background-color: #fdfcfa;
}

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

/* Header */
header {
    padding: 20px 0;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(156, 175, 136, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9CAF88 0%, #D4A017 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: center;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #9CAF88;
}

.nav-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: #2c2c2c;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px;
}

.icon-btn:hover {
    color: #9CAF88;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #D4A017;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.search-container {
    position: relative;
    max-width: 600px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

#search-input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    background: white;
    outline: none;
}

.search-close {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.search-results {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    background: white;
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
}

/* Sidebars */
.cart-sidebar,
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 150;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.cart-header,
.wishlist-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close,
.wishlist-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.cart-items,
.wishlist-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.empty-cart,
.empty-wishlist {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-cart i,
.empty-wishlist i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #ddd;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: #9CAF88;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #7d9671;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: white;
}

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

.modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9f6;
    border-radius: 12px;
    padding: 40px;
}

.modal-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.modal-details p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-price {
    font-size: 24px;
    font-weight: 600;
    color: #D4A017;
    margin-bottom: 32px;
}

.quantity-selector {
    margin-bottom: 32px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #9CAF88;
    background: none;
    color: #9CAF88;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #9CAF88;
    color: white;
}

#quantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.add-to-cart-btn,
.add-to-wishlist-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn {
    background: #9CAF88;
    color: white;
}

.add-to-cart-btn:hover {
    background: #7d9671;
    transform: translateY(-2px);
}

.add-to-wishlist-btn {
    background: rgba(212, 160, 23, 0.1);
    color: #D4A017;
    border: 2px solid rgba(212, 160, 23, 0.3);
}

.add-to-wishlist-btn:hover {
    background: rgba(212, 160, 23, 0.2);
    transform: translateY(-2px);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 14px;
}

.feature i {
    color: #9CAF88;
    width: 20px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.05) 0%, rgba(212, 160, 23, 0.03) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 500;
    color: #2c2c2c;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 18px;
    color: #6b6b6b;
    margin-bottom: 32px;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(156, 175, 136, 0.1);
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 175, 136, 0.2);
}

.cta-button:hover {
    background: rgba(156, 175, 136, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(156, 175, 136, 0.2);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Products Section */
.products {
    padding: 80px 0;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: #6b6b6b;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 175, 136, 0.1);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 240px;
    background: linear-gradient(135deg, #f8f9f6, #f3f5f0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.action-btn:hover {
    background: white;
    transform: scale(1.1);
    color: #9CAF88;
}

.action-btn.active {
    color: #D4A017;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.product-info p {
    color: #6b6b6b;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 300;
}

.product-price {
    font-weight: 500;
    color: #D4A017;
    font-size: 16px;
}

/* Cart/Wishlist Items */
.cart-item,
.wishlist-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.item-image {
    width: 60px;
    height: 60px;
    background: #f8f9f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.item-price {
    color: #D4A017;
    font-weight: 500;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-control {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    background: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
}

.remove-item:hover {
    color: #ff4444;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(156, 175, 136, 0.03);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;

}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.08) 0%, rgba(212, 160, 23, 0.05) 100%);
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.cta-banner p {
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: rgba(156, 175, 136, 0.12);
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 175, 136, 0.2);
}

.cta-button-large:hover {
    background: rgba(156, 175, 136, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(156, 175, 136, 0.25);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fdfcfa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.contact-info p {
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 32px;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-method i {
    width: 20px;
    color: #9CAF88;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(156, 175, 136, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fdfcfa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9CAF88;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #9CAF88;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #7d9671;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 0 40px;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #9CAF88;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 24px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #9CAF88;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #9CAF88;
}

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

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

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9CAF88;
}

.footer-bottom {
    border-top: 1px solid rgba(156, 175, 136, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 300;
}

/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid #9CAF88;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification.error {
    border-left-color: #ff4444;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #9CAF88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-text h1 {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 16px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-circle {
        width: 35px;
        height: 35px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .products {
        padding: 60px 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .cta-banner {
        padding: 40px 0;
    }
    
    .cta-banner h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cart-sidebar,
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .modal-product {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-header h2,
    .about-text h2,
    .cta-banner h2 {
        font-size: 24px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button,
    .cta-button-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .nav-icons {
        gap: 12px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}
.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
            
.products {
    padding: 60px 0;
}
@media (max-width: 768px) {
     .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
            }
            
            .products {
                padding: 60px 0;
            }
}