:root {
    --primary-navy: #001f3f;
    --navy-dark: #000c1a;
    --secondary-blue: #003366;
    --accent-color: #00ffcc;
    /* Vibrant Neon Teal */
    --text-color: #1a202c;
    --light-bg: #f7fafc;
    --accent: #00ffcc;
    --skeleton-bg: #edf2f7;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --radius-premium: 24px;
    /* Extra rounded corners */
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
}

/* Skeleton Loading Animation */
.skeleton {
    background: var(--skeleton-bg);
    background: linear-gradient(90deg,
            #eceff1 25%,
            #f8f9fa 50%,
            #eceff1 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.skeleton-title {
    height: 1.5rem;
    margin-bottom: 1rem;
    width: 80%;
}

.skeleton-img {
    height: 200px;
    width: 100%;
    border-radius: 12px;
}

/* Enhanced Badges */
.product-card .position-relative {
    overflow: hidden;
    /* Essential for diagonal ribbon */
}

.product-label-status {
    position: absolute;
    top: 15px;
    left: -32px;
    /* Pull back to corner */
    width: 120px;
    /* Long enough to span corner */
    padding: 5px 0;
    text-align: center;
    transform: rotate(-45deg);
    /* Diagonal */
    z-index: 5;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    /* Ribbons are sharp */
    right: auto;
}

/* Colors for Ribbons */
.badge-lightning {
    background: #FFD700;
    /* Gold */
    color: #001f3f;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.badge-promo {
    background: #e53e3e;
    /* Red Standard */
    color: white;
}

.badge-new {
    background: var(--accent-color);
    color: var(--navy-dark);
}

.badge-featured {
    background: var(--primary-navy);
    color: white;
}

/* Discount Badge - Circle or Small Tag (Separate from ribbon) */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    background: #e53e3e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* If item has both New and Discount, adjust Discount position */
/* (Logic handled in view, but CSS can help stack) */

.badge-free-shipping {
    background-color: var(--secondary-blue);
    color: white;
    top: 45px;
    left: 15px;
}

/* Ensure Titles are Readable */
.section-title-wrapper h3 {
    color: var(--primary-navy);
}

/* Fixed Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-btn:hover {
    background: var(--primary-navy);
    color: white;
}

.scroll-btn-left {
    left: 10px;
}

.scroll-btn-right {
    right: 10px;
}

.products-scroll-container {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
    scroll-behavior: smooth;
    padding: 20px 5px;
    /* Space for shadows */
}

.products-scroll-container::-webkit-scrollbar {
    display: none;
}

.products-scroll-track {
    display: flex;
    gap: 20px;
}


