* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f9fafb;
    overflow-x: hidden;
}

/* 3D Canvas Background */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.08) 0%, rgba(249, 250, 251, 0) 50%),
        radial-gradient(ellipse at bottom, rgba(255, 140, 66, 0.06) 0%, rgba(249, 250, 251, 0) 50%);
}

/* Animated mesh gradient overlay */
#canvas-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(245, 78, 7, 0.05) 0%, transparent 50%);
    animation: meshGradientMove 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes meshGradientMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(2%, 3%) scale(1.05);
    }

    100% {
        transform: translate(-2%, -3%) scale(0.95);
    }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

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

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.animate-slide-down {
    animation: slideDown 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out;
}

.badge-pulse {
    animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #ff6b35 0%, #1a1a1a 100%);
}

.gradient-bg-alt {
    background: linear-gradient(135deg, #ff8c42 0%, #f54e07 100%);
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Logo Styling */
.logo-text {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-container {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 0.5rem;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.logo-container:hover .logo-glow {
    opacity: 0.6;
}

/* Search Bar Styling */
.search-input {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.search-container {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-container:focus-within .search-suggestions {
    opacity: 1;
    visibility: visible;
}

/* Icon Button Styling */
.icon-button {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-button:hover {
    transform: translateY(-2px);
}

.icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
}

.icon-button:hover .icon-wrapper {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.icon-button:hover .icon-wrapper i {
    color: #ffffff !important;
    transform: scale(1.1);
}

.icon-wrapper i {
    font-size: 1.25rem;
    color: #374151;
    transition: all 0.3s ease;
}

/* Badge Styling */
.badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #ff8c42 0%, #f54e07 100%);
    color: white;
    font-size: 0.625rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

/* Tooltip Styling */
.tooltip {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    z-index: 50;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #1f2937;
}

.icon-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

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

/* Header Styling */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header.scrolled {
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 107, 53, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* Notice Banner */
.notice-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideDownBanner 0.5s ease-out;
}

.notice-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerBanner 3s infinite;
}

@keyframes slideDownBanner {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

@keyframes shimmerBanner {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.notice-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notice-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.notice-banner.hide {
    animation: slideUpBanner 0.3s ease-out forwards;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Top Bar */
.topbar {
    overflow: hidden;
    position: relative;
}

.topbar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .icon-wrapper {
        width: 2.5rem;
        height: 2.5rem;
    }

    .icon-wrapper i {
        font-size: 1rem;
    }

    .badge {
        width: 1rem;
        height: 1rem;
        font-size: 0.5rem;
    }

    /* Hide All Categories button on mobile */
    .categories-dropdown {
        display: none;
    }

    /* Hide desktop search bar on mobile */
    .search-desktop {
        display: none;
    }

    /* Show mobile search bar only on mobile */
    .mobile-search-bar {
        display: block;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid #e5e7eb;
    }
}

/* Hide mobile search bar on desktop */
.mobile-search-bar {
    display: none;
}

/* ========================================
   MODERN CATEGORIES DROPDOWN - Redesigned
   ======================================== */

/* Categories Dropdown Container */
.categories-dropdown {
    position: relative;
}

/* Modern Category Menu with Glassmorphism */
.categories-menu-3d {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.75rem;

    /* Modern Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Enhanced Border and Shadow */
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 1rem;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(255, 107, 53, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 107, 53, 0.05);

    /* Animation Properties */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transform-origin: top left;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Dimensions */
    min-width: 320px;
    max-width: 380px;
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
    padding: 0.75rem;
}

/* Show Menu on Hover */
.categories-dropdown:hover .categories-menu-3d {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Modern Category Item Card */
.category-item {
    margin-bottom: 0.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Subtle glow effect on hover */
.category-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 66, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item:hover::before {
    opacity: 1;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(255, 107, 53, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf9 100%);
}

/* Modern Category Header */
.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    position: relative;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.04) 0%, transparent 100%);
}

/* Professional Category Link */
.category-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    flex: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.category-link:hover {
    color: #ff6b35;
    transform: translateX(2px);
}

/* Icon Container with Modern Design */
.category-icon {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff3ed 0%, #ffe8dc 100%);
    border-radius: 0.625rem;
    color: #ff6b35;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.1);
}

.category-link:hover .category-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

/* Subcategory Icon - Smaller & Refined */
.subcategory-icon {
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0.5rem;
    color: #ff8c42;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-link:hover .subcategory-icon {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa07a 100%);
    color: white;
    transform: scale(1.05);
}

/* Modern Category Arrow/Expand Button */
.category-arrow {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
}

.category-arrow:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.25);
}

.category-arrow i {
    font-size: 0.75rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-arrow.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.category-arrow.active i {
    transform: rotate(90deg);
}

/* Enhanced Category Children Container */
.category-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        padding 0.3s ease;
    opacity: 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    padding: 0;
    border-top: 1px solid transparent;
}

.category-children.active {
    max-height: 500px;
    opacity: 1;
    padding: 0.75rem 0.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.08);
}

/* Modern Subcategory Item */
.subcategory-item {
    border-left: 2px solid rgba(255, 107, 53, 0.15);
    margin-left: 1rem;
    padding-left: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.subcategory-item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 0;
    width: 2px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    transition: height 0.3s ease;
}

.subcategory-item:hover::before {
    height: 100%;
}

.subcategory-item:hover {
    border-left-color: transparent;
}

/* Professional Child Link Design */
.child-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    color: #4b5563;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.5rem;
    margin: 0.25rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background animation on hover */
.child-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.child-link:hover::before {
    transform: translateX(0);
}

.child-link:hover {
    background: rgba(255, 107, 53, 0.06);
    color: #ff6b35;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.08);
}

/* Modern Bullet Indicator */
.child-bullet {
    width: 0.5rem;
    height: 0.5rem;
    min-width: 0.5rem;
    color: #d1d5db;
    font-size: 0.375rem;
    transition: all 0.3s ease;
}

.child-link:hover .child-bullet {
    color: #ff6b35;
    transform: scale(1.2);
}

/* Professional Scrollbar */
.categories-menu-3d::-webkit-scrollbar {
    width: 8px;
}

.categories-menu-3d::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
    margin: 0.5rem 0;
}

.categories-menu-3d::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.3) 0%,
            rgba(255, 140, 66, 0.4) 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.categories-menu-3d::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.6) 0%,
            rgba(255, 140, 66, 0.7) 100%);
    background-clip: padding-box;
}

