:root {
    --primary: #2C3E50;
    --secondary: #E74C3C;
    --accent: #F39C12;
    --success: #27AE60;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --gray: #7F8C8D;
    --light-gray: #F8F9FA;
    --border: #E9ECEF;
    --card: #FFFFFF;
    --gradient: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: var(--light-gray);
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* PROMOTION BANNER */
.promo-banner {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

    .promo-banner strong {
        color: var(--accent);
        font-weight: 700;
    }

/* NAVBAR */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo img {
        height: 120px;
        width: auto;
        object-fit: contain;
    }

    .logo span {
        color: var(--accent);
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

    nav ul li a {
        padding: 10px 0;
        border-radius: 0;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        color: var(--dark);
        background: transparent;
        border: none;
        text-decoration: none;
        font-weight: 500;
    }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: var(--secondary);
            transform: none;
            background: transparent;
            border-color: transparent;
            box-shadow: none;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    position: relative;
}

    .search-bar input {
        padding: 10px 40px 10px 15px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        width: 250px;
        font-size: 14px;
        transition: var(--transition);
    }

        .search-bar input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
        }

    .search-bar button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        color: var(--gray);
    }

.header-icons {
    display: flex;
    gap: 15px;
}

.header-icon {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius);
    transition: var(--transition);
}

    .header-icon:hover {
        background: var(--light-gray);
    }

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    text-decoration: none;
    text-align: center;
}

    .btn::before {
        display: none;
    }

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

    .btn-primary:hover {
        background: var(--secondary);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.btn-secondary {
    background: var(--secondary);
    color: white;
}

    .btn-secondary:hover {
        background: #C0392B;
        transform: translateY(-2px);
    }

.btn-outline {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-block {
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 40px;
}

.slide h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-dot.active {
        background: white;
        transform: scale(1.2);
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
}

    .slider-arrow:hover {
        background: rgba(255,255,255,0.3);
        transform: translateY(-50%) scale(1.1);
    }

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background: var(--light-gray);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
/*        background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(231, 76, 60, 0.7) 100%);*/
        z-index: 1;
    }

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 800px;
}

    .slide-content h2 {
        font-size: 56px;
        font-weight: 900;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .slide-content p {
        font-size: 20px;
        margin-bottom: 30px;
        opacity: 0.95;
        line-height: 1.6;
    }

.slide-discount {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .slider-dot.active {
        background: white;
        transform: scale(1.2);
        border-color: var(--accent);
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary);
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

    .slider-arrow:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: var(--shadow);
    }

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* SECTION */
section {
    padding: 80px 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    gap: 20px;
}

    .section-title h2 {
        font-size: 36px;
        font-weight: 900;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-title p {
        color: var(--gray);
        font-size: 16px;
        max-width: 520px;
    }

/* PRODUCT CARDS */
.product-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary);
    }

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--light-gray);
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-size: 14px;
}

    .action-btn:hover {
        background: var(--primary);
        color: white;
    }

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

    .product-title a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition);
    }

        .product-title a:hover {
            color: var(--primary);
        }

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: var(--accent);
    font-size: 14px;
}

.rating-count {
    color: var(--gray);
    font-size: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

    .add-to-cart-btn:hover {
        background: var(--secondary);
    }

/* GRID LAYOUTS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARDS */
.card {
    background: var(--card);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: var(--primary);
    }

    .card .icon {
        font-size: 36px;
        margin-bottom: 16px;
        display: block;
    }

    .card h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--primary);
    }

    .card p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.7;
    }

/* OLD MENU STYLES - TO BE REPLACED */
.menu-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* DEALS */
.deals {
    background: linear-gradient(135deg, rgba(29,78,216,0.07), rgba(16,185,129,0.07));
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.deal-card {
    background: #FFFFFF;
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid #F0F0F0;
    box-shadow: var(--shadow-sm);
}

    .deal-card h3 {
        font-size: 16px;
        font-weight: 800;
    }

    .deal-card p {
        margin-top: 6px;
        font-size: 13px;
        color: var(--gray);
    }

    .deal-card strong {
        display: block;
        margin-top: 10px;
        color: var(--blue);
        font-size: 16px;
    }

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

    .gallery img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

/* CONTACT */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.map {
    background: #FFFFFF;
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid #F0F0F0;
    box-shadow: var(--shadow-sm);
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark);
    font-size: 14px;
}