/* Minimalist Institutional Section */
.bg-navy-institutional {
    background: #f1f4f6;
    /* Professional Soft Gray */
    color: var(--primary-navy);
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card {
    background: #ffffff;
    border: 1px solid rgba(0, 31, 63, 0.08);
    border-radius: var(--radius-premium);
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.benefit-card:hover {
    background: #ffffff;
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.05);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    opacity: 0.9;
}

.benefit-card h5 {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-navy);
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--secondary-blue);
    opacity: 0.8;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-navy-dark {
    background-color: var(--navy-dark) !important;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.text-navy {
    color: var(--primary-navy) !important;
}

.bg-navy {
    background-color: var(--primary-navy) !important;
}

.btn-navy {
    background-color: var(--primary-navy);
    color: white;
    border: none;
    border-radius: var(--radius-premium);
    padding: 12px 24px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-navy:hover {
    background-color: var(--secondary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius-premium);
    padding: 12px 24px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.btn-accent:hover {
    background-color: #fff;
    color: var(--navy-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 255, 204, 0.4);
}

/* Global Containers & Full Width */
.container-fluid {
    padding-left: 5%;
    padding-right: 5%;
}

@media (max-width: 992px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.container-ultra {
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

/* Navbar */
/* Glassmorphism Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 31, 63, 0.9) !important;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 5px;
}

.main-nav {
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.brand-logo-container {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo-container {
    transform: scale(1.05) rotate(-3deg);
}

.brand-name {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-tagline {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-top: -2px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 15px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.modern-search {
    width: 300px;
}

.modern-search .input-group {
    background: #fff;
    border-radius: 50px;
    padding: 2px 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modern-search:focus-within .input-group {
    box-shadow: 0 0 15px var(--accent);
    transform: scale(1.02);
}

.modern-search-full .input-group {
    background: rgba(241, 243, 245, 0.8);
    border-radius: var(--radius-premium);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(241, 243, 245, 0.8);
}

.modern-search-full:focus-within .input-group {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 255, 204, 0.15);
}

.modern-search-full .form-control {
    border: none !important;
    background: transparent;
    box-shadow: none !important;
    font-size: 1rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.modern-search-full .btn-navy {
    border-radius: 0;
    font-weight: 700;
    padding-left: 25px;
    padding-right: 25px;
}

/* Category Nav */
.category-nav {
    background: rgba(0, 12, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.category-nav .nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.category-nav .nav-link:hover::after {
    width: 60%;
}

.category-nav .nav-link:hover {
    color: var(--accent) !important;
    background: transparent !important;
}

/* Header Actions */
.header-actions a {
    transition: all 0.3s ease;
    color: var(--primary-navy) !important;
}

.header-actions a:hover {
    color: var(--secondary-blue) !important;
    transform: translateY(-2px);
}

.header-actions .badge {
    font-size: 0.65rem;
    padding: 0.4em 0.6em;
}

/* Hero Carousel */
/* Hero Carousel (Responsive Height) */
.carousel-item {
    height: auto;
    min-height: 300px;
    overflow: hidden;
    background-color: var(--navy-dark);
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 200px;
    }
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Reduced scale to prevent excessive cropping during animation if kept */
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-premium);
    padding: 2rem;
    bottom: 10%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 80%;
    left: 10%;
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 1rem;
        bottom: 5%;
        border-radius: 12px;
    }
    .carousel-caption h2 {
        font-size: 1.5rem !important;
    }
    .carousel-caption p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    .carousel-caption .btn {
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
    }
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
}

/* Category Cards */
.category-card {
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    background-color: #fff;
    border: 2px solid var(--light-bg);
}

/* Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-premium);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

.product-card .position-relative {
    background-color: #fcfcfc;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.product-card img {
    object-fit: contain;
    max-height: 100%;
    width: auto;
    transition: transform 0.6s ease;
    /* Try to blend white backgrounds if any */
    mix-blend-mode: multiply;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card .card-body {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Force buttons to the bottom */
.product-card .card-body .btn:first-of-type {
    margin-top: auto;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
    line-height: 1.4;
    height: 3.1rem;
    /* Limit to 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Added for compatibility */
    -webkit-box-orient: vertical;
}


.product-card .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 0 0 10px 0;
}

.product-card .btn-success {
    background-color: #25d366;
    border: none;
    font-weight: 600;
    padding: 0.6rem;
    border-radius: 10px;
}

.product-card .btn-success:hover {
    background-color: #128c7e;
    transform: scale(1.02);
}

.product-card .btn-navy {
    border-radius: 10px;
    font-weight: 500;
}

/* Brand Scroll */
.brand-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.brand-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome Safari */
}

/* Section Headings */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-navy);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
}

/* Professional Pagination */
.pagination-professional .page-link {
    border: 1px solid #eee;
    margin: 0 3px;
    color: var(--primary-navy);
    font-weight: 600;
    border-radius: 8px !important;
    padding: 10px 18px;
    transition: all 0.2s ease;
}

.pagination-professional .page-item.active .page-link {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 31, 63, 0.2);
}

.pagination-professional .page-link:hover {
    background-color: #f8f9fa;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.pagination-professional .page-item.disabled .page-link {
    background-color: #fafafa;
    color: #ccc;
    border-color: #eee;
}

/* Brand Carousel (Marquee) */
.brand-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.brand-track {
    display: flex;
    width: calc(200px * 10);
    /* Adjust based on number of items/width */
    animation: scroll 20s linear infinite;
}

.brand-item {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 5));
        /* Move by half the duplicated width */
    }
}

/* Pause on hover */
/* Categories Horizontal Scroll */
.category-scroll-container {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    /* Firefox */
}

.category-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.category-scroll-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.category-item-scroll {
    flex: 0 0 160px;
    /* Fixed width for items */
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .category-item-scroll {
        flex: 0 0 200px;
    }
}

/* Products Horizontal Scroll */
.product-scroll-container {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 20px;
}

.product-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.product-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-navy);
    border-radius: 4px;
}

.product-item-scroll {
    flex: 0 0 280px;
    /* Wider than categories */
    scroll-snap-align: start;
}

