
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000; /* Pure black background */
    margin: 0; /* Ensure no margin on body */
    padding: 0; /* Ensure no padding on body */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.nav-container, .standard-header, .main-nav {
    background-color: #000000 !important; /* Pure black for navigation */
    border: none !important;
    box-shadow: none !important;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-button {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-button.active {
    background-color: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

.cart-icon {
    position: relative;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444 !important;
    color: white !important;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px 15px;
    }

    .main-nav ul {
        gap: 10px;
    }

    .nav-button {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 8px 10px;
    }

    .main-nav ul {
        gap: 8px;
    }

    .nav-button {
        padding: 5px 12px;
        font-size: 0.85rem;
    }

    .cart-icon {
        font-size: 1rem;
        margin-left: 10px;
    }
}

/* Adjust cart icon position on mobile */
@media (max-width: 768px) {
    .cart-icon {
        margin-right: 10px; /* Add right margin to move it away from the edge */
    }
}

@media (max-width: 480px) {
    .cart-icon {
        margin-right: 15px; /* Increase right margin on smaller screens */
    }
}

/* Footer Styles - Consistent across all pages */
footer,
footer .container,
.footer-content,
.footer-logo,
.footer-sections,
.footer-nav,
.footer-contact,
.footer-nav h3,
.footer-contact h3,
.footer-nav ul,
.footer-nav ul li,
.footer-nav ul li a,
.footer-contact p,
.whatsapp-link,
.footer-logo img {
    background-color: #121212 !important; /* Force dark background with !important */
}

/* Remove any potential background colors or images */
footer::before,
footer::after,
.footer-content::before,
.footer-content::after,
.footer-sections::before,
.footer-sections::after {
    display: none !important;
}

/* Ensure the footer bottom has the correct background */
.footer-bottom,
.footer-bottom * {
    background-color: #0a0a0a !important;
}

.footer-bottom p {
    background-color: transparent !important;
}

/* Ensure no margins or padding create gaps */
footer {
    padding: 40px 0 0;
    margin: 0;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-bottom {
    padding: 20px 0;
    margin: 0;
}

footer * {
    background-color: #121212; /* Force all footer elements to have the same background */
}

footer .container {
    background-color: #121212;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
    background-color: #121212;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-nav h3,
.footer-contact h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-nav ul li a:hover {
    color: #ccc;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 20px;
    text-align: center;
    color: #fff;
}

.whatsapp-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-link:hover {
    color: #25D366;
}

/* Add styling for the location link */
.location-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-link:hover {
    color: #4285F4; /* Google Maps blue color */
}

.location-link i {
    width: 20px;
    text-align: center;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0a0a0a; /* Even darker for footer bottom */
    margin: 0;
}

.footer-bottom * {
    background-color: #0a0a0a; /* Force all footer bottom elements to have the same background */
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    background-color: transparent;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-contact p,
    .whatsapp-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 25px 0 15px;
        margin-top: 30px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-nav h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-nav ul li {
        margin-bottom: 10px;
    }

    .footer-nav ul li a,
    .footer-contact p {
        font-size: 0.9rem;
    }
}

/* Global logo size override - this will ensure consistency across all pages */
.nav-bar .logo img,
.nav-container .logo img,
.standard-header .logo img,
.home-header .logo img,
.home-header .nav-container .logo img,
.products-page .nav-bar .logo img,
.product-detail-page .nav-bar .logo img {
    height: 40px !important;
    width: auto !important;
    vertical-align: middle !important;
    transition: height 0.3s ease !important;
}

/* Responsive overrides with !important to ensure they take precedence */
@media (max-width: 768px) {
    .nav-bar .logo img,
    .nav-container .logo img,
    .standard-header .logo img,
    .home-header .logo img,
    .home-header .nav-container .logo img,
    .products-page .nav-bar .logo img,
    .product-detail-page .nav-bar .logo img {
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    .nav-bar .logo img,
    .nav-container .logo img,
    .standard-header .logo img,
    .home-header .logo img,
    .home-header .nav-container .logo img,
    .products-page .nav-bar .logo img,
    .product-detail-page .nav-bar .logo img {
        height: 30px !important;
    }
}

/* Footer contact information - consistent across all pages */
.footer-contact p,
.footer-contact p i,
.footer-nav h3,
.footer-contact h3 {
    color: #ffffff !important; /* White color for all footer text */
}

/* Footer links */
.footer-nav ul li a,
.whatsapp-link {
    color: #ffffff !important; /* White color for footer links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.whatsapp-link:hover {
    color: #cccccc !important; /* Slightly darker on hover */
}