/* FOOTER */
footer {
    background: #0b1220;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

    footer p {
        color: rgba(255,255,255,0.7);
        font-size: 13px;
        margin-top: 8px;
    }

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    background: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow);
    z-index: 2000;
    transition: 0.3s;
}

    .whatsapp-float:hover {
        transform: translateY(-3px);
        opacity: 0.95;
    }

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--card);
    box-shadow: var(--shadow-lg);
    z-index: 1999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

    .mobile-menu.active {
        left: 0;
    }

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
}

.mobile-menu-nav {
    padding: 20px 0;
}

    .mobile-menu-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-nav li {
        border-bottom: 1px solid var(--border);
    }

        .mobile-menu-nav li:last-child {
            border-bottom: none;
        }

    .mobile-menu-nav a {
        display: block;
        padding: 15px 20px;
        color: var(--dark);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }

        .mobile-menu-nav a:hover {
            background: var(--light-gray);
            color: var(--primary);
        }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
}

    .mobile-menu-overlay.active {
        display: block;
    }

.mobile-menu.active {
    display: block;
}

/* Product Modal */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
}

.product-modal-overlay.active {
    display: block;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.product-modal.active {
    display: block;
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--light-gray);
}

.product-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.product-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.product-modal-close:hover {
    background: var(--light-gray);
    color: var(--dark);
}

.product-modal-content {
    display: flex;
    gap: 24px;
    padding: 24px;
}

.product-modal-image {
    flex: 0 0 40%;
    min-width: 250px;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.product-modal-price span:first-child {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.product-modal-price span:last-child {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
}

.product-modal-section {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.product-modal-section h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-modal-section p {
    margin: 0;
    line-height: 1.6;
    color: var(--dark);
}

/* Responsive for Product Modal */
@media (max-width: 768px) {
    .product-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .product-modal-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-modal-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }
    
    .product-modal-header {
        padding: 16px 20px;
    }
    
    .product-modal-header h3 {
        font-size: 20px;
    }
    
    .product-modal-section {
        padding: 16px;
    }
    
    .product-modal-section h4 {
        font-size: 16px;
    }
}

@media(max-width: 1200px) {
    .container {
        width: 95%;
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 900px) {
    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .slide-discount {
        font-size: 20px;
        padding: 12px 24px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    nav ul {
        display: none;
    }

    .header-actions {
        gap: 10px;
    }

    .search-bar input {
        width: 180px;
    }

    .gallery {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media(max-width: 600px) {
    .logo img {
        height: 80px;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-content {
        padding: 20px;
    }

        .slide-content h2 {
            font-size: 28px;
        }

        .slide-content p {
            font-size: 16px;
        }

    .slide-discount {
        font-size: 18px;
        padding: 10px 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-nav {
        bottom: 15px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

        .section-title h2 {
            font-size: 28px;
        }

    .logo {
        font-size: 24px;
    }

    .nav {
        padding: 12px 0;
    }

    .header-actions {
        flex-direction: column;
        gap: 10px;
    }

    .search-bar input {
        width: 100%;
    }

    .header-icons {
        justify-content: center;
    }

    .promo-banner {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* SHOPPING CART MODAL */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--card);
    box-shadow: var(--shadow-lg);
    z-index: 2001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .cart-modal.active {
        right: 0;
    }

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
}

    .cart-header h3 {
        margin: 0;
        color: var(--primary);
        font-size: 20px;
    }

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
    padding: 5px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
}

    .cart-item:hover {
        box-shadow: var(--shadow-sm);
    }

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
}

.cart-item-remove {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
}

    .cart-item-remove:hover {
        background: #C0392B;
    }

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

.cart-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--light-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.cart-total-price {
    color: var(--primary);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

    .cart-overlay.active {
        display: block;
    }

/* MAP CONTAINER */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .map-container iframe {
        width: 100%;
        height: 400px;
        border: none;
    }