/* Add item count badge (optional enhancement) */
.category-link::after {
    content: '';
    position: absolute;
    right: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-header:hover .category-link::after {
    opacity: 0.4;
}

/* Smooth entry animation for menu items */
.categories-menu-3d .category-item {
    animation: slideInFadeIn 0.4s ease-out backwards;
}

.categories-menu-3d .category-item:nth-child(1) {
    animation-delay: 0.05s;
}

.categories-menu-3d .category-item:nth-child(2) {
    animation-delay: 0.1s;
}

.categories-menu-3d .category-item:nth-child(3) {
    animation-delay: 0.15s;
}

.categories-menu-3d .category-item:nth-child(4) {
    animation-delay: 0.2s;
}

.categories-menu-3d .category-item:nth-child(5) {
    animation-delay: 0.25s;
}

.categories-menu-3d .category-item:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes slideInFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .categories-menu-3d {
        min-width: 280px;
        max-width: 95vw;
    }
}

/* ============================================
   MODERN NAVIGATION BAR WITH MEGA MENU
   ============================================ */

/* Navigation Container */
.modern-nav {
    position: relative;
    z-index: 900;
    /* Ensure nav sits above content */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Navigation Menu List */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

/* Navigation Item */
.nav-item {
    position: relative;
    list-style: none;
}

/* Main Navigation Links */
.main-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animated Background on Hover */
.main-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 66, 0.04) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 0.625rem;
    z-index: -1;
}

.main-nav-link:hover::before {
    transform: scaleX(1);
}

.main-nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

/* Navigation Icons */
.nav-icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.main-nav-link:hover .nav-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.75rem;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.has-mega-menu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Hot Deal Link Special Styling */
.hot-deal-link {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 66, 0.08) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hot-deal-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 66, 0.15) 100%);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Pulse Animation for Badge */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ============================================
   MEGA MENU DROPDOWN
   ============================================ */

/* Mega Menu Container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-top: 0.5rem;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    /* Border and Shadow */
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 1rem;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.1),
        0 15px 35px rgba(255, 107, 53, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 107, 53, 0.06);

    /* Animation */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Dimensions */
    min-width: 650px;
    z-index: 9999;
    /* Highest priority */

    /* Prevent clickthrough */
    pointer-events: none;
}

/* Hover Bridge Area */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    width: 100%;
    height: 1rem;
    background: transparent;
}

/* Show Mega Menu on Hover */
.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

/* Mega Menu Content Grid */
.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

/* Mega Menu Column */
.mega-menu-column {
    position: relative;
}

.mega-menu-column::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 107, 53, 0.15) 50%,
            transparent 100%);
}

.mega-menu-column:last-child::after {
    display: none;
}

/* Mega Menu Title */
.mega-menu-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.mega-menu-title i {
    font-size: 1.125rem;
    color: #ff6b35;
}

.mega-menu-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 2px;
}

/* Mega Menu List */
.mega-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-list li {
    position: relative;
}

/* Mega Menu Links */
.mega-menu-list a {
    display: block;
    padding: 0.625rem 0.875rem;
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animated Background for Links */
.mega-menu-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35 0%, #ff8c42 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mega-menu-list a:hover::before {
    transform: scaleY(1);
}

.mega-menu-list a:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
    color: #ff6b35;
    transform: translateX(8px);
    padding-left: 1.25rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    color: #374151;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Support Badge */
.support-badge {
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
}

.support-badge:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-color: rgba(255, 107, 53, 0.3);
    transform: scale(1.02);
}

