:root {
    --gold: #ffd700;
    --dark-blue: #0a2342;
    --sky-blue: #87ceeb;
    --sunset-orange: #ff7e5f;
    --twilight-purple: #6a5acd;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* Sky Gradient Background */
.sky-background {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--twilight-purple) 100%);
    background-attachment: fixed;
}

/* Navbar Styles - Compact */
.navbar {
    background: rgba(10, 35, 66, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 35, 66, 0.95);
    padding: 6px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 2px;
    position: relative;
}

.navbar-brand:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-brand:hover:after {
    width: 100%;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 8px;
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

/* Hero Section - ORIGINAL STYLE, just closer to navbar */
.hero-section {
    background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.7)), 
                url('https://images.unsplash.com/photo-1534274988757-a28bf1a57c17?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 0 70px;
    color: white;
    text-align: center;
    position: relative;
    margin-top: -5px;
}

.hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.hero-section h1:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 18px auto 22px;
    line-height: 1.6;
}

.hero-section .btn {
    background-color: var(--gold);
    border: none;
    padding: 10px 28px;
    font-weight: bold;
    color: var(--dark-blue);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    font-size: 0.95rem;
}

.hero-section .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-section .btn:hover:before {
    left: 0;
}

/* Product Cards - Enhanced for 2x2 on mobile */
.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 20px;
}

.product-card-body h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-body p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-card .btn-warning {
    width: 100%;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px;
    font-size: 0.9rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.info-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-card:hover img {
    transform: scale(1.05);
}

.info-card-body {
    padding: 30px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.3rem;
}

.info-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.info-card .btn {
    background: var(--dark-blue);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card .btn:hover {
    background: var(--gold);
    color: var(--dark-blue);
}

/* Footer Section */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    flex-shrink: 0;
}

.footer:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--dark-blue);
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.footer-logo:hover {
    color: var(--gold);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.1rem;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    text-decoration: none;
}

.footer ul a:before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer ul a:hover {
    color: white;
    padding-left: 20px;
}

.footer ul a:hover:before {
    opacity: 1;
    left: -5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Fixed WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    animation: none;
    color: white;
}

.whatsapp-button i {
    font-size: 28px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   CART SIDEBAR - COMPLETE
   ============================================ */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -430px;
    width: 400px;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

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

/* Cart Overlay - Dark background */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(4px);
}

.cart-overlay.active {
    display: block;
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Cart Header - With visible close button */
.cart-header {
    padding: 18px 25px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-blue);
    color: white;
    flex-shrink: 0;
    border-radius: 0;
}

.cart-header h5 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header h5 i {
    color: var(--gold);
    font-size: 1.4rem;
}

/* VISIBLE CLOSE BUTTON - White circle with X */
.cart-header .btn-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    opacity: 1;
    padding: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    color: white;
    font-size: 0;
}

.cart-header .btn-close i {
    font-size: 1.3rem;
    color: white;
    transition: all 0.3s ease;
}

.cart-header .btn-close:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.cart-header .btn-close:hover i {
    color: var(--gold);
}

.cart-header .btn-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Hide default Bootstrap close button styles */
.cart-header .btn-close::before,
.cart-header .btn-close::after {
    display: none;
}

/* Cart Items Container */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
    background: #f8f9fa;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}

/* Individual Cart Item */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    gap: 10px;
}

.cart-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-5px);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h6 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark-blue);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-info .cart-item-price {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

/* Cart Item Actions (+ and - buttons) */
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.cart-item-actions .btn-qty {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.8rem;
}

.cart-item-actions .btn-qty:hover {
    transform: scale(1.15);
}

.cart-item-actions .btn-qty-minus {
    background: #f8d7da;
    color: #721c24;
}

.cart-item-actions .btn-qty-minus:hover {
    background: #f5c6cb;
}

.cart-item-actions .btn-qty-plus {
    background: #d4edda;
    color: #155724;
}

.cart-item-actions .btn-qty-plus:hover {
    background: #c3e6cb;
}

.cart-item-actions .cart-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-blue);
}

