/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #25D366;
    --light-color: #ffffff;
    --dark-color: #111111;
    --gray-color: #888888;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-banner p {
    margin: 0;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--gray-color);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    padding: 100px 0;
    background-color: var(--light-gray);
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--gray-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--accent-color);
    color: var(--light-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 0 0 80px 0;
}

.section-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.section-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-count {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.featured-tag {
    background-color: var(--light-gray);
    color: var(--gray-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--light-color);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-image {
    height: 300px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-content {
    padding: 20px;
}

.product-brand {
    font-size: 0.85rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
    line-height: 1.4;
}

.product-description {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.discounted-price {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.discount-tag {
    background-color: #ff4444;
    color: var(--light-color);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-whatsapp {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-whatsapp {
    opacity: 1;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 50px;
    line-height: 1.8;
}

.shipping-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.shipping-item {
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.shipping-item i {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.shipping-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.shipping-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact-text {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SEO Content Section */
.seo-content {
    padding: 40px 0;
    background: #f9f9f9;
}

.seo-content h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
}

.seo-content p {
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.seo-content strong {
    color: var(--dark-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--light-color);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav a,
.footer-legal a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--light-color);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.store-link {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.85rem;
}

/* ============================================ */
/* CONFIRMATION MODAL STYLES */
/* ============================================ */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirmation-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--light-color);
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.confirmation-modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-color);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-close:hover {
    color: var(--dark-color);
}

.modal-body {
    padding: 30px;
}

.product-confirmation {
    text-align: center;
}

.product-confirmation i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.product-confirmation h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price-confirm {
    font-size: 1.4rem;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.confirm-text {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-footer .btn {
    flex: 1;
    max-width: 180px;
}

.btn-cancel {
    background-color: var(--light-gray);
    color: var(--dark-color);
}

.btn-cancel:hover {
    background-color: var(--border-color);
}

.btn-confirm {
    background-color: var(--accent-color);
    color: var(--light-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-confirm:hover {
    background-color: #1da851;
}

/* ============================================ */
/* RESPONSIVE DESIGN - MOBILE & TABLET */
/* ============================================ */

/* Tablet Styles */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .shipping-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Small Tablet Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background-color: var(--light-color);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Hero */
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-whatsapp {
        opacity: 1;
    }
    
    /* About Section */
    .shipping-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    /* Modal Responsive */
    .modal-content {
        max-width: 95%;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .product-confirmation i {
        font-size: 2.5rem;
    }
    
    .product-confirmation h4 {
        font-size: 1.1rem;
    }
    
    .product-price-confirm {
        font-size: 1.2rem;
    }
    
    .modal-footer {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .modal-footer .btn {
        max-width: 100%;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-image {
        height: 300px;
    }
    
    .top-banner {
        font-size: 0.8rem;
        padding: 8px 0;
    }
}