.support-badge i {
    color: #ff6b35;
    animation: headsetWiggle 2s ease-in-out infinite;
}

@keyframes headsetWiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* Staggered Animation for Mega Menu Items */
.has-mega-menu:hover .mega-menu-column {
    animation: slideInUp 0.4s ease-out backwards;
}

.has-mega-menu:hover .mega-menu-column:nth-child(1) {
    animation-delay: 0.05s;
}

.has-mega-menu:hover .mega-menu-column:nth-child(2) {
    animation-delay: 0.1s;
}

.has-mega-menu:hover .mega-menu-column:nth-child(3) {
    animation-delay: 0.15s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Responsive Mega Menu */
@media (max-width: 768px) {
    .mega-menu {
        min-width: 95vw;
        left: 0;
        transform: translateX(0) translateY(10px);
    }

    .has-mega-menu:hover .mega-menu {
        transform: translateX(0) translateY(0);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .mega-menu-column::after {
        display: none;
    }
}

/* Hot Badge for Navigation */
.hot-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: scaleUpDown 1.5s ease-in-out infinite;
}

@keyframes scaleUpDown {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Hot Badge */
.hot-badge {
    background: linear-gradient(135deg, #ff8c42 0%, #f54e07 100%);
    color: white;
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: #1f2937;
}

::-moz-selection {
    background: rgba(255, 107, 53, 0.3);
    color: #1f2937;
}

/* Hero Slider Section */
.hero-slider-section {
    width: 100%;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    background: #000;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Click-Toggle Classes */
.all-categories-menu.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-90 {
    transform: rotate(90deg);
}

.animate-slide-down {
    animation: submenuSlideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes submenuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content {
    max-width: 600px;
    padding: 2rem;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #1f2937;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.slider-arrow-prev {
    left: 2rem;
}

.slider-arrow-next {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    width: 35px;
    border-radius: 10px;
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
    .hero-slider-container {
        height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 450px;
    }

    .slide-content {
        max-width: 100%;
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .slider-arrow {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
    }

    .slider-arrow-prev {
        left: 1rem;
    }

    .slider-arrow-next {
        right: 1rem;
    }

    .slider-dots {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 400px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-title {
        font-size: 1.75rem;
    }

    .slide-description {
        font-size: 0.9375rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .slider-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 28px;
    }
}

/* Category Showcase Section */
.category-showcase-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.category-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Scroll Wrapper */
.category-scroll-wrapper {
    position: relative;
    padding: 0 3rem;
}

/* Category Slider */
.category-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
}

.category-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* Compact Category Card */
.category-card-compact {
    flex: 0 0 auto;
    width: 160px;
    background: white;
    border-radius: 1.25rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.category-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 66, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.25rem;
}

.category-card-compact:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow:
        0 15px 35px rgba(255, 107, 53, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-card-compact:hover::before {
    opacity: 1;
}

/* Icon Circle */
.category-card-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.flash-product-card {
    flex: 0 0 280px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 50px;
    padding: 1.25rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    /* Neon border effect */
    border: 3px solid transparent;
    background-clip: padding-box;

    /* Animated neon glow */
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.4),
        0 0 40px rgba(255, 107, 53, 0.2),
        0 0 60px rgba(255, 107, 53, 0.1),
        inset 0 0 20px rgba(255, 107, 53, 0.05);

    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 107, 53, 0.5),
            0 0 40px rgba(255, 107, 53, 0.3),
            0 0 60px rgba(255, 107, 53, 0.15),
            inset 0 0 20px rgba(255, 107, 53, 0.08);
        border-color: rgba(255, 107, 53, 0.6);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 140, 66, 0.7),
            0 0 60px rgba(255, 140, 66, 0.5),
            0 0 90px rgba(255, 140, 66, 0.3),
            inset 0 0 30px rgba(255, 140, 66, 0.15);
        border-color: rgba(255, 140, 66, 0.8);
    }
}

.category-card-icon-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.5s ease;
}

.category-card-compact:hover .category-card-icon-circle {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.category-card-compact:hover .category-card-icon-circle::before {
    opacity: 0.7;
}

.category-card-icon-circle i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
}

/* Category Name */
.category-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.category-card-compact:hover .category-card-name {
    color: #ff6b35;
}

/* Products Count */
.category-card-products {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Scroll Arrows */
/* Scroll Arrows */
.category-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100 !important;
    /* Force on top */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-scroll-arrow:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.category-scroll-arrow:hover i {
    color: white;
}

.category-scroll-arrow i {
    font-size: 1rem;
    color: #ff6b35;
    transition: color 0.3s ease;
}

.category-scroll-left {
    left: 0;
}

.category-scroll-right {
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-scroll-wrapper {
        padding: 0 2.5rem;
    }

    .category-card-compact {
        width: 140px;
        padding: 1.5rem 1rem;
    }

    .category-card-icon-circle {
        width: 60px;
        height: 60px;
    }

    .category-card-icon-circle i {
        font-size: 1.75rem;
    }

    .category-card-name {
        font-size: 0.9375rem;
    }

    .category-card-products {
        font-size: 0.75rem;
    }

    .category-scroll-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .category-scroll-wrapper {
        padding: 0 2rem;
    }

    .category-slider {
        gap: 1rem;
    }

    .category-card-compact {
        width: 120px;
        padding: 1.25rem 0.875rem;
        border-radius: 1rem;
    }

    .category-card-icon-circle {
        width: 50px;
        height: 50px;
    }

    .category-card-icon-circle i {
        font-size: 1.5rem;
    }

    .category-card-name {
        font-size: 0.875rem;
    }

    .category-scroll-arrow {
        width: 2.25rem;
        height: 2.25rem;
    }

    .category-scroll-arrow i {
        font-size: 0.875rem;
    }
}

/* Flash Sale Section */
.flash-sale-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.flash-sale-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Flash Sale Header */
.flash-sale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.flash-sale-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flash-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: flashPulse 2s infinite;
}

@keyframes flashPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    }
}