@media (max-width: 576px) {
    .product-item-scroll {
        flex: 0 0 220px;
    }
}

/* Promotions Infinite Carousel (Marquee) */
.promo-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    z-index: 10;
    /* Ensure it is above potential overlapping elements */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    /* Soft edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.promo-track {
    display: flex;
    width: calc(340px * 16);
    animation: scroll-promo 40s linear infinite;
}

.promo-item {
    width: 320px;
    flex-shrink: 0;
    margin: 0 20px;
}

@keyframes scroll-promo {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-340px * 8));
        /* Item width + margin * count */
    }
}

.promo-carousel:hover .promo-track {
    animation-play-state: paused;
}

/* Ensure Titles are Theme Colors */
.section-title-wrapper h3,
.animated-text-gradient,
.promo-title-gradient {
    color: var(--primary-navy) !important;
    background: none !important;
    /* Remove any old gradient backgrounds */
    -webkit-text-fill-color: var(--primary-navy) !important;
}

/* Fix for Carousel hiding behind Timer */
/* The issue might be the row/col z-index. Ensure the col for carousel is on top if needed, 
   or just ensure the track logic doesn't pull it too far left negatively without control. 
   Usually overflow:hidden on the parent col handles it. */

.col-lg-9 {
    position: relative;
    z-index: 5;
}

.promo-banner-timer {
    position: relative;
    z-index: 6;
    /* Timer stays on top if they overlap, but they really shouldn't overlap in grid */
}

/* Floating WhatsApp Content */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .float-whatsapp {
        display: none !important;
    }
}

.float-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.my-float {
    margin-top: 16px;
}

/* Premium Filters */
.filter-sidebar .card {
    border-radius: 16px;
    background: #fcfcfc;
}

.filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 0;
    margin: 0;
    cursor: pointer;
    flex: 1 1 calc(50% - 8px);
    /* Grid of 2 */
}

.filter-chip input {
    display: none;
}

.filter-chip .chip-label {
    display: block;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.filter-chip:hover .chip-label {
    border-color: var(--primary-navy);
    background: #f0f7ff;
}

.filter-chip input:checked+.chip-label {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--primary-navy);
    box-shadow: 0 4px 10px rgba(0, 31, 63, 0.2);
}

.filter-sidebar hr {
    margin: 20px 0;
    opacity: 0.05;
}

/* Button styles in sidebar */
.filter-sidebar .btn-navy {
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
}

/* Mobile Bottom Navigation */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 20px 20px 0 0;
}

.mobile-nav-item {
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-nav-item i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.mobile-nav-item.active {
    color: var(--primary-navy);
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none;
    }
}

.product-card .btn-success {
    background-color: #25d366;
    border: none;
    font-weight: 600;
    padding: 0.6rem;
    border-radius: 10px;
}

.product-card .btn-success:hover {
    background-color: #128c7e;
    transform: scale(1.02);
}

.product-card .btn-navy {
    border-radius: 10px;
    font-weight: 500;
}

/* Trust Badges Bar */
.trust-bar {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 60px 0;
    margin-top: 80px;
    /* Strong vertical separation from Banner */
    margin-bottom: 40px;
}

.trust-item {
    transition: all 0.3s ease;
    padding: 20px;
}

.trust-item:hover {
    transform: translateY(-8px);
}

.trust-item i {
    font-size: 3.5rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.15);
    color: var(--accent-color);
}

.trust-item h6 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.trust-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Footer Enhancements */
.text-muted-light {
    color: #a0aec0 !important;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* Product Detail Page Styles */
.product-detail-img-container {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    border-radius: var(--radius-premium);
    overflow: hidden;
}

.product-detail-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    mix-blend-mode: multiply;
}

.product-detail-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .product-detail-img-container {
        height: 350px;
    }
}

/* Product Detail Tabs */
.product-tabs .nav-pills .nav-link {
    background: #f8f9fa;
    border: 1px solid #eee;
    color: #4a5568;
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: 600;
}

.product-tabs .nav-pills .nav-link.active {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--primary-navy);
}

.product-tabs .tab-pane {
    color: #4a5568;
    line-height: 1.8;
}

/* Badges - Compact & Striking Style */
.discount-badge,
.product-label-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 4px;
    /* More rectangular but rounded corners */
    font-weight: 800;
    font-size: 0.7rem;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.discount-badge {
    background: #ff4b2b;
    /* Pure punchy red */
    color: white;
    font-size: 0.75rem;
}

