        body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}
        :root {
            --nasco-blue: #1a4789;
            --top-bar-bg: #2c3e41;
        }

        .top-bar {
            height: 35px;
            background-color: var(--top-bar-bg);
        }

        /* Logo Styling */
        .logo-text {
            font-size: 28px;
            font-weight: 900;
            color: var(--nasco-blue);
            line-height: 1;
        }

        .logo-slogan {
            font-size: 11px;
            font-weight: 700;
            color: var(--nasco-blue);
            margin-top: -2px;
        }

        /* Navbar Styling */
        .navbar-light .navbar-nav .nav-link {
            color: #000;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0.5rem 1rem;
        }

        .nav-icon {
            font-size: 1.2rem;
            color: #333;
        }

        .search-icon {
            font-size: 1.3rem;
            cursor: pointer;
        }

        /* Language Toggle Button */
        .btn-lang {
            border: 2px solid var(--nasco-blue);
            color: var(--nasco-blue);
            font-weight: bold;
            padding: 2px 10px;
            border-radius: 5px;
            transition: 0.3s;
        }

        .btn-lang:hover {
            background-color: var(--nasco-blue);
            color: white;
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 20px 0;
            }

            .utility-section {
                flex-direction: column;
                align-items: flex-start !important;
                gap: 15px;
            }
        }





/* Slider Container */
.nasco-slider {
    position: relative;
    overflow: hidden;
}

.main-slide-img {
    height: 80vh; 
    object-fit: cover;
    filter: brightness(0.9);
}
@media (max-width: 768px) {
    .main-slide-img { height: 60vh; }

}



/* Quick Access Section Styling */
.quick-access-section {
    border-top: 1px solid #f8f9fa; /* Subtle separator from Hero */
}

.quick-access-item {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 105px; 
    transition: all 0.3s ease;
}

/* Round Icon Container */
.icon-circle {
    width: 75px;
    height: 75px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon Sizing */
.icon-circle i {
    font-size: 1.7rem;
    color: #212529;
}

/* Specific color for Promo Tag like in image */
.promo-red i {
    color: #e63946;
}

/* Text Label Styling */
.access-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: #444;
}

/* Hover Effects */
.quick-access-item:hover {
    color: #000;
}

.quick-access-item:hover .icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
/* Styling for the red lines */
.divider-line {
    height: 1px;
    background-color: #b71c1c; /* A deep red to match your image */
}

/* Styling for the text */
.category-heading {
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    white-space: nowrap; 
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    .category-heading {
        font-size: 1.5rem;
      
    }
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .quick-access-item {
        width: 30%; /* 3 items per row on small screens */
        margin-bottom: 25px;
    }
    .icon-circle {
        width: 65px;
        height: 65px;
    }
    .icon-circle i {
        font-size: 1.4rem;
    }
    .access-label {
        font-size: 11px;
    }
}

/* --- Header & Title Styling --- */
.category-heading {
    font-size: 2.5rem;
    font-weight: 400;
}

.divider-line {
    height: 1px;
    background-color: #b71c1c;
}

.shop-all-link {
    text-decoration: underline;
    color: #333;
    font-size: 0.9rem;
}

/* --- Product Card Styling --- */
.product-card {
    transition: transform 0.3s ease;
}

.product-img-container {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
}

.product-img-container img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Ensures all images are square */
    object-fit: cover;
}

/* Sale Badge */
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e63946;
    color: white;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
}

/* Wishlist Icon */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #333;
    z-index: 2;
    cursor: pointer;
}

/* --- Price Styling --- */
.product-title {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #222;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    margin-right: 8px;
    font-size: 0.9rem;
}

.new-price {
    color: #e63946;
    font-weight: bold;
    font-size: 1rem;
}

.regular-price {
    font-weight: bold;
    font-size: 1rem;
    color: #222;
}

/* --- Decoration Arrows --- */
.static-nav-arrow {
    position: absolute;
    top: 60%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

.left-arrow { left: -20px; }
.right-arrow { right: -20px; }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .category-heading { font-size: 1.8rem; }
    .product-title { font-size: 0.85rem; }
}


/* Newsletter Bar Styling */
.newsletter-bar {
    background-color: #3b6ca1; /* Navy/Slate Blue */
}

.newsletter-input {
    border-radius: 4px 0 0 4px;
    height: 50px;
    border: none;
    font-size: 14px;
    padding-left: 20px;
}

.btn-register {
    background-color: #212529;
    color: white;
    border-radius: 0 4px 4px 0;
    height: 50px;
    font-size: 14px;
    font-weight: bold;
    border: none;
}

.btn-register:hover {
    background-color: #000;
    color: white;
}

/* Main Footer Styling */
.footer-main {
    background-color: #ffffff;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3b6ca1;
}

/* Social Icons */
.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.social-icon.fb { background-color: #3b5998; }
.social-icon.ig { background-color: #e4405f; }

/* Category Directory Styling */
.category-directory {
    color: #333;
    line-height: 2;
}

.category-directory a {
    color: #6c757d;
    text-decoration: none;
    padding: 0 5px;
}

.category-directory a:hover {
    text-decoration: underline;
}

/* Scroll Top Button Styling */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #212529;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .newsletter-input {
        border-radius: 4px;
    }
    .btn-register {
        border-radius: 4px;
        margin-left: 10px;
    }
}