.flash-icon i {
    font-size: 1.75rem;
    color: white;
}

.flash-sale-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
}

.flash-sale-badge {
    background: linear-gradient(135deg, #ff8c42 0%, #f54e07 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Countdown Timer */
.flash-countdown {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.countdown-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    min-width: 75px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.countdown-value {
    display: block;
    color: #ff6b35;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.countdown-label {
    display: block;
    color: #9ca3af;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.countdown-separator {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Flash Products Wrapper */
.flash-products-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.flash-products-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
}

/* Flash Product Card */
.flash-product-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.flash-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.8),
        0 0 80px rgba(255, 107, 53, 0.6),
        0 0 120px rgba(255, 107, 53, 0.4),
        inset 0 0 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 140, 66, 1);
    animation: none;
}

/* Discount Badge */
.flash-discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff8c42 0%, #f54e07 100%);
    color: white;
    padding: 0.5rem 0.875rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9375rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: discountPulse 1.5s infinite;
}

@keyframes discountPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* Product Image */
.product-image-wrapper {
    height: 200px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.flash-product-card:hover .product-image-placeholder {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 66, 0.2) 100%);
}

.product-image-placeholder i {
    font-size: 4rem;
    color: #ff6b35;
}

/* Product Info */
.product-info {
    padding: 1.25rem;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    min-height: 2.6em;
}

.product-rating {
    display: none;
}

