/* NATARU - Custom Styles */

:root {
    --primary-color: #6f42c1;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

/* Dark theme variables */
[data-theme="dark"] {
    --bs-body-bg: #1a1a1a;
    --bs-body-color: #ffffff;
    --bs-card-bg: #2d2d2d;
    --bs-border-color: #404040;
}

/* Global Styles - Performance Optimized */
* {
    box-sizing: border-box;
}

/* Performance optimizations */
.hero-section-purple,
.floating-shape,
.category-card-new,
.nav-link-purple {
    will-change: transform;
}

.hero-section-purple {
    transform: translateZ(0);
}

/* Reduce repaints */
.navbar {
    contain: layout style;
}

.container {
    contain: layout;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    transition: var(--transition);
    padding-top: 0; /* No padding needed for fixed navbar */
}

.container {
    max-width: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.display-4 {
    font-weight: 700;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(111, 66, 193, 0.95) !important;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Background Gradients */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.product-card {
    height: 100%;
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.testimonial-card {
    border-left: 4px solid var(--primary-color);
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Forms */
.form-control, .form-select {
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Stats Section */
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 0;
    z-index: 1030;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    color: #6c757d;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.mobile-bottom-nav .nav-link.active,
.mobile-bottom-nav .nav-link:hover {
    color: var(--primary-color);
}

.mobile-bottom-nav .nav-link i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.mobile-bottom-nav .nav-link small {
    font-size: 0.75rem;
    font-weight: 500;
}

.mobile-bottom-nav .badge {
    position: absolute;
    top: 0.25rem;
    right: 1rem;
    font-size: 0.6rem;
    padding: 0.25rem 0.4rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Filters */
.filter-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range input {
    width: 80px;
}

/* Search */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-container .form-control {
    padding-left: 3rem;
    border-radius: 50px;
}

.search-container .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

/* Cart */
.cart-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-summary {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

/* Order Status */
.order-status {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.processing {
    background: #cff4fc;
    color: #055160;
}

.order-status.completed {
    background: #d1e7dd;
    color: #0f5132;
}

.order-status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(111, 66, 193, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 1s;
}

.animate__delay-2s {
    animation-delay: 2s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Dark Theme */
[data-theme="dark"] {
    background-color: #1a1a1a;
    color: #ffffff;
}

[data-theme="dark"] .card {
    background-color: #2d2d2d;
    border-color: #404040;
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95) !important;
}

[data-theme="dark"] .mobile-bottom-nav {
    background: #2d2d2d;
    border-top-color: #404040;
}

[data-theme="dark"] .filter-sidebar {
    background: #2d2d2d;
    border-color: #404040;
}

[data-theme="dark"] .cart-summary {
    background: #2d2d2d;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: #2d2d2d;
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px; /* Account for mobile bottom nav */
    }
    
    .hero-section {
        padding: 2rem 0;
        min-height: 80vh;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-sidebar {
        position: static;
        margin-bottom: 1rem;
    }
    
    .cart-summary {
        position: static;
        margin-top: 1rem;
    }
    
    .mobile-bottom-nav {
        display: block;
    }
    
    .navbar-collapse {
        background: rgba(111, 66, 193, 0.98);
        margin-top: 1rem;
        border-radius: var(--border-radius);
        padding: 1rem;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-bottom-nav,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid;
    }
    
    .btn {
        border: 2px solid;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a4fcf;
}

/* Modern Product Cards */
.product-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-card-modern:hover .product-image img {
    transform: scale(1.1);
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.category-card:hover .category-icon {
    transform: scale(1.1);
}

/* Search Hero */
.search-hero .input-group {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-hero .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.search-hero .btn {
    padding: 1rem 2rem;
    border: none;
    font-weight: 600;
}

/* Hero Stats */
.hero-stats .stat-item {
    padding: 0 1rem;
}

.hero-stats .stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Newsletter Form */
.newsletter-form .input-group {
    max-width: 500px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border: none;
    font-weight: 600;
}

/* Recent Product Cards */
.recent-product-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.recent-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image-small {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.product-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* New Hero Section - Light Blue Theme */
.hero-section-new {
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 50%, #80DEEA 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0,188,212,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0,150,136,0.1) 0%, transparent 50%);
}

/* Hero Content */
.hero-badge {
    display: inline-block;
    position: relative;
}

.badge-text {
    background: #00BCD4;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #546E7A;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* New Search Section */
.search-section-new {
    max-width: 500px;
}

.search-tabs {
    position: relative;
}

.search-tab {
    background: #00BCD4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tab:hover {
    background: #00ACC1;
}

.dropdown-categories {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    display: none;
    min-width: 200px;
}

.category-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.category-item:hover {
    background: #f8f9fa;
}

.search-wrapper-new {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #E0F7FA;
}

.search-input-new {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    outline: none;
}

.btn-search-new {
    background: #FFC107;
    color: #2C3E50;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search-new:hover {
    background: #FFB300;
    transform: translateX(-2px);
}

/* Hero Stats */
.hero-stats-new {
    margin-top: 2rem;
}

.stat-item-new {
    color: #2C3E50;
    font-size: 1rem;
    font-weight: 600;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
}

.top-bar .social-links a {
    text-decoration: none;
    font-size: 0.875rem;
}

.top-bar .social-links a:hover {
    color: #6f42c1 !important;
}

/* New Brand Logo */
.brand-logo-new {
    position: relative;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00BCD4 0%, #009688 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,188,212,0.3);
}

.logo-inner {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.logo-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #00BCD4;
    border-radius: 50%;
}

.brand-text {
    color: #2C3E50;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Navigation Links */
.nav-link-new {
    color: #2C3E50 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-new:hover {
    color: #00BCD4 !important;
}

/* Account Button */
.btn-account {
    background: #00BCD4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-account:hover {
    background: #00ACC1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,188,212,0.3);
}

.text-teal {
    color: #00BCD4 !important;
}

.bg-teal {
    background-color: #00BCD4 !important;
}

/* 3D Isometric Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(1000px) rotateX(10deg) rotateY(-10deg);
}

/* Laptop */
.laptop-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.laptop-screen {
    width: 200px;
    height: 130px;
    background: #2C3E50;
    border-radius: 8px 8px 0 0;
    position: relative;
    transform: rotateX(-10deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.screen-content {
    background: linear-gradient(135deg, #00BCD4 0%, #009688 100%);
    width: 180px;
    height: 110px;
    margin: 10px auto;
    border-radius: 4px;
    position: relative;
}

.window-bar {
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px 4px 0 0;
}

.screen-lines {
    position: absolute;
    top: 30px;
    left: 10px;
    right: 10px;
}

.screen-lines::before,
.screen-lines::after {
    content: '';
    position: absolute;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 1px;
}

.screen-lines::before {
    width: 80%;
    top: 0;
}

.screen-lines::after {
    width: 60%;
    top: 15px;
}

.laptop-base {
    width: 220px;
    height: 15px;
    background: #34495E;
    border-radius: 0 0 8px 8px;
    margin-top: -2px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* People */
.person {
    position: absolute;
    z-index: 3;
}

.person-1 {
    top: 60%;
    left: 20%;
    transform: scale(0.8);
}

.person-2 {
    top: 40%;
    right: 15%;
    transform: scale(0.7);
}

.person-body {
    width: 20px;
    height: 35px;
    background: #FF6B35;
    border-radius: 10px 10px 5px 5px;
    position: relative;
}

.person-head {
    width: 12px;
    height: 12px;
    background: #FFAB91;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: 4px;
}

/* Buildings */
.building {
    position: absolute;
    background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.building-1 {
    width: 40px;
    height: 60px;
    top: 20%;
    left: 10%;
    z-index: 2;
}

.building-2 {
    width: 35px;
    height: 80px;
    top: 15%;
    left: 15%;
    z-index: 1;
    background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
}

.building-3 {
    width: 30px;
    height: 50px;
    top: 25%;
    right: 20%;
    z-index: 2;
    background: linear-gradient(135deg, #FFA726 0%, #FF8F00 100%);
}

/* Mobile Device */
.mobile-device {
    position: absolute;
    bottom: 20%;
    right: 25%;
    width: 25px;
    height: 45px;
    background: #2C3E50;
    border-radius: 8px;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.mobile-screen {
    width: 20px;
    height: 35px;
    background: linear-gradient(135deg, #00BCD4 0%, #009688 100%);
    border-radius: 4px;
    margin: 5px auto;
    position: relative;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 15px;
    height: 15px;
    background: #FF6B35;
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.element-2 {
    width: 12px;
    height: 12px;
    background: #42A5F5;
    top: 70%;
    right: 30%;
    animation-delay: 2s;
}

.element-3 {
    width: 18px;
    height: 18px;
    background: #66BB6A;
    top: 20%;
    right: 40%;
    animation-delay: 4s;
}

/* Network Lines */
.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, #00BCD4 50%, transparent 100%);
    height: 2px;
    animation: pulse 3s ease-in-out infinite;
}

.line-1 {
    width: 80px;
    top: 45%;
    left: 25%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.line-2 {
    width: 60px;
    top: 60%;
    right: 35%;
    transform: rotate(-20deg);
    animation-delay: 1s;
}

.line-3 {
    width: 70px;
    top: 35%;
    right: 25%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(-5px) rotate(-3deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .illustration-container {
        transform: perspective(800px) rotateX(5deg) rotateY(-5deg) scale(0.8);
    }
    
    .search-section-new {
        max-width: 100%;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .category-card-new {
        padding: 1.5rem 1rem;
    }
}

/* New Category Cards */
.category-card-new {
    background: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.category-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-icon-new {
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: 15px;
}

/* Individual icon colors */
.php-icon {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.ai-icon {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
}

.audio-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.html-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.plugin-icon {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.video-icon {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.category-title {
    font-weight: 600;
    color: #2C3E50;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.category-link {
    color: #00BCD4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.category-link:hover {
    color: #00ACC1;
    text-decoration: none;
}

.fw-500 {
    font-weight: 500;
}

/* NATARU Header Design */
.bg-nataru-purple {
    background: #7B68EE;
    box-shadow: 0 2px 4px rgba(123, 104, 238, 0.2);
    padding: 0.5rem 0;
}

.brand-logo-nataru {
    color: white;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.brand-text-nataru {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.nav-link-nataru {
    color: rgba(255,255,255,0.95) !important;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link-nataru:hover {
    color: rgba(255,255,255,0.7) !important;
}

.navbar-nav .nav-item {
    margin: 0 0.2rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dark Mode Styles */
.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
}

.dark-mode .bg-nataru-purple {
    background: #4a4a4a;
}

.dark-mode .hero-section-purple {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.dark-mode .category-card-new {
    background: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

.dark-mode .category-title {
    color: #ffffff;
}

.dark-mode .text-dark {
    color: #ffffff !important;
}

/* Modern Hero Section */
.hero-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
}

.badge-modern {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    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-gradient {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.app-download-section h6 {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.btn-app-store, .btn-google-play {
    transition: transform 0.3s ease;
}

.btn-app-store:hover, .btn-google-play:hover {
    transform: translateY(-3px);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #2C3E50;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    padding: 20px;
    height: 100%;
}

.app-header {
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.app-card {
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    margin-bottom: 15px;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.icon-float {
    position: absolute;
    font-size: 2rem;
    animation: float-icon 6s ease-in-out infinite;
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 10%; animation-delay: 1.5s; }
.icon-3 { bottom: 30%; left: 5%; animation-delay: 3s; }
.icon-4 { bottom: 10%; right: 15%; animation-delay: 4.5s; }

@keyframes float-icon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Product Cards */
.product-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF6B6B;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    background: #E3F2FD;
    color: #1976D2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-rating {
    font-size: 0.9rem;
    color: #666;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: #2C3E50;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27AE60;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Category Cards */
.category-card-modern {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-card-modern h5 {
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.category-card-modern p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.bg-gradient-reviews {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.review-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.review-text {
    color: white;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    color: white;
    font-weight: 600;
    margin: 0;
}

.reviewer-title {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

.trust-indicator h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    color: white;
}

.cta-card h3 {
    color: white;
}

/* Modern Footer Styles */
.footer-modern {
    background: #ffffff;
    color: #2C3E50;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e9ecef;
}

.footer-title {
    color: #2C3E50;
    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: #7B68EE;
}

.footer-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #7B68EE;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #2C3E50;
    padding-left: 20px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact .contact-item i {
    color: #7B68EE;
    width: 20px;
    flex-shrink: 0;
}

.footer-contact .contact-item span {
    color: #6c757d;
}

.footer-info .info-item {
    margin-bottom: 1rem;
}

.info-label {
    color: #2C3E50;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.info-value {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.social-link:hover {
    background: #7B68EE;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 104, 238, 0.3);
}

.payment-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-gateway {
    display: flex;
    align-items: center;
}

.payment-logo {
    height: 35px;
    width: auto;
    background: white;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.payment-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    margin-top: 3rem;
    padding-top: 2rem;
}

.copyright-text {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Payment Gateway Logos */
.payment-gateways {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.payment-logo-small {
    height: 25px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.payment-logo-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: end;
}

.footer-bottom-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #7B68EE;
}

/* Dark Mode Footer */
.dark-mode .footer-modern {
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.dark-mode .footer-title::after {
    background: #667eea;
}

.dark-mode .social-link:hover {
    background: #667eea;
}

.dark-mode .footer-bottom-links a:hover {
    color: #667eea;
}

/* Dark Mode General Styles */
.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
}

.dark-mode .bg-light {
    background-color: #2d2d2d !important;
}

.dark-mode .bg-white {
    background-color: #1a1a1a !important;
}

.dark-mode .text-dark {
    color: #ffffff !important;
}

.dark-mode .text-muted {
    color: #b8b8b8 !important;
}

.dark-mode .product-card {
    background-color: #2d2d2d;
    border: 1px solid #404040;
}

.dark-mode .product-card .product-title {
    color: #ffffff;
}

.dark-mode .category-card {
    background-color: #2d2d2d;
    border: 1px solid #404040;
}

.dark-mode .category-title {
    color: #ffffff;
}

.dark-mode .category-description {
    color: #b8b8b8;
}

.dark-mode .review-card {
    background-color: #2d2d2d;
    border: 1px solid #404040;
}

.dark-mode .review-text {
    color: #b8b8b8;
}

.dark-mode .reviewer-name {
    color: #ffffff;
}

.dark-mode .feature-card {
    background-color: #2d2d2d;
    border: 1px solid #404040;
}

.dark-mode .feature-title {
    color: #ffffff;
}

.dark-mode .feature-description {
    color: #b8b8b8;
}

.dark-mode .cta-card {
    background-color: #2d2d2d;
    border: 1px solid #404040;
}

/* NATARU Header Consistent Styling */
.nataru-header {
    background: #7B68EE !important;
    min-height: 70px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none;
}

.nataru-header .navbar-brand {
    font-weight: bold;
}

.nataru-header .brand-logo-nataru {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nataru-header .brand-logo-nataru i {
    color: white !important;
    font-size: 1.2rem;
}

.nataru-header .brand-text-nataru {
    font-size: 1.4rem;
    font-weight: 700;
    color: white !important;
}

.nataru-header .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nataru-header .nav-link:hover {
    color: rgba(255,255,255,0.9) !important;
    background-color: rgba(255,255,255,0.15);
    border-radius: 6px;
}

.nataru-header .nav-link.active {
    color: white !important;
    font-weight: 700;
    background-color: rgba(255,255,255,0.25);
    border-radius: 6px;
}

.nataru-header .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.nataru-header .navbar-toggler:focus {
    box-shadow: none;
}

.nataru-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nataru-header .dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: white;
}

.nataru-header .dropdown-item {
    color: #2c3e50;
}

.nataru-header .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #7B68EE;
}

/* Cart badge positioning */
.nataru-header .badge {
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc3545 !important;
}

/* Dark mode header adjustments */
.dark-mode .nataru-header {
    background: #7B68EE !important;
}

.dark-mode .nataru-header .dropdown-menu {
    background-color: #2d2d2d;
}

.dark-mode .nataru-header .dropdown-item {
    color: #ffffff;
}

.dark-mode .nataru-header .dropdown-item:hover {
    background-color: #404040;
    color: #7B68EE;
}

/* Responsive adjustments for NATARU header */
@media (max-width: 768px) {
    .nataru-header .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nataru-header .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }
    
    .nataru-header .brand-text-nataru {
        font-size: 1.2rem;
    }
    
    .nataru-header .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.1rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .footer-modern {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .payment-methods {
        align-items: center;
    }
    
    .payment-logo {
        height: 30px;
    }
}
/* Teal Hero Section - Digital Product Hub */
.hero-section-teal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    color: white;
}

.hero-section-teal .hero-content {
    z-index: 2;
    position: relative;
    padding-right: 2rem;
}

.hero-section-teal .hero-badge {
    margin-bottom: 1.5rem;
}

.hero-section-teal .hero-badge .badge-text {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section-teal .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff !important;
    margin-bottom: 1.5rem;
}

.hero-section-teal .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-section-teal .hero-stats {
    margin-top: 2rem;
}

.hero-section-teal .stat-item {
    text-align: center;
}

.hero-section-teal .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-section-teal .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-section-teal .hero-image {
    position: relative;
    height: 400px;
}

.hero-section-teal .floating-cards {
    position: relative;
    height: 100%;
}

.hero-section-teal .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.hero-section-teal .floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-section-teal .floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-section-teal .card-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.hero-section-teal .card-2 {
    top: 50%;
    right: 40%;
    animation-delay: 2s;
}

.hero-section-teal .card-3 {
    top: 70%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Products Page Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .card {
    border: none;
    transition: all 0.3s ease;
}

.product-card:hover .card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-category .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

.product-rating .fa-star {
    font-size: 0.8rem;
}

.product-footer {
    margin-top: auto;
}

.add-to-cart {
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* List View Styles */
.row.g-3 .product-card {
    width: 100%;
}

.row.g-3 .product-card .card {
    flex-direction: row;
    height: 200px;
}

.row.g-3 .product-image {
    width: 250px;
    flex-shrink: 0;
}

.row.g-3 .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Filter Section */
.bg-light {
    background-color: #f8f9fa !important;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: #667eea;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #667eea;
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background-color: #667eea;
    border-color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-teal .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section-teal .hero-image {
        margin-top: 2rem;
        height: 300px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .row.g-3 .product-card .card {
        flex-direction: column;
        height: auto;
    }
    
    .row.g-3 .product-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section-teal {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .hero-section-teal .hero-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Quick View Modal Styles */
#quickViewModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

#quickViewModal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

#quickViewModal .modal-title {
    font-weight: 600;
}

#quickViewModal .btn-close {
    filter: invert(1);
}

.product-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-image-container:hover img {
    transform: scale(1.05);
}

.product-details .product-title {
    color: #2c3e50;
    font-weight: 700;
}

.product-details .stars i {
    font-size: 1rem;
    margin-right: 2px;
}

.product-meta .meta-item {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.product-meta .meta-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.product-tags .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.25rem;
}

.product-actions .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reviews-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.review-item:last-child {
    border-bottom: none !important;
}

/* Wishlist Button Styles */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #dc3545;
    color: white;
}

.wishlist-btn.active:hover {
    background: #c82333;
}

/* Product Comparison Styles */
.compare-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
}

.compare-bar.show {
    transform: translateY(0);
}

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

.compare-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Enhanced Product Card Animations */
@keyframes productCardPulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.product-card.featured {
    animation: productCardPulse 2s infinite;
}

/* Social Share Buttons */
.social-share {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-share .btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-share .btn-facebook { background: #3b5998; border-color: #3b5998; }
.social-share .btn-twitter { background: #1da1f2; border-color: #1da1f2; }
.social-share .btn-linkedin { background: #0077b5; border-color: #0077b5; }
.social-share .btn-whatsapp { background: #25d366; border-color: #25d366; }

.hero-section-teal .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-section-teal .hero-buttons .btn {
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.hero-section-teal .btn-light {
    background: #7B68EE !important;
    color: white !important;
    border: 2px solid #7B68EE !important;
}

.hero-section-teal .btn-light:hover {
    background: #6a56dd !important;
    border-color: #6a56dd !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 104, 238, 0.3);
}

.hero-section-teal .btn-outline-light {
    border: 2px solid #7B68EE !important;
    color: #7B68EE !important;
    background: transparent !important;
}

.hero-section-teal .btn-outline-light:hover {
    background: #7B68EE !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Shopping Illustration Styling */
.hero-section-teal .hero-visual {
    position: relative;
    padding-left: 1rem;
}

.shopping-illustration {
    position: relative;
    max-width: 100%;
    margin: 0;
}

.shopping-image {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.8rem;
    animation: float 4s ease-in-out infinite;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.floating-element.wifi-icon {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.floating-element.chat-icon {
    top: 25%;
    left: 10%;
    animation-delay: 1s;
}

.floating-element.card-icon {
    bottom: 35%;
    left: 15%;
    animation-delay: 2s;
}

.floating-element.check-icon {
    bottom: 25%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Trust Stats Section */
.trust-stat {
    padding: 1.5rem 1rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.trust-label {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Trust number colors for light mode */
body:not(.dark-mode) .trust-number {
    color: inherit;
}

body:not(.dark-mode) .trust-number.text-primary {
    color: #0d6efd !important;
}

body:not(.dark-mode) .trust-number.text-success {
    color: #198754 !important;
}

body:not(.dark-mode) .trust-number.text-warning {
    color: #ffc107 !important;
}

body:not(.dark-mode) .trust-number.text-info {
    color: #0dcaf0 !important;
}

body:not(.dark-mode) .trust-label {
    color: #6c757d !important;
}

/* Light Mode Overrides for Better Visibility */
body:not(.dark-mode) .hero-section-teal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body:not(.dark-mode) .hero-section-teal .hero-title {
    color: #ffffff !important;
}

body:not(.dark-mode) .hero-section-teal .hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

body:not(.dark-mode) .trust-number {
    color: #2c3e50 !important;
}

body:not(.dark-mode) .trust-label {
    color: #6c757d !important;
}

/* Light mode product cards */
body:not(.dark-mode) .product-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body:not(.dark-mode) .product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #7B68EE;
}

body:not(.dark-mode) .card-title a {
    color: #2c3e50;
}

body:not(.dark-mode) .card-text {
    color: #6c757d;
}

/* Dark Mode Styles for Hero Section */
.dark-mode .hero-section-teal {
    background: #1a1a1a;
}

.dark-mode .hero-section-teal .hero-title {
    color: #ffffff !important;
}

.dark-mode .hero-section-teal .hero-description {
    color: #b8b8b8 !important;
}

.dark-mode .hero-section-teal .hero-badge .badge-text {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.dark-mode .hero-section-teal .btn-light {
    background: #7B68EE;
    color: white;
    border-color: #7B68EE;
}

.dark-mode .hero-section-teal .btn-light:hover {
    background: #6a56dd;
    border-color: #6a56dd;
    color: white;
}

.dark-mode .hero-section-teal .btn-outline-light {
    border-color: #7B68EE;
    color: #7B68EE;
}

.dark-mode .hero-section-teal .btn-outline-light:hover {
    background: #7B68EE;
    color: white;
}

.dark-mode .shopping-image {
    box-shadow: 0 15px 35px rgba(255,255,255,0.1);
}

.dark-mode .floating-element {
    background: #2d2d2d;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

/* Dark mode trust stats */
.dark-mode .trust-stat {
    background: #2d2d2d;
    border: 1px solid #404040;
    box-shadow: 0 2px 10px rgba(255,255,255,0.05);
}

.dark-mode .trust-stat:hover {
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
}

.dark-mode .trust-stat .trust-label {
    color: #b8b8b8 !important;
}

.dark-mode .trust-stat .trust-number {
    color: #ffffff !important;
}

.dark-mode .trust-number.text-primary {
    color: #6ea8fe !important;
}

.dark-mode .trust-number.text-success {
    color: #75b798 !important;
}

.dark-mode .trust-number.text-warning {
    color: #ffda6a !important;
}

.dark-mode .trust-number.text-info {
    color: #6edff6 !important;
}

/* Responsive styles for teal hero */
@media (max-width: 768px) {
    .hero-section-teal {
        padding: 100px 0 40px;
    }
    
    .hero-section-teal .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-section-teal .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section-teal .sun-icon {
        font-size: 2rem;
    }
    
    .hero-section-teal .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .hero-section-teal .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-section-teal .hero-buttons .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-section-teal .hero-visual {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .floating-element {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
        padding: 0.3rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
}

/* Products Page Styling */
.products-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.products-header h1 {
    color: #2c3e50;
    font-weight: 700;
}

.products-header .text-muted {
    color: #6c757d !important;
}

/* Search Container */
.search-container {
    position: relative;
}

.search-container .form-control {
    padding-right: 3rem;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-container .form-control:focus {
    border-color: #7B68EE;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.25);
}

.search-container .search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

/* Filter Sidebar */
.filter-sidebar {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.filter-sidebar h5 {
    color: #2c3e50;
    border-bottom: 2px solid #7B68EE;
    padding-bottom: 0.5rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
}

.filter-group .list-group-item {
    border: none;
    padding: 0.75rem 1rem;
    color: #495057;
    transition: all 0.3s ease;
}

.filter-group .list-group-item:hover {
    background-color: #f8f9fa;
    color: #7B68EE;
}

.filter-group .list-group-item.active {
    background-color: #7B68EE;
    color: white;
    border-radius: 6px;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range input {
    flex: 1;
    border-radius: 6px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #20B2AA;
}

.product-image-container {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    height: 2.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #7B68EE;
}

.product-rating {
    display: flex;
    align-items: center;
}

.price-section {
    min-height: 1.5rem;
}

.btn-add-to-cart {
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-add-to-cart:hover {
    background-color: #1a9a94 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.product-card .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

/* View Toggle Buttons */
.btn-group .btn.active {
    background-color: #7B68EE;
    border-color: #7B68EE;
    color: white;
}

/* Pagination */
.pagination .page-link {
    color: #7B68EE;
    border-color: #dee2e6;
    padding: 0.75rem 1rem;
}

.pagination .page-link:hover {
    color: #6a56dd;
    background-color: #f8f9fa;
    border-color: #7B68EE;
}

.pagination .page-item.active .page-link {
    background-color: #7B68EE;
    border-color: #7B68EE;
}

/* Dark Mode Products Page */
.dark-mode .products-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-bottom-color: #404040;
}

.dark-mode .products-header h1 {
    color: #ffffff;
}

.dark-mode .filter-sidebar {
    background: #2d2d2d;
    border-color: #404040;
}

.dark-mode .filter-sidebar h5 {
    color: #ffffff;
}

.dark-mode .filter-group h6 {
    color: #b8b8b8;
}

.dark-mode .filter-group .list-group-item {
    color: #b8b8b8;
    background: transparent;
}

.dark-mode .filter-group .list-group-item:hover {
    background-color: #404040;
    color: #7B68EE;
}

.dark-mode .product-card {
    background: #2d2d2d;
    border-color: #404040;
    box-shadow: 0 2px 8px rgba(255,255,255,0.05);
}

.dark-mode .product-card:hover {
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
    border-color: #20B2AA;
}

.dark-mode .product-image-container {
    background: #1a1a1a;
}

.dark-mode .product-card .product-title a {
    color: #ffffff;
}

.dark-mode .product-card .card-text {
    color: #b8b8b8;
}

.dark-mode .rating-number {
    color: #b8b8b8 !important;
}

.dark-mode .current-price {
    color: #7B68EE !important;
}

.dark-mode .original-price {
    color: #888 !important;
}

.dark-mode .search-container .form-control {
    background: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

.dark-mode .search-container .form-control:focus {
    background: #2d2d2d;
    border-color: #7B68EE;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.25);
}

/* Dark mode form controls */
.dark-mode .form-control {
    background: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

.dark-mode .form-control:focus {
    background: #2d2d2d;
    border-color: #7B68EE;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.25);
}

.dark-mode .form-select {
    background: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

.dark-mode .form-select:focus {
    background: #2d2d2d;
    border-color: #7B68EE;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.25);
}

/* Dark mode buttons */
.dark-mode .btn-primary {
    background-color: #7B68EE;
    border-color: #7B68EE;
}

.dark-mode .btn-primary:hover {
    background-color: #6a56dd;
    border-color: #6a56dd;
}

.dark-mode .btn-outline-primary {
    color: #7B68EE;
    border-color: #7B68EE;
}

.dark-mode .btn-outline-primary:hover {
    background-color: #7B68EE;
    border-color: #7B68EE;
    color: #ffffff;
}

/* Dark mode navigation improvements */
.dark-mode .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.dark-mode .navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.dark-mode .navbar-nav .nav-link.active {
    color: #ffffff !important;
    font-weight: bold;
}

/* Dark mode pagination */
.dark-mode .pagination .page-link {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

.dark-mode .pagination .page-link:hover {
    background-color: #7B68EE;
    border-color: #7B68EE;
    color: #ffffff;
}

.dark-mode .pagination .page-item.active .page-link {
    background-color: #7B68EE;
    border-color: #7B68EE;
}

/* Dark mode badges */
.dark-mode .badge.bg-light {
    background-color: #404040 !important;
    color: #ffffff !important;
}

/* Dark mode mobile navigation */
.dark-mode .mobile-bottom-nav {
    background: #1a1a1a;
    border-top-color: #404040;
}

/* Dark mode alerts */
.dark-mode .alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border-color: #28a745;
    color: #d4edda;
}

.dark-mode .alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    color: #f8d7da;
}

.dark-mode .alert-warning {
    background-color: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
    color: #fff3cd;
}

.dark-mode .alert-info {
    background-color: rgba(13, 202, 240, 0.2);
    border-color: #0dcaf0;
    color: #d1ecf1;
}

/* Dark mode breadcrumb */
.dark-mode .breadcrumb {
    background: transparent;
}

.dark-mode .breadcrumb-item a {
    color: #7B68EE;
}

.dark-mode .breadcrumb-item.active {
    color: #b8b8b8;
}

/* Dark mode input groups */
.dark-mode .input-group-text {
    background-color: #404040;
    border-color: #404040;
    color: #ffffff;
}

/* Smooth transitions for theme switching */
body, .card, .btn, .form-control, .navbar, .alert {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Enhanced focus states for accessibility */
.form-control:focus,
.form-select:focus,
.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.25);
}

.dark-mode .form-control:focus,
.dark-mode .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.4);
}

/* Home page specific enhancements */
.pulse-on-hover:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.search-form .form-control:focus {
    box-shadow: 0 0 20px rgba(123, 104, 238, 0.3);
    border-color: #7B68EE;
}

.popular-categories .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    animation-delay: -4s;
}

.floating-card:nth-child(4) {
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

/* Enhanced product cards on home page */
.featured-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Products page comprehensive enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

/* Floating Cards Animations */
.floating-elements {
    height: 400px;
    width: 100%;
}

.floating-card-1 {
    top: 10%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    top: 50%;
    right: 10%;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-card-3 {
    top: 30%;
    right: 40%;
    animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

/* Filters Section */
.filters-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.filters-card {
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
}

.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
}

/* Product Cards */
.product-item {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 1rem;
    overflow: hidden;
}

.product-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
}

.product-image {
    border-radius: 1rem 1rem 0 0;
}

.product-img {
    transition: transform 0.4s ease;
}

.product-item:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    background: rgba(102, 126, 234, 0.9);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-item:hover .overlay-content {
    transform: translateY(0);
}

.wishlist-btn {
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.wishlist-btn:hover {
    background: #dc3545 !important;
    color: white !important;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #dc3545 !important;
    color: white !important;
}

.hover-primary:hover {
    color: #667eea !important;
}

/* Enhanced Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-outline-primary {
    border-color: #667eea;
    color: #667eea;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    transform: translateY(-2px);
}

.btn-group .btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Empty State */
.empty-state {
    padding: 4rem 2rem;
}

.empty-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Dark Mode Comprehensive Support */
.dark-mode .hero-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%) !important;
}

.dark-mode .filters-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.dark-mode .filters-card {
    background: rgba(45, 55, 72, 0.8) !important;
    border-color: rgba(102, 126, 234, 0.2);
    color: white;
}

.dark-mode .form-control,
.dark-mode .form-select {
    background: rgba(45, 55, 72, 0.8);
    border-color: rgba(102, 126, 234, 0.3);
    color: white;
}

.dark-mode .form-control:focus,
.dark-mode .form-select:focus {
    background: rgba(45, 55, 72, 0.9);
    border-color: #667eea;
    color: white;
}

.dark-mode .product-item {
    background: rgba(45, 55, 72, 0.8) !important;
    border-color: rgba(102, 126, 234, 0.2);
}

.dark-mode .product-item:hover {
    background: rgba(45, 55, 72, 0.9) !important;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.dark-mode .card-title a {
    color: white !important;
}

.dark-mode .hover-primary:hover {
    color: #9f7aea !important;
}

.dark-mode .results-info h2 {
    color: white !important;
}

.dark-mode .badge.bg-primary {
    background: rgba(102, 126, 234, 0.2) !important;
    color: #9f7aea !important;
}

.text-light-gray {
    color: #6b7280;
}

.dark-mode .text-light-gray {
    color: #4a5568 !important;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-bottom-nav .nav-link {
    color: #6c757d;
    text-decoration: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-link:hover,
.mobile-bottom-nav .nav-link.active {
    color: #7B68EE;
}

.mobile-bottom-nav .nav-link i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.mobile-bottom-nav .nav-link small {
    font-size: 0.7rem;
    font-weight: 500;
}

.mobile-bottom-nav .badge {
    font-size: 0.6rem;
    min-width: 16px;
    height: 16px;
}

/* Dark mode mobile navigation */
.dark-mode .mobile-bottom-nav {
    background: #2d2d2d;
    border-top-color: #404040;
}

.dark-mode .mobile-bottom-nav .nav-link {
    color: #b8b8b8;
}

.dark-mode .mobile-bottom-nav .nav-link:hover,
.dark-mode .mobile-bottom-nav .nav-link.active {
    color: #7B68EE;
}

/* Additional dark mode fixes for products page */
.dark-mode .btn-outline-purple {
    border-color: #7B68EE !important;
    color: #7B68EE !important;
    background: transparent !important;
}

.dark-mode .btn-outline-purple:hover {
    background-color: #7B68EE !important;
    color: white !important;
}

.dark-mode .btn-outline-purple.active {
    background-color: #7B68EE !important;
    color: white !important;
    border-color: #7B68EE !important;
}

.dark-mode .form-select {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

.dark-mode .form-select:focus {
    background-color: #2d2d2d;
    border-color: #7B68EE;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.25);
}

.dark-mode .form-control {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

.dark-mode .form-control:focus {
    background-color: #2d2d2d;
    border-color: #7B68EE;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 238, 0.25);
}

.dark-mode .pagination .page-link {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #7B68EE;
}

.dark-mode .pagination .page-link:hover {
    background-color: #404040;
    border-color: #7B68EE;
    color: #7B68EE;
}

.dark-mode .pagination .page-item.active .page-link {
    background-color: #7B68EE;
    border-color: #7B68EE;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .filter-sidebar {
        margin-bottom: 2rem;
    }
    
    .products-header .row {
        text-align: center;
    }
    
    .products-header .col-md-6:last-child {
        margin-top: 1rem;
    }
    
    .price-range {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price-range span {
        display: none;
    }
    
    /* Add bottom padding for mobile navigation */
    body {
        padding-bottom: 70px;
    }
}

/* Purple Hero Section - Optimized */
.hero-section-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #F472B6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.min-vh-90 {
    min-height: 90vh;
}

.hero-badge-purple {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text-purple {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title-purple {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

.hero-description-purple {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Purple Search Section */
.search-section-purple {
    max-width: 600px;
    margin: 0 auto;
}

.search-tabs-purple {
    position: relative;
    margin-bottom: 1rem;
}

.search-tab-purple {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-tab-purple:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.dropdown-categories-purple {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 10;
    display: none;
    min-width: 250px;
    margin-top: 0.5rem;
}

.category-item-purple {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2C3E50;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.category-item-purple:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    transform: translateX(5px);
}

.category-item-purple:last-child {
    border-bottom: none;
}

.search-wrapper-purple {
    display: flex;
    background: rgba(255,255,255,0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.search-input-purple {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    color: #2C3E50;
}

.search-input-purple::placeholder {
    color: #6B7280;
}

.btn-search-purple {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C3E50;
    border: none;
    padding: 18px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-search-purple:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: scale(1.05);
}

/* Purple Hero Stats */
.hero-stats-purple {
    margin-top: 3rem;
}

.stat-item-purple {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Floating Elements - Simplified */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.6;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float-simple 8s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    background: rgba(255,215,0,0.2);
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
    background: rgba(255,255,255,0.15);
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 80%;
    animation-delay: 2s;
    background: rgba(255,182,193,0.2);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title-purple {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .search-input-purple,
    .btn-search-purple {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* Product Cards DegMark */
.product-card-degmark {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card-degmark:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image-degmark {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image-degmark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-degmark:hover .product-image-degmark img {
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #EC4899;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-title-degmark {
    font-weight: 600;
    color: #2d3748;
    line-height: 1.3;
}

/* Megapack Section */
.megapack-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.megapack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
}

.megapack-illustration {
    position: relative;
}

.celebration-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.celebration-icons i {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.celebration-icons i:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.celebration-icons i:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Recent Product Items */
.recent-product-item {
    transition: all 0.3s ease;
}

.recent-product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.product-tabs .btn {
    border-radius: 20px;
    font-size: 0.875rem;
}

.product-tabs .btn.active {
    background: #8B5CF6;
    border-color: #8B5CF6;
    color: white;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    padding: 4rem 0;
    position: relative;
}

.feature-circle {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-circle-inner {
    width: 90px;
    height: 90px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Purple color utility */
.text-purple {
    color: #6f42c1 !important;
}

.bg-purple {
    background-color: #6f42c1 !important;
}

/* Testimonial Cards DegMark */
.testimonial-card-degmark {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.testimonial-card-degmark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Brand Logos */
.brand-logos img {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.brand-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Mobile App Section */
.mobile-app-section {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    padding: 4rem 0;
    position: relative;
}

.mobile-phones {
    position: relative;
}

.app-download-buttons .btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #EC4899;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Newsletter Section DegMark */
.newsletter-section-degmark {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    padding: 4rem 0;
    position: relative;
}

.newsletter-form-degmark .input-group {
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form-degmark .form-control {
    border: none;
    padding: 1rem 1.5rem;
    background: white;
}

.newsletter-form-degmark .btn {
    padding: 1rem 2rem;
    border: none;
    font-weight: 600;
}

/* Footer DegMark */
.footer-degmark {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    padding: 3rem 0 1rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5CF6 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.market-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.payment-methods img {
    border-radius: 4px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
}

.shadow-custom {
    box-shadow: var(--box-shadow-lg);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.transition-custom {
    transition: var(--transition);
}