.badge-hot {
    background: linear-gradient(45deg, #f83600, #fe8c00);
    color: white;
}

.badge-new {
    background: linear-gradient(45deg, #00b09b, #96c93d);
    color: white;
    left: 15px;
    right: auto;
}

/* Retail Badges */
.badge-retail {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-new {
    background: #38a169;
    color: #fff;
}

.badge-sale {
    background: #e53e3e;
    color: #fff;
}

.badge-hot {
    background: #dd6b20;
    color: #fff;
}


/* Uppercase Titles & SKU Styles (Bless-inspired) */
.product-card .card-img-top {
    height: 250px;
    object-fit: contain;
    background-color: #fff;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-title {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    height: 2.8rem;
    overflow: hidden;
}

.sku-ref {
    display: block;
    font-size: 0.65rem;
    color: #a0aec0;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.category-nav .nav-link i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Enhanced Payment Icons */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.payment-icons i {
    transition: all 0.3s ease;
    cursor: default;
}

.payment-icons i:hover {
    color: var(--accent);
    transform: scale(1.2);
    opacity: 1 !important;
}


/* Object-fit Utilities */
.object-fit-cover {
    object-fit: cover !important;
}

.object-fit-contain {
    object-fit: contain !important;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-top: 1px solid #eee;
}

.mobile-nav-item {
    text-align: center;
    flex: 1;
}

.mobile-nav-item a {
    text-decoration: none;
    color: var(--primary-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.mobile-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--primary-navy);
}

.mobile-nav-item:hover a,
.mobile-nav-item.active a {
    color: var(--secondary-blue);
}

.mobile-nav-item:hover i {
    transform: translateY(-3px);
}

/* Spacing adjustment for mobile footer */
@media (max-width: 991px) {
    body {
        padding-bottom: 70px !important;
    }

    .float-whatsapp {
        bottom: 85px !important;
        /* Move floating button above bottom nav */
    }
}

/* ========================================
   INFINITE SMOOTH CAROUSELS
   ======================================== */
.infinite-carousel-wrapper {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    width: 100%;
}

/* Fading edges for smooth visual effect */
.infinite-carousel-wrapper::before,
.infinite-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.infinite-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.infinite-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

/* For white backgrounds */
.infinite-carousel-wrapper.bg-white::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.infinite-carousel-wrapper.bg-white::after {
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.infinite-carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-infinite 250s linear infinite;
}

.infinite-carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item-infinite {
    flex: 0 0 auto;
    width: auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Category Circle Cards for Carousel */
.category-circle-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 140px;
    text-decoration: none !important;
    display: block;
}

.category-circle-card:hover {
    transform: translateY(-8px);
}

.category-circle-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 15px;
    padding: 10px;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.category-circle-card:hover .category-circle-icon {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-navy);
}

.category-circle-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.category-circle-card h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Brand Items for Carousel */
.brand-item-carousel {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.brand-item-carousel:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ========================================
   PREMIUM EXPERIENCIA ALEMAR CARDS
   ======================================== */
.stat-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.12) !important;
}

.stat-card-premium:hover .stat-number {
    transform: scale(1.05);
}

.benefit-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.12) !important;
    border-color: rgba(0, 31, 63, 0.15) !important;
}

