/* ============================================
   DAZZLE USA - MAIN LAYOUT STYLES
   Extracted from inline styles for performance
   ============================================ */

:root {
    --primary-color: #1266f1;
    --secondary-color: #b23cfd;
    --success-color: #00b74a;
    --danger-color: #f93154;
    --warning-color: #ffa900;
    --dark-color: #262626;
    --light-bg: #f8f9fa;

    /* Product Card Variables */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-dark: #1a202c;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --bg-light: #f7fafc;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Global Section Title with Centered Underline */
.section-title {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    margin: 12px auto 0;
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 99px;
}

/* ===== REMOVE HUGE ARROWS (GLOBAL SAFETY) ===== */
.swiper-button-next,
.swiper-button-prev,
.slick-next,
.slick-prev,
.owl-next,
.owl-prev,
.carousel-control-next,
.carousel-control-prev {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* If arrow icons are coming from pseudo elements */
.swiper-button-next::after,
.swiper-button-prev::after,
.slick-next::before,
.slick-prev::before,
.owl-next::before,
.owl-prev::before {
    display: none !important;
    content: "" !important;
}

/* ===== FIX LARAVEL PAGINATION ICON SIZE / LOOK ===== */
.pagination {
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.pagination .page-link {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    color: var(--dark-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* SVG icons (prev/next) normal size */
.pagination .page-link svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}

/* Hide huge Tailwind pagination arrows */
nav[role="navigation"] svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}

/* Hide the text labels (Showing X to Y of Z results) */
nav[role="navigation"]>div:first-child,
nav[role="navigation"]>div:last-child {
    display: none !important;
}

/* Force pagination links to be inline-flex */
nav[role="navigation"] a,
nav[role="navigation"] span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
}

/* If font icons are used */
.pagination .page-link i,
.pagination .page-link span {
    font-size: 14px !important;
    line-height: 1 !important;
}

/* Prevent global transform/scale issues */
.pagination,
.pagination *,
nav[role="navigation"],
nav[role="navigation"] * {
    transform: none !important;
    scale: 1 !important;
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    min-width: 300px;
    max-width: 500px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--dark-color);
}

.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-success i {
    color: var(--success-color);
}

.toast-warning {
    border-left: 4px solid var(--warning-color);
}

.toast-warning i {
    color: var(--warning-color);
}

@media (max-width: 768px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        top: 80px;
    }
}

/* Custom SweetAlert2 Toast Styles */
.custom-toast-popup {
    min-width: 350px !important;
    padding: 20px 24px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.custom-toast-title {
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin: 0 0 0 12px !important;
    color: #fff !important;
}

.custom-toast-icon {
    margin: 0 !important;
    width: 32px !important;
    height: 32px !important;
    border-width: 3px !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
}

.swal2-timer-progress-bar {
    background: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
    .custom-toast-popup {
        min-width: 90% !important;
        margin: 0 auto !important;
    }
}

/* SweetAlert2 Button Customization - Purple Theme */
.swal2-confirm {
    background: #9333ea !important;
    background-image: none !important;
    border: none !important;
}

.swal2-confirm:hover {
    background: #7e22ce !important;
}

.swal2-cancel {
    background: #6b7280 !important;
    border: none !important;
}

.swal2-cancel:hover {
    background: #4b5563 !important;
}

/* Inline Search Box */
.inline-search-box {
    position: absolute;
    top: 100%;
    right: 20px;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 350px;
    z-index: 1050;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inline-search-box form {
    gap: 8px;
}

.inline-search-input {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.95rem;
    flex: 1;
}

.inline-search-input:focus {
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
    outline: none;
}

.btn-inline-search {
    background: #9333ea;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-inline-search:hover {
    background: #7e22ce;
}

/* Search Backdrop (Mobile) */
.search-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-backdrop.show {
    display: block;
    opacity: 1;
}

/* MOBILE SEARCH DESIGN */
@media (max-width: 768px) {
    .inline-search-box {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        margin: 0 15px;
        min-width: auto;
        max-width: none;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        z-index: 1050;
        animation: mobileSlideDown 0.3s ease;
    }

    @keyframes mobileSlideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .inline-search-box form {
        gap: 10px;
        flex-direction: row;
    }

    .inline-search-input {
        font-size: 1rem;
        padding: 14px 18px;
        border-radius: 12px;
        border: 2px solid #e5e7eb;
    }

    .btn-inline-search {
        padding: 14px 24px;
        border-radius: 12px;
        font-size: 1.1rem;
    }
}

/* Sticky Header */
.navbar,
.site-header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    background: #fff !important;
    transition: all 0.3s ease;
    z-index: 9999 !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.sticky-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Navbar Layout Fix */
@media (max-width: 991px) {
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        position: relative;
    }

    .mobile-menu-toggle {
        order: 1;
        margin-right: 0;
        z-index: 2;
    }

    .navbar-brand {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        font-size: 1.4rem;
        z-index: 1;
        /* Fallback for gradient */
        color: #9333ea;
        background: linear-gradient(135deg, #9333ea, #7e22ce);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        pointer-events: auto;
    }

    .mobile-search-btn {
        order: 3;
        margin-left: 0;
        z-index: 2;
    }
}

/* Mobile Navbar Toggler - LEFT SIDE */
.navbar-toggler {
    border: 2px solid rgba(147, 51, 234, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.25);
}

.navbar-toggler i {
    color: #9333ea;
    font-size: 1.2rem;
}

/* MOBILE ONLY: Center the brand logo */
@media (max-width: 991px) {
    .navbar>.container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        margin: 0;
    }

    .navbar-toggler {
        order: -1;
        position: relative;
        z-index: 1;
    }
}

/* Mobile Search Button - RIGHT SIDE (Mobile Only) */
.mobile-search-btn {
    display: none;
    border: 2px solid rgba(147, 51, 234, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mobile-search-btn i {
    color: #9333ea;
    font-size: 1.2rem;
}

.mobile-search-btn:hover,
.mobile-search-btn:focus {
    background: rgba(147, 51, 234, 0.1);
    border-color: #9333ea;
    box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.15);
    outline: none;
}

@media (max-width: 991px) {
    .mobile-search-btn {
        display: block;
    }
}

/* ========================================
   MOBILE DRAWER MENU - PREMIUM DESIGN
   ======================================== */

/* Drawer Container */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
    left: 0 !important;
}

/* Drawer Content */
.drawer-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Drawer Header */
.drawer-header {
    padding: 24px 20px;
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.2);
}