.product-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-count {
    margin-left: 0.375rem;
    color: #6b7280;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Product Prices */
.product-prices {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-price-original {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.9375rem;
    font-weight: 500;
}

.product-price-sale {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42 0%, #f54e07 100%);
}

.add-to-cart-btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flash-sale-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .flash-sale-title {
        font-size: 1.875rem;
    }

    .countdown-item {
        min-width: 65px;
        padding: 0.625rem 1rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .flash-products-slider {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .flash-products-slider::-webkit-scrollbar {
        display: none;
    }

    .flash-product-card {
        flex: 0 0 auto;
        width: 220px;
    }
}

@media (max-width: 480px) {
    .flash-icon {
        width: 40px;
        height: 40px;
    }

    .flash-icon i {
        font-size: 1.5rem;
    }

    .flash-sale-title {
        font-size: 1.5rem;
    }

    .countdown-item {
        min-width: 55px;
        padding: 0.5rem 0.75rem;
    }

    .countdown-value {
        font-size: 1.25rem;
    }

    .countdown-label {
        font-size: 0.625rem;
    }

    .flash-product-card {
        flex: 0 0 auto;
        width: 200px;
    }

    .product-name {
        font-size: 1rem;
    }
}

/* View More Button */
.flash-view-more {
    text-align: center;
    margin-top: 2rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42 0%, #f54e07 100%);
}

.view-more-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* Promotional Banners Section */
.promo-banners-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.promo-banners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.promo-banners-wrapper {
    position: relative;
}

.promo-banners-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1500px;
}

/* Individual Banner */
.promo-banner {
    position: relative;
    height: 350px;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
}

.promo-banner:nth-child(1) .banner-content-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.promo-banner:nth-child(2) .banner-content-wrapper {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.promo-banner:nth-child(3) .banner-content-wrapper {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.banner-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.promo-banner:hover .banner-content-wrapper {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 3D Layer */
.banner-3d-layer {
    position: relative;
    z-index: 2;
    text-align: center;
    transition: transform 0.5s ease;
}

.promo-banner:hover .banner-3d-layer {
    transform: translateZ(30px) scale(1.05);
}

/* Floating Icon */
.banner-icon-float {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.banner-icon-float i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Banner Text Content */
.banner-text-content {
    color: white;
}

.banner-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.banner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #1f2937;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.banner-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.banner-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.banner-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.banner-cta-btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.banner-cta-btn:hover i {
    transform: translateX(5px);
}

/* Gradient Overlay */
.banner-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.promo-banner:hover .banner-gradient-overlay {
    opacity: 1;
}

/* Banner Navigation Dots */
.banner-dots {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot:hover {
    background: rgba(255, 107, 53, 0.6);
    transform: scale(1.2);
}

.banner-dot.active {
    background: #ff6b35;
    width: 35px;
    border-radius: 10px;
    border-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .promo-banner {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .banner-dots {
        display: flex;
    }

    .promo-banners-slider {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0;
    }

    .promo-banners-slider::-webkit-scrollbar {
        display: none;
    }

    .promo-banner {
        flex: 0 0 100%;
        width: 100%;
        height: 380px;
        opacity: 0.3;
        transform: scale(0.9);
        transition: all 0.5s ease;
    }

    .promo-banner.active {
        opacity: 1;
        transform: scale(1);
    }

    .banner-content-wrapper {
        padding: 2rem;
    }

    .banner-title {
        font-size: 1.875rem;
    }

    .banner-icon-float {
        width: 70px;
        height: 70px;
    }

    .banner-icon-float i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        height: 350px;
    }

    .banner-content-wrapper {
        padding: 1.5rem;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .banner-icon-float {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .banner-icon-float i {
        font-size: 1.75rem;
    }

    .banner-cta-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
    }

    .banner-subtitle {
        font-size: 0.75rem;
        padding: 0.25rem 0.875rem;
    }
}

/* ========================================
   Category Products Section Styles
   ======================================== */

.category-products-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.category-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Three.js Canvas for Particles */
.category-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

/* Category Header */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.category-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Category Icon Badge */
.category-icon-badge {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 8px 25px rgba(255, 107, 53, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-icon-badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 18px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.category-products-section:hover .category-icon-badge::before {
    opacity: 0.6;
}

.category-icon-badge i {
    font-size: 2.25rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.category-products-section:hover .category-icon-badge i {
    transform: scale(1.1) rotate(5deg);
}

/* Category Title */
.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: #1f2937;
}

.category-title .logo-text {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* View More Link */
.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.view-more-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.view-more-link:hover::before {
    left: 100%;
}

.view-more-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45);
    background: linear-gradient(135deg, #ff8c42 0%, #f54e07 100%);
}

.view-more-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.view-more-link:hover i {
    transform: translateX(6px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Category Product Card */
.category-product-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.category-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.25rem;
    z-index: 0;
}

.category-product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow:
        0 25px 50px rgba(255, 107, 53, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.4);
}

.category-product-card:hover::before {
    opacity: 1;
}

/* Product Image Styling */
.category-product-card .product-image-wrapper {
    position: relative;
    z-index: 1;
}

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

.category-product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

/* Additional hover effects for specific elements */
.category-product-card:hover .product-name {
    color: #ff6b35;
}

.category-product-card .product-info {
    position: relative;
    z-index: 1;
}

/* Responsive Design - Tablets */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-icon-badge {
        width: 55px;
        height: 55px;
    }

    .category-icon-badge i {
        font-size: 1.875rem;
    }
}

/* Responsive Design - Tablets Small */
@media (max-width: 768px) {
    .category-products-section {
        padding: 1.5rem 0;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-title {
        font-size: 1.75rem;
    }

    .category-icon-badge {
        width: 50px;
        height: 50px;
    }

    .category-icon-badge i {
        font-size: 1.625rem;
    }

    .view-more-link {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    .category-product-card {
        border-radius: 1rem;
    }

    .category-product-card .product-image-wrapper img {
        height: 180px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .category-products-section {
        padding: 1.25rem 0;
    }

    .category-title-wrapper {
        gap: 1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-icon-badge {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .category-icon-badge i {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-product-card {
        border-radius: 0.875rem;
    }

    .category-product-card .product-image-wrapper img {
        height: 150px;
    }

    .view-more-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Stagger Animation for Product Cards */
.category-product-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.category-product-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.category-product-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.category-product-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.category-product-card:nth-child(5) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* ========================================
   ALL PRODUCTS SECTION
   ======================================== */

/* Section Styling */
.all-products-section {
    position: relative;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 4rem 0;
    overflow: hidden;
}

/* 3D Canvas Background */
.all-products-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* Section Header */
.all-products-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.all-products-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.all-products-icon-badge {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.all-products-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.all-products-subtitle {
    margin: 0.5rem 0 0;
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Filter Buttons */
.all-products-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

/* Products Grid */
.all-products-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Product Card */
.all-product-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
}

.all-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.2);
}

/* Product Badge New */
.product-badge-new {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Quick Actions */
.product-quick-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.all-product-card:hover .product-quick-actions {
    opacity: 1;
    visibility: visible;
}

.quick-action-btn {
    width: 2.75rem;
    height: 2.75rem;
    background: white;
    border: none;
    border-radius: 50%;
    color: #ff6b35;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.all-product-card:hover .product-image-wrapper::after {
    opacity: 1;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Load More Button */
.load-more-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.load-more-btn {
    position: relative;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.load-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

.load-more-btn:active {
    transform: translateY(-1px);
}

.load-more-icon {
    transition: transform 0.3s ease;
}

.load-more-btn:hover .load-more-icon {
    transform: translateY(3px);
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Staggered Animation for Products */
.all-product-card:nth-child(1) {
    animation-delay: 0.05s;
}

.all-product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.all-product-card:nth-child(3) {
    animation-delay: 0.15s;
}

.all-product-card:nth-child(4) {
    animation-delay: 0.2s;
}

.all-product-card:nth-child(5) {
    animation-delay: 0.25s;
}

.all-product-card:nth-child(6) {
    animation-delay: 0.3s;
}

.all-product-card:nth-child(7) {
    animation-delay: 0.35s;
}

.all-product-card:nth-child(8) {
    animation-delay: 0.4s;
}

.all-product-card:nth-child(9) {
    animation-delay: 0.45s;
}

.all-product-card:nth-child(10) {
    animation-delay: 0.5s;
}

.all-product-card:nth-child(11) {
    animation-delay: 0.55s;
}

.all-product-card:nth-child(12) {
    animation-delay: 0.6s;
}

.all-product-card:nth-child(13) {
    animation-delay: 0.65s;
}

.all-product-card:nth-child(14) {
    animation-delay: 0.7s;
}

.all-product-card:nth-child(15) {
    animation-delay: 0.75s;
}

.all-product-card:nth-child(16) {
    animation-delay: 0.8s;
}

.all-product-card:nth-child(17) {
    animation-delay: 0.85s;
}

.all-product-card:nth-child(18) {
    animation-delay: 0.9s;
}

/* Responsive Design */
@media (max-width: 1536px) {
    .all-products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1280px) {
    .all-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .all-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .all-products-title {
        font-size: 2rem;
    }

    .all-products-icon-badge {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }

    .all-products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .all-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .all-products-title {
        font-size: 1.75rem;
    }

    .all-products-subtitle {
        font-size: 1rem;
    }

    .all-products-filter {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .load-more-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .quick-action-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .all-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .all-products-icon-badge {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .all-products-title {
        font-size: 1.5rem;
    }

    .all-products-title-wrapper {
        gap: 1rem;
    }

    .load-more-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CUSTOMER REVIEWS SECTION
   ======================================== */

/* Section Styling */
.customer-reviews-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 5rem 0;
    overflow: hidden;
}

/* Section Header */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.reviews-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reviews-icon-badge {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    animation: float 3s ease-in-out infinite;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.reviews-subtitle {
    margin: 0.5rem 0 0;
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Reviews Stats */
.reviews-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e5e7eb;
}

/* Reviews Carousel */
.reviews-carousel-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.reviews-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    gap: 2rem;
}

.review-card {
    min-width: 100%;
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.review-card.prev {
    opacity: 0;
    transform: translateX(-100%);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.25rem;
}

.reviewer-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.review-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

/* Review Body */
.review-body {
    margin-bottom: 1.5rem;
}

.review-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 1rem;
}

.review-product {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 0.75rem;
    border-left: 3px solid #ff6b35;
}

.review-product-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    margin-right: 0.5rem;
}

.review-product-name {
    font-size: 0.875rem;
    color: #1f2937;
    font-weight: 600;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.helpful-btn {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}

.verified-badge i {
    font-size: 1.125rem;
}

/* Navigation Arrows */
.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #4b5563;
    font-size: 1.125rem;
}

.review-arrow:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.review-arrow-prev {
    left: -4rem;
}

.review-arrow-next {
    right: -4rem;
}

/* Carousel Dots */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.review-dot.active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

/* CTA Button */
.reviews-cta {
    display: flex;
    justify-content: center;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    text-decoration: none;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.write-review-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.write-review-btn:hover::before {
    width: 300px;
    height: 300px;
}

.write-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1280px) {
    .review-arrow-prev {
        left: -2rem;
    }

    .review-arrow-next {
        right: -2rem;
    }
}

@media (max-width: 1024px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-title {
        font-size: 2rem;
    }

    .reviews-icon-badge {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }

    .review-arrow {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .review-arrow-prev {
        left: 0;
    }

    .review-arrow-next {
        right: 0;
    }

    .review-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .reviews-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .reviews-title {
        font-size: 1.75rem;
    }

    .reviews-subtitle {
        font-size: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-title {
        font-size: 1.125rem;
    }

    .review-text {
        font-size: 0.9375rem;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-arrow {
        opacity: 0.9;
    }

    .write-review-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reviews-icon-badge {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .reviews-title {
        font-size: 1.5rem;
    }

    .reviews-title-wrapper {
        gap: 1rem;
    }

    .review-header {
        flex-direction: column;
    }

    .review-rating {
        align-self: flex-start;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .write-review-btn {
        width: 100%;
        justify-content: center;
    }

    .review-arrow {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

.newsletter-form-wrapper {
    flex: 1;
    max-width: 600px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 3rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.newsletter-input-group:focus-within {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.newsletter-icon {
    color: #ff6b35;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.75rem 0;
    color: #1f2937;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.newsletter-submit-btn:active {
    transform: scale(0.98);
}

.newsletter-privacy {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-privacy i {
    font-size: 1rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background: #f9fafb;
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

.feature-icon {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem;
}

.feature-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 4rem 0;
    }

    .newsletter-title {
        font-size: 1.75rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-radius: 1rem;
    }

    .newsletter-input {
        width: 100%;
        text-align: center;
    }

    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
        border-radius: 0.75rem;
    }

    .newsletter-icon {
        margin-right: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-subtitle {
        font-size: 0.9375rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.9375rem;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.main-footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: #e5e7eb;
    position: relative;
}

/* Footer Top Section */
.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-column {
    animation: fadeInUp 0.6s ease backwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
}

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.footer-contact i {
    color: #ff6b35;
    font-size: 1.125rem;
    min-width: 20px;
    margin-top: 2px;
}

.footer-contact span {
    color: #9ca3af;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Footer Middle Section */
.footer-middle {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.payment-methods,
.app-download {
    flex: 1;
}

.payment-title,
.app-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d1d5db;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2.5rem;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: white;
    transform: scale(1.1);
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn small {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
    line-height: 1;
}

.app-btn strong {
    font-size: 0.9375rem;
    display: block;
    margin-top: 0.25rem;
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 1.75rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.copyright {
    margin: 0;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6b35;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-middle-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }

    .app-buttons {
        flex-direction: column;
        width: 100%;
    }

    .app-btn {
        width: 100%;
    }

    .payment-icons {
        justify-content: flex-start;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.5rem;
    }

    .footer-social {
        gap: 0.5rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }

    .payment-icons i {
        font-size: 2rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========================================
   Newsletter Popup Modal
   ======================================== */

/* Modal Overlay */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-modal.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
.newsletter-content {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #fff8f5 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(0.8) translateY(-30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: modalSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.newsletter-content * {
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-30px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.newsletter-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.newsletter-close:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Decorative Icon */
.newsletter-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.newsletter-icon .icon-glow {
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(12px);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.newsletter-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* Title */
.newsletter-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.875rem;
    color: #1f2937;
    line-height: 1.2;
}

/* Description */
.newsletter-description {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f4f6;
}

.newsletter-description strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Benefits List */
.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: benefitSlideIn 0.6s ease backwards;
}

.newsletter-benefits li:nth-child(1) {
    animation-delay: 0.4s;
}

.newsletter-benefits li:nth-child(2) {
    animation-delay: 0.5s;
}

.newsletter-benefits li:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes benefitSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.newsletter-benefits li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.newsletter-benefits li i {
    color: #10b981;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.newsletter-benefits li span {
    color: #374151;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Newsletter Form */
.newsletter-form {
    margin-bottom: 1.25rem;
}

.newsletter-input-wrapper {
    position: relative;
    margin-bottom: 0.875rem;
}

.newsletter-input-wrapper i {
    position: absolute;
    left: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #1f2937;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
}

.newsletter-input:hover {
    border-color: #ff8c42;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-input:focus+i,
.newsletter-input-wrapper:has(.newsletter-input:focus) i {
    color: #ff6b35;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

/* Subscribe Button */
.newsletter-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.newsletter-submit:hover::before {
    left: 100%;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.newsletter-submit:active {
    transform: translateY(0);
}

.newsletter-submit .btn-icon {
    transition: transform 0.3s ease;
}

.newsletter-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Privacy Note */
.newsletter-privacy {
    text-align: center;
    font-size: 0.8125rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.newsletter-privacy i {
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-content {
        padding: 2.25rem 1.75rem;
        border-radius: 18px;
        width: 92%;
        max-width: 100%;
    }

    .newsletter-title {
        font-size: 1.625rem;
    }

    .newsletter-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 640px) {
    .newsletter-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        width: 94%;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .newsletter-icon i {
        font-size: 2.5rem;
    }

    .newsletter-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.875rem;
    }

    .newsletter-input-wrapper i {
        left: 1rem;
        font-size: 0.9375rem;
    }

    .newsletter-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .newsletter-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .newsletter-description {
        font-size: 0.8125rem;
    }
}

/* Success Animation */
@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.newsletter-success {
    animation: successPulse 0.6s ease;
}

/* Notice Bar Action Buttons */
.notice-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.notice-dismiss {
    width: 100%;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notice-dismiss:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

@media (max-width: 640px) {
    .notice-actions {
        gap: 0.625rem;
    }

    .notice-dismiss {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   Flash Sale Animated Background
   ======================================== */

.flash-sale-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1c1c1c 0%, #2b2420 50%, #1c1c1c 100%);
}

.flash-sale-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.flash-sale-section .container {
    position: relative;
    z-index: 1;
}

.flash-sale-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 153, 102, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 178, 128, 0.04) 0%, transparent 60%);
    z-index: 0;
    animation: flashGradientMove 25s ease-in-out infinite alternate;
}

@keyframes flashGradientMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(3%, -3%) scale(1.08);
        opacity: 0.7;
    }
}

/* ========================================
   Modern Newsletter Section - Full Width
   ======================================== */

.newsletter-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.newsletter-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 66, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.newsletter-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side - Text Content */
.newsletter-text-side {
    color: white;
}

.newsletter-icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.newsletter-icon-badge i {
    font-size: 2rem;
    color: white;
}

.newsletter-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #e5e7eb;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Right Side - Form */
.newsletter-form-side {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form-modern {
    width: 100%;
}

.newsletter-input-wrapper-modern {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.25rem;
}

.newsletter-input-icon {
    position: absolute;
    left: 2rem;
    color: #9ca3af;
    font-size: 1.125rem;
}

.newsletter-input-modern {
    flex: 1;
    border: none;
    outline: none;
    padding: 1.25rem 1.25rem 1.25rem 4rem;
    font-size: 1rem;
    color: #1f2937;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.newsletter-input-modern::placeholder {
    color: #9ca3af;
}

.newsletter-button-modern {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-button-modern:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.newsletter-button-modern i {
    transition: transform 0.3s ease;
}

.newsletter-button-modern:hover i {
    transform: translateX(3px);
}

.newsletter-privacy-modern {
    text-align: center;
    font-size: 0.875rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.newsletter-privacy-modern i {
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .newsletter-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-title {
        font-size: 2.5rem;
    }

    .newsletter-text-side {
        text-align: center;
    }

    .newsletter-icon-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-benefits {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .newsletter-container {
        padding: 3rem 1.5rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }

    .newsletter-form-side {
        padding: 2rem 1.5rem;
    }

    .newsletter-input-wrapper-modern {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 24px;
    }

    .newsletter-input-icon {
        position: relative;
        left: 0;
        margin-bottom: -2.5rem;
        align-self: flex-start;
        margin-left: 1rem;
        z-index: 1;
    }

    .newsletter-input-modern {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        border-radius: 60px;
        background: #f9fafb;
    }

    .newsletter-button-modern {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   VERTICAL CATEGORIES MENU (MODERN FLYOUT)
   ============================================ */

.all-categories-menu {
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(255, 107, 53, 0.05);
}

/* Smooth Submenu Transitions */
.submenu,
.child-menu {
    transition:
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy effect */
}

/* Active State Styling */
.category-item:hover>a {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.08), transparent);
}

/* Icon Containers */
.category-item:hover .w-8 {
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

/* Ensure Bridges are clickable/hoverable but invisible */
.cursor-bridge {
    content: '';
    background: transparent;
    /* Debug: change to red to see them */
    pointer-events: auto;
    z-index: 10;
}

/* Scrollbar for long menus */
.all-categories-menu ul {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 53, 0.3) transparent;
}

.all-categories-menu ul::-webkit-scrollbar {
    width: 4px;
}

.all-categories-menu ul::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.3);
    border-radius: 4px;
}

/* FORCE Z-INDEX OVERRIDES FOR MEGA MENU VISIBILITY */
.modern-nav {
    position: relative !important;
    z-index: 100 !important;
    overflow: visible !important;
    transform: translateZ(0);
    /* Create proper stacking context */
}

.nav-item {
    position: static !important;
}

.nav-item.has-mega-menu {
    position: relative !important;
}

.mega-menu {
    z-index: 999 !important;
    opacity: 0;
    visibility: hidden;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-slider-section {
    position: relative !important;
    z-index: 1 !important;
    transform: none !important;
    /* CRITICAL: Prevent new stacking context */
}

.hero-slider-container {
    z-index: 1 !important;
    position: relative !important;
}

.content-wrapper {
    overflow: visible !important;
    z-index: auto !important;
    /* Let children manage their own stacking */
    transform: none !important;
}

/* ============================================
   PROMO CARDS SECTION
   ============================================ */

.promo-card {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.promo-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

.animate-shine {
    animation: shine 1.5s ease-in-out infinite;
}
/* ============================================
   3D CATEGORY SHOWCASE
   ============================================ */

.perspective-1000 {
    perspective: 1000px;
}

.transform-style-3d {
    transform-style: preserve-3d;
}

.translate-z-10 {
    transform: translateZ(20px);
}

.category-3d-card {
    transition: transform 0.1s ease-out; /* Smooth tilt */
    will-change: transform;
}

.category-3d-card:hover {
    z-index: 50; /* Bring to front on hover */
}

/* Floating Animation for Idle State */
@keyframes float-idle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Apply float with staggered delays via nth-child */
.category-3d-card:nth-child(2n) .relative {
    animation: float-idle 6s ease-in-out infinite;
}
.category-3d-card:nth-child(2n+1) .relative {
    animation: float-idle 5s ease-in-out infinite reverse;
}
.category-3d-card:nth-child(3n) .relative {
    animation: float-idle 7s ease-in-out infinite 1s;
}

/* Pause float on hover to not interfere with tilt */
.category-3d-card:hover .relative {
    animation-play-state: paused;
}

.animate-pulse-soft {
    animation: pulse-soft 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-soft {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}