.cart-item-actions .btn-remove-item {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.8rem;
}

.cart-item-actions .btn-remove-item:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}

/* Cart Footer */
.cart-footer {
    padding: 18px 25px 22px;
    border-top: 2px solid #eee;
    background: white;
    flex-shrink: 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-blue);
    padding: 0 5px;
}

.cart-total span {
    color: var(--gold);
    font-size: 1.3rem;
}

.cart-footer .btn-warning {
    background: var(--gold);
    color: var(--dark-blue);
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.cart-footer .btn-warning:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Cart Empty State */
.cart-items .text-muted {
    text-align: center;
    padding: 50px 0;
    color: #999 !important;
    font-size: 1rem;
}

.cart-items .text-muted i {
    font-size: 3.5rem;
    color: #ddd;
    display: block;
    margin-bottom: 15px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.toast-notification.info {
    background: #17a2b8;
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large screens (992px - 1200px) */
@media (max-width: 992px) {
    body {
        padding-top: 65px;
    }
    
    .hero-section {
        padding: 35px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .product-card img {
        height: 220px;
    }
    
    .info-card img {
        height: 220px;
    }
}

/* Tablets and small laptops (768px - 991px) */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        margin: 0 6px;
    }
    
    .hero-section {
        padding: 30px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section h1:after {
        width: 60px;
        bottom: -6px;
    }
    
    .hero-section p {
        font-size: 1rem;
        max-width: 400px;
        margin: 15px auto 18px;
    }
    
    .hero-section .btn {
        padding: 9px 22px;
        font-size: 0.9rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .info-card img {
        height: 200px;
    }
    
    .info-card-body {
        padding: 20px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .footer {
        padding: 70px 0 20px;
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
    
    /* Cart on tablet */
    .cart-sidebar {
        width: 380px;
        right: -400px;
    }
}

/* Small devices - 2x2 grid, perfect mobile experience (576px - 767px) */
@media (max-width: 576px) {
    body {
        padding-top: 55px;
    }
    
    /* Navbar */
    .navbar {
        padding: 5px 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        margin: 0 5px;
    }
    
    /* Cart Button on mobile */
    #cartBtn i {
        font-size: 1.1rem;
    }
    
    #cartBtn .badge {
        font-size: 0.6rem;
        padding: 2px 5px;
        min-width: 18px;
        top: -6px;
        right: -6px;
    }
    
    /* ========== HAMBURGER MENU - FULL WHITE ========== */
    .navbar-toggler {
        border: none;
        padding: 0.5rem 0.6rem;
        z-index: 1060;
        position: relative;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.3);
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.05);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
        outline: none;
    }
    
    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
        width: 1.8rem;
        height: 1.8rem;
        transition: transform 0.3s ease;
        display: block;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-toggler[aria-expanded="true"] {
        background: rgba(255, 215, 0, 0.25);
        border-color: var(--gold);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transform: rotate(90deg);
    }
    
    /* Mobile Menu - Slide from right */
    .navbar-collapse {
        position: fixed;
        top: 60px;
        right: 15px;
        width: 290px;
        max-height: 80vh;
        overflow-y: auto;
        background: rgba(10, 35, 66, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 22px 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        text-align: right;
        transform: translateX(120%) scale(0.95);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
        border: 1px solid rgba(255, 215, 0, 0.15);
        opacity: 0;
        pointer-events: none;
        z-index: 1050;
    }
    
    .navbar-collapse.show {
        transform: translateX(0) scale(1);
        opacity: 1;
        pointer-events: all;
    }
    
    .navbar-nav {
        align-items: flex-end;
        gap: 4px;
        width: 100%;
    }
    
    .nav-item {
        margin-bottom: 4px;
        width: 100%;
    }
    
    .nav-item .nav-link {
        padding: 10px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: inline-block;
        width: 100%;
        text-align: right;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-item .nav-link:hover {
        background: rgba(255, 215, 0, 0.15);
        color: var(--gold) !important;
        transform: translateX(-6px);
        border-bottom-color: rgba(255, 215, 0, 0.2);
    }
    
    .nav-item .nav-link:after {
        display: none;
    }
    
    .nav-item .nav-link i {
        margin-left: 10px;
        color: var(--gold);
    }
    
    /* Hero Section - ORIGINAL STYLE, just closer */
    .hero-section {
        padding: 15px 0 35px;
        background-attachment: scroll;
        margin-top: -3px;
        background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.7)), 
                    url('https://images.unsplash.com/photo-1534274988757-a28bf1a57c17?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .hero-section h1:after {
        width: 45px;
        height: 2px;
        bottom: -5px;
    }
    
    .hero-section p {
        font-size: 0.85rem;
        max-width: 100%;
        padding: 0 15px;
        margin: 10px auto 14px;
        line-height: 1.5;
    }
    
    .hero-section .btn {
        padding: 7px 18px;
        font-size: 0.8rem;
        border-radius: 25px;
    }
    
    .hero-section .btn i {
        font-size: 0.75rem;
    }
    
    /* Product Grid - 2x2 for small devices */
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 5px;
    }
    
    .product-card {
        margin-bottom: 0;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
    
    .product-card img {
        height: 150px;
        border-radius: 12px 12px 0 0;
    }
    
    .product-card-body {
        padding: 12px;
    }
    
    .product-card-body h5 {
        font-size: 0.85rem;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-card-body p {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        margin-bottom: 5px;
        color: #888;
    }
    
    .product-price {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .product-card .btn-warning {
        font-size: 0.75rem;
        padding: 6px 10px;
        border-radius: 20px;
    }
    
    .product-card .btn-warning i {
        font-size: 0.7rem;
    }
    
    /* Info Grid - 2x2 on mobile */
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 5px;
    }
    
    .info-card {
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    .info-card img {
        height: 140px;
    }
    
    .info-card-body {
        padding: 12px;
    }
    
    .info-card h3 {
        font-size: 0.95rem;
        padding-bottom: 6px;
        margin-bottom: 8px;
    }
    
    .info-card h3:after {
        width: 30px;
        height: 2px;
    }
    
    .info-card p {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 10px;
    }
    
    .info-card .btn {
        font-size: 0.7rem;
        padding: 5px 12px;
        border-radius: 20px;
    }
    
    /* Cart Sidebar - Full width on mobile */
    .cart-sidebar {
        width: 100%;
        right: -100%;
        border-radius: 0;
    }
    
    .cart-sidebar.active {
        right: 0;
    }
    
    .cart-header {
        padding: 15px 20px;
    }
    
    .cart-header h5 {
        font-size: 1.1rem;
    }
    
    .cart-header .btn-close {
        width: 40px;
        height: 40px;
    }
    
    .cart-header .btn-close i {
        font-size: 1.1rem;
    }
    
    .cart-items {
        padding: 12px 15px;
    }
    
    .cart-item {
        padding: 10px 12px;
        flex-wrap: wrap;
        border-radius: 10px;
    }
    
    .cart-item-info {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .cart-item-info h6 {
        font-size: 0.85rem;
    }
    
    .cart-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .cart-item-actions .btn-qty {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .cart-item-actions .cart-qty {
        min-width: 25px;
        font-size: 0.9rem;
    }
    
    .cart-item-actions .btn-remove-item {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .cart-footer {
        padding: 15px 20px 18px;
    }
    
    .cart-total {
        font-size: 1rem;
    }
    
    .cart-total span {
        font-size: 1.1rem;
    }
    
    .cart-footer .btn-warning {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* WhatsApp Button - Smaller on mobile */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    /* Footer - Better mobile layout */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer h5 {
        font-size: 0.95rem;
        margin-top: 20px;
    }
    
    .footer ul a {
        font-size: 0.8rem;
    }
    
    .footer-about p {
        font-size: 0.85rem;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
        padding-top: 15px;
        margin-top: 25px;
    }
    
    /* Toast notification on mobile */
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        font-size: 0.85rem;
        padding: 12px 18px;
        border-radius: 10px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .section-title:after {
        width: 40px;
        height: 2px;
    }
}

/* Extra small devices (very small phones - up to 380px) */
@media (max-width: 380px) {
    body {
        padding-top: 50px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-toggler {
        width: 42px;
        height: 42px;
        padding: 0.4rem;
    }
    
    .navbar-toggler-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .navbar-collapse {
        top: 55px;
        right: 10px;
        width: 230px;
        padding: 16px 18px;
    }
    
    .nav-item .nav-link {
        font-size: 0.85rem !important;
        padding: 8px 14px !important;
    }
    
    .hero-section {
        padding: 10px 0 28px;
    }
    
    .hero-section h1 {
        font-size: 1.3rem;
    }
    
    .hero-section h1:after {
        width: 35px;
        height: 2px;
        bottom: -4px;
    }
    
    .hero-section p {
        font-size: 0.75rem;
        margin: 8px auto 10px;
        padding: 0 10px;
    }
    
    .hero-section .btn {
        padding: 5px 14px;
        font-size: 0.7rem;
        border-radius: 20px;
    }
    
    .product-grid {
        gap: 8px;
        padding: 0 3px;
    }
    
    .product-card img {
        height: 120px;
    }
    
    .product-card-body {
        padding: 8px;
    }
    
    .product-card-body h5 {
        font-size: 0.75rem;
    }
    
    .product-card-body p {
        font-size: 0.65rem;
        -webkit-line-clamp: 1;
    }
    
    .product-price {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .product-card .btn-warning {
        font-size: 0.65rem;
        padding: 4px 8px;
        border-radius: 15px;
    }
    
    .product-card .btn-warning i {
        font-size: 0.6rem;
    }
    
    .info-grid {
        gap: 8px;
        padding: 0 3px;
    }
    
    .info-card img {
        height: 110px;
    }
    
    .info-card-body {
        padding: 8px;
    }
    
    .info-card h3 {
        font-size: 0.8rem;
        padding-bottom: 4px;
        margin-bottom: 5px;
    }
    
    .info-card p {
        font-size: 0.65rem;
        -webkit-line-clamp: 1;
        margin-bottom: 8px;
    }
    
    .info-card .btn {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    /* Cart - Extra small */
    .cart-item {
        padding: 8px 10px;
        flex-wrap: wrap;
    }
    
    .cart-item-info {
        width: 100%;
        margin-bottom: 6px;
    }
    
    .cart-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .cart-item-actions .btn-qty {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }
    
    .cart-item-actions .cart-qty {
        min-width: 20px;
        font-size: 0.8rem;
    }
    
    .whatsapp-button {
        width: 44px;
        height: 44px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button i {
        font-size: 20px;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    body {
        padding-top: 50px;
    }
    
    .navbar-toggler {
        width: 40px;
        height: 40px;
        padding: 0.3rem;
    }
    
    .navbar-toggler-icon {
        width: 1.4rem;
        height: 1.4rem;
    }
    
    .navbar-collapse {
        max-height: 75vh;
        top: 55px;
        width: 260px;
    }
    
    .hero-section {
        padding: 10px 0 25px;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .hero-section h1:after {
        width: 40px;
        height: 2px;
        bottom: -4px;
    }
    
    .hero-section p {
        font-size: 0.8rem;
        margin: 8px auto 10px;
        max-width: 70%;
    }
    
    .hero-section .btn {
        padding: 5px 16px;
        font-size: 0.75rem;
    }
    
    .product-card img {
        height: 130px;
    }
    
    .info-card img {
        height: 120px;
    }
    
    /* Cart in landscape */
    .cart-sidebar {
        width: 70%;
        right: -75%;
    }
    
    .cart-items {
        padding: 10px 15px;
    }
    
    .cart-item {
        padding: 8px 10px;
    }
}

/* Overlay for mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 576px) {
    .menu-overlay.active {
        display: block;
    }
}