:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
}

body {
    background-color: var(--light-bg);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
}

/* Modern Navigation */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.brand-icon {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: rotate(5deg);
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Modern Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Desktop Navigation - Always Visible */
.navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: flex-end;
    align-items: center;
}

/* Desktop navbar-nav */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-text {
    position: relative;
}

/* Modern Buttons */
.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

.btn-modern-secondary {
    background: rgba(var(--primary-color), 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(var(--primary-color), 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-modern-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-decoration: none;
}

.btn-shine {
    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;
}

.btn-modern-primary:hover .btn-shine {
    left: 100%;
}

/* Modern Dropdown */
.dropdown-menu-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
    animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Standard Bootstrap Dropdown Fixes */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    padding: 0.75rem !important;
    margin-top: 0.5rem !important;
    min-width: 250px !important;
    z-index: 1050 !important;
    display: none; /* Hidden by default, Bootstrap will show it */
}

.dropdown-menu.show {
    display: block !important; /* Bootstrap adds this class when dropdown should be visible */
    animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu .dropdown-item {
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 500 !important;
    color: var(--gray-700) !important;
    text-decoration: none !important;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateX(4px);
}

.dropdown-menu .dropdown-header {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 0.5rem 1rem !important;
    margin-bottom: 0.25rem !important;
}

.dropdown-menu .dropdown-divider {
    margin: 0.5rem 0 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu-modern .dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.dropdown-menu-modern .dropdown-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

.dropdown-menu-modern .dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Mega Menu Styles */
.mega-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 1rem;
    min-width: 800px;
    max-width: 1200px;
    width: 90vw;
    left: 50%;
    transform: translateX(-50%);
    animation: megaMenuSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

@keyframes megaMenuSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-menu-content {
    padding: 2rem;
}

.mega-menu-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mega-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-subtitle {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

.mega-category-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mega-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.mega-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.mega-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Social Media Platform Icons */
.instagram-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.twitter-icon {
    background: linear-gradient(135deg, #1da1f2, #0084b4);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077b5, #005582);
}

.tiktok-icon {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.snapchat-icon {
    background: linear-gradient(135deg, #fffc00, #ffffff);
    color: #000000 !important;
}

.pinterest-icon {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.discord-icon {
    background: linear-gradient(135deg, #5865f2, #4752c4);
}

.telegram-icon {
    background: linear-gradient(135deg, #0088cc, #005f8a);
}

.globe-icon {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.mega-category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.mega-subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-subcategory-item {
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.mega-subcategory-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(8px);
    text-decoration: none;
}

.mega-subcategory-item.view-all {
    color: var(--primary-color);
    font-weight: 600;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.mega-subcategory-item.view-all:hover {
    background: var(--primary-color);
    color: white;
}

.mega-menu-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: rgba(var(--primary-color), 0.02);
    border-radius: 12px;
    padding: 1.5rem;
}

.mega-menu-cta h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.mega-menu-cta p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-collapse {
        display: none !important; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        margin-top: 0.5rem;
        flex-basis: 100%;
        flex-direction: column;
    }

    .navbar-collapse.show {
        display: flex !important; /* Show when Bootstrap adds .show class */
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        width: 100%;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 12px;
        background: rgba(var(--primary-color), 0.05);
        text-align: center;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover {
        background: rgba(var(--primary-color), 0.1);
        transform: none;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Mega Menu */
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        min-width: auto;
        left: auto;
        right: auto;
        margin-top: 0;
        border-radius: 12px;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.95);
    }

    .mega-menu-content {
        padding: 1rem;
    }

    .mega-menu-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .mega-menu-title {
        font-size: 1.2rem;
    }

    .mega-category-card {
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .mega-category-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .mega-category-icon {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }

    .mega-category-title {
        font-size: 0.9rem;
    }

    .mega-subcategory-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .mega-subcategory-item:hover {
        transform: none;
    }

    .mega-menu-footer {
        margin-top: 1rem;
        padding: 1rem;
    }

    .mega-dropdown .dropdown-menu {
        max-height: 60vh;
        overflow-y: auto;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1.3rem;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
}

/* Hero Section */
.hero-section {
    background: transparent;
    padding: 2rem 0;
    margin: 1rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    color: white;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Gradient Icon */
.gradient-icon {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin: 0.5rem;
}

/* Category Cards */
.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.category-card:hover .category-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.category-count {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.category-btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    text-decoration: none;
    display: inline-block;
}

.category-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Platform-specific icon colors */
.category-card:has(.fa-instagram) .category-icon {
    background: linear-gradient(135deg, #e4405f, #fd5949);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

.category-card:has(.fa-instagram):hover .category-icon {
    box-shadow: 0 12px 30px rgba(228, 64, 95, 0.4);
}

.category-card:has(.fa-facebook) .category-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.category-card:has(.fa-facebook):hover .category-icon {
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.4);
}

.category-card:has(.fa-twitter) .category-icon {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

.category-card:has(.fa-twitter):hover .category-icon {
    box-shadow: 0 12px 30px rgba(29, 161, 242, 0.4);
}

.category-card:has(.fa-linkedin) .category-icon {
    background: linear-gradient(135deg, #0077b5, #0288d1);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.category-card:has(.fa-linkedin):hover .category-icon {
    box-shadow: 0 12px 30px rgba(0, 119, 181, 0.4);
}

.category-card:has(.fa-tiktok) .category-icon {
    background: linear-gradient(135deg, #000000, #ff0050);
    box-shadow: 0 8px 20px rgba(255, 0, 80, 0.3);
}

.category-card:has(.fa-tiktok):hover .category-icon {
    box-shadow: 0 12px 30px rgba(255, 0, 80, 0.4);
}

.category-card:has(.fa-youtube) .category-icon {
    background: linear-gradient(135deg, #ff0000, #ff5722);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.category-card:has(.fa-youtube):hover .category-icon {
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
}

.twitter-icon {
    background-color: #1da1f2;
}

.facebook-icon {
    background-color: #1877f2;
}

.instagram-icon {
    background-color: #e4405f;
}

.linkedin-icon {
    background-color: #0077b5;
}

.google-icon {
    background-color: #4285f4;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.category-subtitle {
    font-size: 1rem;
    margin-left: 20px;
}

/* Product Items */
.product-item {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.product-item:hover {
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-image {
    flex-shrink: 0;
}

.product-image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.product-title:hover {
    color: var(--primary-color);
}

.product-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid;
}

.badge-guarantee {
    color: var(--success-color);
    background-color: rgba(16, 185, 129, 0.1);
    border-color: var(--success-color);
}

.badge-rating {
    color: var(--warning-color);
    background-color: rgba(245, 158, 11, 0.1);
    border-color: var(--warning-color);
}

.badge-stats {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
}

.product-price {
    text-align: center;
    min-width: 100px;
    margin-right: 1rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--success-color);
}

.btn-buy {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-buy:hover {
    background-color: #1d4ed8;
    color: white;
}

/* CTA Section */
.cta-section {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.cta-section h2 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.btn-outline-light {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.btn-outline-light:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--gray-700);
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #0f172a 100%);
    color: var(--gray-300);
    padding: 4rem 0 2rem 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        #3b82f6,
        var(--primary-color)
    );
}

.footer-brand-section {
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand-icon {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.footer-brand-text {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--gray-500);
    transition: color 0.3s ease;
    width: 16px;
}

.footer-links a:hover i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-copyright {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.footer-badge i {
    color: var(--primary-color);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .modern-footer {
        padding: 3rem 0 1.5rem 0;
        margin-top: 3rem;
    }

    .footer-brand-text {
        font-size: 1.5rem;
    }

    .footer-social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .footer-badges {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .footer-badge {
        width: 100%;
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-brand-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .product-content {
        flex-direction: column;
        text-align: center;
    }

    .product-info {
        margin-bottom: 1rem;
    }

    .product-price {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    border-radius: 6px 0 6px 6px;
}

/* Enhanced Index Page Styles */

/* Hero Section Enhanced */
.hero-section {
    background: transparent;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 2rem 0;
    margin: 1rem 0;
}

.hero-section::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--dark-color);
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

/* Continue with all other styles... */
.categories-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    gap: 3rem;
}

.category-card-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card-wrapper:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-header-modern {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.product-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.btn-buy-modern {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.btn-buy-modern:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
    border-left-color: var(--primary-color);
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    border-radius: 6px 0 6px 6px;
}

@media (max-width: 767px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        margin-left: 1rem;
    }
}

.subcategory-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
    margin-left: 10px;
    background-color: var(--gray-100);
    padding: 5px 15px;
}

/* Clean Index Page Styles */
.hero-section {
    background: transparent;
    color: var(--dark-color);
    padding: 2rem 0;
    margin: 1rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.stats-section {
    background: white;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.category-header {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.instagram-icon {
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.twitter-icon {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #ff5722);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077b5, #0288d1);
}

.tiktok-icon {
    background: linear-gradient(135deg, #000000, #424242);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.product-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.cta-section {
    background: var(--primary-color) !important;
}

/* Enhanced Index Page Design */

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), #3b82f6);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* Enhanced Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    margin: 2rem 0 3rem 0;
    padding: 3rem 0;
}

.stat-item {
    padding: 2rem 1rem;
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.2rem;
    }
}

/* Enhanced Product Cards */
.product-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.product-card:hover .product-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.product-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #059669;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.product-verified i {
    font-size: 0.875rem;
}

.product-content {
    padding: 0 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.product-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.product-stats .stat-item i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.original-price {
    font-size: 1rem;
    color: var(--gray-500);
    text-decoration: line-through;
    font-weight: 500;
}

.discount {
    font-size: 0.75rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-footer {
    padding: 0 2rem 2rem;
}

.btn-product-view {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-product-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

.btn-product-view i {
    transition: transform 0.3s ease;
}

.btn-product-view:hover i {
    transform: translateX(3px);
}

/* Platform-specific product icon colors */
.product-card:has(.fa-instagram) .product-icon {
    background: linear-gradient(135deg, #e4405f, #fd5949);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

.product-card:has(.fa-instagram):hover .product-icon {
    box-shadow: 0 12px 30px rgba(228, 64, 95, 0.4);
}

.product-card:has(.fa-facebook) .product-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.product-card:has(.fa-facebook):hover .product-icon {
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.4);
}

.product-card:has(.fa-twitter) .product-icon {
    background: linear-gradient(135deg, #1da1f2, #42a5f5);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

.product-card:has(.fa-twitter):hover .product-icon {
    box-shadow: 0 12px 30px rgba(29, 161, 242, 0.4);
}

.product-card:has(.fa-linkedin) .product-icon {
    background: linear-gradient(135deg, #0077b5, #0288d1);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.product-card:has(.fa-linkedin):hover .product-icon {
    box-shadow: 0 12px 30px rgba(0, 119, 181, 0.4);
}

.product-card:has(.fa-tiktok) .product-icon {
    background: linear-gradient(135deg, #000000, #ff0050);
    box-shadow: 0 8px 20px rgba(255, 0, 80, 0.3);
}

.product-card:has(.fa-tiktok):hover .product-icon {
    box-shadow: 0 12px 30px rgba(255, 0, 80, 0.4);
}

.product-card:has(.fa-youtube) .product-icon {
    background: linear-gradient(135deg, #ff0000, #ff5722);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.product-card:has(.fa-youtube):hover .product-icon {
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
}

/* Enhanced Feature Items */
.feature-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    text-align: center;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-icon.security {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.feature-icon.delivery {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.feature-icon.support {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-item:hover .feature-icon.security {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.feature-item:hover .feature-icon.delivery {
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.feature-item:hover .feature-icon.support {
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Feature Section Background Enhancement */
.features-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    margin: 3rem 0;
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #1e40af, #3730a3);
    overflow: hidden;
    border-radius: 25px;
    margin: 4rem 0;
    padding: 5rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
        repeat;
    opacity: 0.8;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.cta-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: all 0.3s ease;
    animation: ctaIconFloat 3s ease-in-out infinite;
}

@keyframes ctaIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 160px;
    transition: all 0.3s ease;
}

.cta-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.cta-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::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;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
    color: #1f2937;
    text-decoration: none;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-trust {
    margin-top: 2rem;
}

.cta-trust-text {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: inline-block;
}

.cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: ctaFloat 6s ease-in-out infinite;
}

.cta-decoration-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cta-decoration-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.cta-decoration-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes ctaFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
        margin: 2rem 0;
        min-height: auto;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-stat {
        min-width: 120px;
        padding: 1rem;
    }

    .cta-stat-number {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Responsive Design for Features */
@media (max-width: 768px) {
    .feature-item {
        min-height: 280px;
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-description {
        font-size: 0.8rem;
    }
}
/* Custom Alert Notifications */
.custom-alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
}

.custom-alert.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.custom-alert.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.custom-alert.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border-left: 4px solid #ffc107;
}

.custom-alert.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.alert-icon {
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    margin-left: 15px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.alert-dismissing {
    animation: slideUp 0.3s ease-out forwards;
}

/* Prevent JavaScript function names from appearing as text */
script:before,
script:after {
    display: none !important;
    content: none !important;
}

/* Hide any stray function text */
.dismissAlert,
[data-function="dismissAlert"],
*:contains("dismissAlert") {
    display: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .custom-alert {
        padding: 12px 15px;
        font-size: 13px;
    }

    .alert-icon {
        margin-right: 10px;
        font-size: 14px;
    }
}

/* User Dropdown Fixes */
.dropdown-menu-modern {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 200px;
    animation: none !important;
    transition: all 0.2s ease;
}

.dropdown-menu-modern::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transform: rotate(45deg);
    z-index: -1;
}

.dropdown-menu-modern .dropdown-item {
    padding: 12px 20px;
    color: #495057;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
}

.dropdown-menu-modern .dropdown-item:hover,
.dropdown-menu-modern .dropdown-item:focus {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #212529;
    transform: translateX(4px);
}

.dropdown-menu-modern .dropdown-item i {
    width: 18px;
    margin-right: 12px;
    color: #6c757d;
    transition: color 0.2s ease;
}

.dropdown-menu-modern .dropdown-item:hover i {
    color: #495057;
}

.dropdown-menu-modern .dropdown-divider {
    margin: 8px 16px;
    border-color: #e9ecef;
}

/* Dropdown button improvements */
.btn-modern-secondary.dropdown-toggle {
    position: relative;
    overflow: hidden;
}

.btn-modern-secondary.dropdown-toggle::after {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn-modern-secondary.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Ensure dropdown menus are properly positioned and visible */
.dropdown {
    position: relative;
}

.dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1050 !important;
    transform: none !important;
}

.dropdown .dropdown-menu.dropdown-menu-end {
    left: auto !important;
    right: 0 !important;
}

/* Fix for user dropdown positioning in navbar */
.navbar .dropdown .dropdown-menu {
    right: 0 !important;
    left: auto !important;
}

/* Remove unwanted animations on dropdown show/hide */
.dropdown-menu.show {
    animation: dropdownFadeIn 0.15s ease-out !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
