:root {
    --gold-primary: #D4AF37;
    --gold-light: #F5E8C7;
    --gold-dark: #B8860B;
    --white-cream: #FFFDF6;
    --white-pure: #FFFFFF;
    --gray-light: #F8F8F8;
    --gray-medium: #E8E8E8;
    --gray-dark: #888888;
    --text-dark: #3C3C3C;
    --text-light: #666666;
    --shadow-soft: 0 5px 15px rgba(212, 175, 55, 0.08);
    --shadow-medium: 0 8px 25px rgba(212, 175, 55, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--white-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--white-pure);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.brand-tagline {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--text-light);
    gap: 2px;
}

.search-box {
    display: flex;
    width: 300px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--gray-medium);
    border-radius: 30px 0 0 30px;
    font-size: 14px;
    outline: none;
    background-color: var(--gray-light);
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: var(--gold-primary);
    background-color: var(--white-pure);
}

.search-box button {
    background-color: var(--gold-primary);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.search-box button:hover {
    background-color: var(--gold-dark);
}

.header-actions {
    display: flex;
    align-items: center;
}

.cart-btn {
    background-color: var(--white-cream);
    color: var(--text-dark);
    border: 1px solid var(--gold-light);
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.cart-btn:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-primary);
}

.cart-count {
    background-color: var(--gold-primary);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.navbar {
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, var(--white-pure), var(--white-cream), var(--white-pure));
    border-top: 1px solid var(--gold-light);
    padding: 12px 0;
    overflow-x: auto;
}

.navbar a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 10px 18px;
    margin: 0 3px;
    border-radius: 20px;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.navbar a:hover, .navbar a.active {
    background-color: var(--gold-light);
    color: var(--gold-dark);
}

.hero {
    background: linear-gradient(135deg, rgba(255, 253, 246, 0.95) 0%, rgba(245, 232, 199, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    color: var(--text-dark);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gold-light);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--gold-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.about-section {
    background-color: var(--white-pure);
    padding: 60px 0;
    margin: 40px 0;
    border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-icon i {
    font-size: 70px;
    color: var(--gold-light);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(193, 53, 132, 0.3);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin: 60px 0 40px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    margin: 15px auto;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--gold-light);
    background-color: var(--white-pure);
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--gold-primary);
    color: white;
    border-color: var(--gold-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background-color: var(--white-pure);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--gray-light);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-light);
}

.product-img {
    height: 200px;
    background: linear-gradient(135deg, var(--white-cream), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-img i {
    font-size: 70px;
    color: var(--gold-primary);
    opacity: 0.8;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--gold-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.product-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price {
    color: var(--gold-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-cart {
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
    flex: 1;
    justify-content: center;
    background-color: var(--gold-light);
    color: var(--gold-dark);
}

.btn-cart:hover {
    background-color: var(--gold-primary);
    color: white;
}

.map-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0 80px;
}

@media (max-width: 900px) {
    .map-contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background-color: var(--white-pure);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gold-light);
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-info strong {
    color: var(--gold-dark);
}

.whatsapp-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--gold-light);
}

.whatsapp-section p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    justify-content: center;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gold-light);
}

.footer {
    background-color: var(--text-dark);
    color: var(--white-pure);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-description {
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
}

.footer-section a {
    display: block;
    color: #CCCCCC;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--gold-primary);
}

.footer-section p {
    color: #CCCCCC;
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444444;
    color: #999999;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: var(--white-pure);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gold-light);
}

.modal-header {
    background-color: var(--gold-light);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--gold-dark);
}

.modal-body {
    padding: 30px;
    max-height: 50vh;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cart-item-info p {
    color: var(--text-light);
    font-size: 14px;
}

.cart-item-details {
    font-size: 12px;
    color: var(--gray-dark);
    margin-top: 5px;
}

.cart-item-price {
    text-align: right;
}

.cart-item-price .price {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 18px;
}

.cart-item-price .quantity {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
}

.remove-item {
    background: none;
    border: none;
    color: var(--gray-dark);
    cursor: pointer;
    font-size: 16px;
    margin-left: 15px;
    transition: color 0.3s;
}

.remove-item:hover {
    color: var(--gold-dark);
}

.modal-footer {
    padding: 25px 30px;
    background-color: var(--gray-light);
    border-top: 1px solid var(--gray-medium);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

#cartTotal {
    color: var(--gold-dark);
    font-size: 24px;
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--gold-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 3000;
    box-shadow: var(--shadow-medium);
    animation: slideIn 0.3s ease-out;
    max-width: 350px;
    font-weight: 500;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .logo, .brand-tagline, .search-box, .header-actions {
        width: 100%;
    }
    
    .logo {
        justify-content: center;
        height: 45px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    .footer-logo-img {
        height: 35px;
        max-width: 150px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar {
        justify-content: flex-start;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    .footer-logo-img {
        height: 30px;
        max-width: 130px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
}