.drawer-title {
    margin: 0;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Drawer Navigation */
.drawer-nav {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
}

/* Drawer Items */
.drawer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
    min-height: 50px;
    cursor: pointer;
}

.drawer-item i {
    width: 20px;
    color: #6b7280;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.drawer-item:hover {
    background: rgba(147, 51, 234, 0.05);
    color: #9333ea;
}

.drawer-item:hover i {
    color: #9333ea;
}

.drawer-item.active {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
    font-weight: 600;
}

.drawer-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #9333ea;
    border-radius: 0 4px 4px 0;
}

.drawer-item.active i {
    color: #9333ea;
}

/* Expandable Item */
.drawer-item-expandable {
    position: relative;
}

.expand-icon {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.drawer-item-expandable.expanded .expand-icon {
    transform: rotate(180deg);
}

/* Submenu */
.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f9fafb;
    transition: max-height 0.3s ease;
}

.drawer-item-expandable.expanded .drawer-submenu {
    max-height: 500px;
}

.drawer-subitem {
    display: block;
    padding: 12px 20px 12px 56px;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.drawer-subitem:hover {
    background: rgba(147, 51, 234, 0.05);
    color: #9333ea;
    padding-left: 60px;
}

/* Drawer Divider */
.drawer-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 20px;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Hide drawer on desktop */
@media (min-width: 992px) {

    .mobile-drawer,
    .drawer-overlay {
        display: none;
    }
}

/* Mobile Menu Toggle Button Enhancement */
.mobile-menu-toggle {
    border: 2px solid rgba(147, 51, 234, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.25);
}

.mobile-menu-toggle i {
    color: #9333ea;
    font-size: 1.2rem;
}

/* ========================================
   NAVIGATION LINKS BUTTON STYLING
   Transform plain links into premium buttons
   ======================================== */

/* Desktop Navigation Links */
.navbar-nav .nav-link {
    position: relative;
    padding: 0.625rem 1rem !important;
    border-radius: 10px;
    margin: 0 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151 !important;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link:hover {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:active {
    transform: translateY(0);
}

/* Icon Links in Desktop Nav (Search, Wishlist, Cart, Account) */
.navbar-nav .nav-link i.fa-lg {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover i.fa-lg {
    transform: scale(1.1);
}

/* Active State for Nav Links */
.navbar-nav .nav-link.active {
    background: #9333ea;
    color: white !important;
}

/* Badge Count Styling (Cart, Wishlist) */
.badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* Dropdown Toggle Arrow */
.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #9333ea !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) !important;
    width: 0;
    height: 2px;
    background: #9333ea;
    transition: width 0.3s ease;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
    padding-left: 2rem;
}

.dropdown-item:active {
    background: #9333ea;
    color: white;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-success {
    background: rgba(0, 183, 74, 0.1);
    color: #00b74a;
}

.status-info {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.status-warning {
    background: rgba(255, 169, 0, 0.1);
    color: #ffa900;
}

.status-danger {
    background: rgba(249, 49, 84, 0.1);
    color: #f93154;
}

.btn-action {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

.btn-action:hover {
    background: #9333ea;
    color: white;
}

/* Premium Buttons */
.btn-gradient-primary {
    background: #9333ea !important;
    background-image: none !important;
    border: none;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-gradient-primary:hover {
    background: #7e22ce !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    color: white;
}

/* Enhanced Form Controls */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #fff;
    border-color: #9333ea;
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Empty State Styling */
.empty-state-container {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #9333ea;
    font-size: 3rem;
}

/* ========================================
   MOBILE BOTTOM NAVIGATION BAR
   Premium Sticky Navigation for Mobile Devices
   ======================================== */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #e5e7eb;
}

/* Navigation Item - Button Style */
.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    text-decoration: none;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px;
    margin: 0 4px;
    min-height: 60px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item:active {
    background: rgba(147, 51, 234, 0.08);
    color: #9333ea;
}

/* Icon Wrapper for Badge Positioning */
.mobile-bottom-nav .nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

/* Navigation Icons */
.mobile-bottom-nav .nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item:hover i {
    transform: scale(1.15);
}

/* Navigation Labels */
.mobile-bottom-nav .nav-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* Active State Styling */
.mobile-bottom-nav .nav-item.active {
    color: #9333ea;
    background: rgba(147, 51, 234, 0.1);
}

.mobile-bottom-nav .nav-item.active i {
    transform: scale(1.1);
}

/* Active Indicator Dot */
.mobile-bottom-nav .nav-item.active::before {
    content: '';
    position: absolute;
    top: 4px;
    width: 4px;
    height: 4px;
    background: #9333ea;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Badge Styling for Cart/Wishlist */
.mobile-bottom-nav .nav-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 360px) {
    .mobile-bottom-nav .nav-item i {
        font-size: 1.2rem;
    }

    .mobile-bottom-nav .nav-label {
        font-size: 0.65rem;
    }
}

@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* Body padding for mobile bottom nav */
@media (max-width: 991px) {
    body {
        padding-bottom: 70px;
    }
}

/* ========================================
   FOOTER STYLING
   Premium Dark Gradient Footer Design
   ======================================== */

footer {
    background: linear-gradient(135deg, #2d1b69 0%, #9333ea 100%);
    color: white;
    padding: 4rem 0 1rem;
    margin-top: 4rem;
}

footer h6 {
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: white;
    padding-left: 5px;
    transform: translateX(3px);
}

footer .social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: white !important;
    /* Ensure icons stay white */
}

/* Generic hover transition for movement */
footer .social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    padding-left: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Brand Specific Hover Colors */
footer .social-icons .social-facebook:hover,
footer .social-icons .social-facebook:active {
    background: #1877F2;
}

footer .social-icons .social-instagram:hover,
footer .social-icons .social-instagram:active {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

footer .social-icons .social-twitter:hover,
footer .social-icons .social-twitter:active {
    background: #1DA1F2;
}

footer .social-icons .social-youtube:hover,
footer .social-icons .social-youtube:active {
    background: #FF0000;
}

footer .social-icons .social-linkedin:hover,
footer .social-icons .social-linkedin:active {
    background: #0077b5;
}

footer .social-icons .social-tiktok:hover,
footer .social-icons .social-tiktok:active {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

footer .social-icons .social-whatsapp:hover,
footer .social-icons .social-whatsapp:active {
    background: #25D366;
}

footer .social-icons .social-telegram:hover,
footer .social-icons .social-telegram:active {
    background: #0088cc;
}

footer hr {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
    margin: 2rem 0;
}

footer .text-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer Lists */
footer ul {
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    position: relative;
    padding-left: 0;
}

footer ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

footer ul li a:hover::before {
    left: -15px;
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 1rem;
        margin-top: 2rem;
    }

    footer .col-md-6 {
        margin-bottom: 2rem;
    }
}