.benefit-card-premium:hover .icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.15) 0%, rgba(0, 31, 63, 0.08) 100%);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card-premium .icon-wrapper {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card-premium .stat-number {
    transition: transform 0.3s ease;
}

/* ========================================
   MANUAL SCROLL PRODUCTS CONTAINER
   ======================================== */
.products-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.products-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.products-scroll-track {
    display: flex;
    gap: 1.5rem;
    padding: 10px 0;
}

.product-scroll-item {
    flex: 0 0 auto;
    width: 280px;
}

/* Scroll Navigation Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-navy);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.25);
}

.scroll-btn-left {
    left: -25px;
}

.scroll-btn-right {
    right: -25px;
}

@media (max-width: 768px) {
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .scroll-btn-left {
        left: 0;
    }

    .scroll-btn-right {
        right: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(0, 31, 63, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 31, 63, 0.5), 0 0 30px rgba(0, 31, 63, 0.3);
    }
}

.animated-text {
    display: inline-block;
    animation: pulse-glow 3s ease-in-out infinite;
    background: linear-gradient(90deg,
            var(--primary-navy) 0%,
            #ff4b2b 25%,
            var(--primary-navy) 50%,
            #ff4b2b 75%,
            var(--primary-navy) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite, pulse-glow 3s ease-in-out infinite;
    font-weight: 900;
}

.animated-text-gradient {
    display: inline-block;
    background: linear-gradient(90deg,
            #00b09b 0%,
            #96c93d 25%,
            #00b09b 50%,
            #96c93d 75%,
            #00b09b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {

    .animated-text,
    .animated-text-gradient {
        -webkit-text-fill-color: inherit;
        color: var(--primary-navy);
    }
}

/* ========================================
   PROMOTIONAL BANNER WITH TIMER
   ======================================== */
.promo-banner-timer {
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 75, 43, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.promo-banner-timer::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse-banner 4s ease-in-out infinite;
}

@keyframes pulse-banner {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.promo-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: bounce-icon 2s ease-in-out infinite;
}

.promo-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes bounce-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Countdown Timer */
.countdown-timer {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(10px);
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.timer-unit {
    text-align: center;
}

.timer-value {
    background: rgba(255, 255, 255, 0.95);
    color: #ff4b2b;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    min-width: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: flip-timer 1s ease-in-out;
}

@keyframes flip-timer {

    0%,
    100% {
        transform: rotateX(0deg);
    }

    50% {
        transform: rotateX(10deg);
    }
}

.timer-text {
    color: white;
    font-size: 0.7rem;
    margin-top: 0.3rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.timer-separator {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 -0.2rem;
}

/* Promo Stats */
.promo-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-item-promo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item-promo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.stat-item-promo i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Professional Promo Title */
.promo-title-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -0.5px;
    display: inline-block;
    position: relative;
}

.promo-title-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {

    .animated-text,
    .animated-text-gradient {
        -webkit-text-fill-color: inherit;
        color: var(--primary-navy);
    }
}

/* ========================================
   PROMOTIONAL BANNER & ANIMATIONS
   ======================================== */
.promo-banner-timer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
    border-radius: var(--radius-premium);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-right: 4px solid var(--accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.promo-banner-timer::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.08) 0%, transparent 70%);
    animation: pulse-banner 4s ease-in-out infinite;
}

@keyframes pulse-banner {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: bounce-icon 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 1.5rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.timer-value {
    color: var(--primary-navy);
    font-size: 2.2rem;
    font-weight: 900;
    min-width: 55px;
    text-align: center;
    line-height: 1;
}

.timer-separator {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 900;
    opacity: 0.5;
}

.timer-text {
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 5px;
}

.promo-title-gradient {
    background: linear-gradient(90deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.stat-item-promo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.8rem;
}

.stat-item-promo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    border-color: var(--accent);
}

/* --- Responsive Layout Corrections --- */

/* Tablet (991px) */
@media (max-width: 991px) {
    .promo-banner-timer {
        min-height: auto;
        padding: 3rem 2rem;
        margin-bottom: 2.5rem;
    }

    .timer-value {
        font-size: 1.8rem;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .promo-item {
        width: 270px;
        margin: 0 10px;
    }

    .product-label-status {
        left: -30px;
        top: 14px;
        font-size: 0.65rem;
        width: 110px;
    }

    .benefit-card-premium,
    .stat-card-premium {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .promo-carousel {
        padding: 15px 0;
    }
}

/* --- Advanced Skeleton Loading System --- */
.skeleton-wrapper { 
    display: block; 
    width: 100%; 
}

.skeleton-card { 
    border: 1px solid rgba(0,0,0,0.05); 
    background: #fff; 
    border-radius: var(--radius-premium, 24px); 
    overflow: hidden; 
    height: 100%; 
    padding: 20px;
}

.skeleton-img { 
    width: 100%; 
    height: 200px; 
    background: linear-gradient(90deg, #f0f4f8 25%, #f7fafc 50%, #f0f4f8 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 15px;
    margin-bottom: 20px;
}

.skeleton-title { 
    height: 20px; 
    width: 80%; 
    background: #f0f4f8; 
    margin: 0 auto 10px;
    border-radius: 4px;
}

.skeleton-price { 
    height: 25px; 
    width: 50%; 
    background: #f0f4f8; 
    margin: 20px auto;
    border-radius: 4px;
}

.skeleton-btn { 
    height: 45px; 
    width: 100%; 
    background: #f0f4f8; 
    border-radius: 12px;
    margin-top: 10px;
}

}
