:root {
    --primary-color: #DC2626;
    --primary-dark: #B91C1C;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --light-color: #f8fafc;
    --dark-color: #0f0f0f;
    --red-gradient: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    --black-gradient: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #2f2f2f 100%);
    --red-black-gradient: linear-gradient(135deg, #DC2626 0%, #0f0f0f 100%);
    --gradient-primary: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --gradient-secondary: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    font-family: 'Heebo', sans-serif;
}

body {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1040;
}

.top-bar .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Notification Banner */
.notification-banner {
    background: var(--red-gradient);
    color: white;
    padding: 1rem 0;
    position: relative;
}

.notification-banner .btn-close-white {
    filter: brightness(0) invert(1);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-badge .badge {
    font-size: 0.875rem;
    border-radius: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
}

.hero-buttons .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-product-image {
    position: relative;
    z-index: 2;
}

.hero-phone {
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-phone:hover {
}

.hero-newsletter .input-group {
    max-width: 400px;
}

.hero-newsletter .form-control {
    border-radius: 25px 0 0 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    padding: 12px 20px;
}

.hero-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    color: white;
}

.hero-newsletter .btn {
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
    font-size: 1.1rem;
}

.hero-features {
    opacity: 0.9;
}

.hero-features small {
    font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.15"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="120" fill="url(%23a)"><animate attributeName="r" values="120;140;120" dur="4s" repeatCount="indefinite"/></circle><circle cx="800" cy="300" r="180" fill="url(%23a)"><animate attributeName="r" values="180;200;180" dur="6s" repeatCount="indefinite"/></circle><circle cx="400" cy="700" r="150" fill="url(%23a)"><animate attributeName="r" values="150;170;150" dur="5s" repeatCount="indefinite"/></circle></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.4;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(244, 63, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.product-image {
    height: 280px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) saturate(1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

.category-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.8);
}

.category-card:hover {
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.category-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.category-card .display-1 {
    transition: all 0.4s ease;
}

.category-card:hover .display-1 {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Modern Navbar */
.navbar {
    background: var(--black-gradient) !important;
    border: none;
    box-shadow: 0 2px 20px rgba(220, 38, 38, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1050 !important;
}

.navbar-scrolled {
    background: var(--black-gradient) !important;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    color: white !important;
}

.navbar-brand:hover {
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 25px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
}

.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    z-index: 1060 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.dropdown-item {
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background: var(--red-gradient);
    color: white;
    transform: translateX(-5px);
}

.dropdown-item:focus {
    background: var(--red-gradient);
    color: white;
}

.dropdown-item i {
    margin-left: 0.5rem;
    width: 16px;
    text-align: center;
}

/* Fix dropdown positioning for RTL */
.navbar-nav .dropdown-menu {
    right: 0;
    left: auto;
    z-index: 1060 !important;
}

.navbar-nav .dropdown-menu[data-bs-popper] {
    right: 0;
    left: auto;
    z-index: 1060 !important;
}

/* Search Bar */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none !important;
    border: none !important;
    color: var(--dark-color) !important;
    font-size: 1.2rem;
    padding: 8px 12px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    position: relative;
}

.search-toggle:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    transform: scale(1.1);
}

.search-input-container {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.search-input-container.active {
    width: 300px;
    padding: 0 20px 0 50px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.search-input::placeholder {
    color: var(--secondary-color);
}

.search-close {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-input-container.active .search-close {
    opacity: 1;
}

.search-close:hover {
    color: var(--danger-color);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: rgba(99, 102, 241, 0.1);
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.btn-primary {
    background: var(--red-gradient);
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    background: var(--red-black-gradient);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.footer {
    background: var(--black-gradient);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--red-gradient);
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    text-decoration: line-through;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.card-body {
    padding: 2rem;
}

.display-1 {
    font-size: 4rem;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.owl-carousel .product-card {
    width: 100%;
    margin: 0 10px;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--primary-color) !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.owl-nav button:hover {
    transform: scale(1.1);
    background: var(--gradient-primary) !important;
    color: white !important;
}

.owl-nav .owl-prev {
    margin-left: -25px;
}

.owl-nav .owl-next {
    margin-right: -25px;
}

.owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Stats Section */
.stats-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    margin: -100px auto 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 0;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Brands Section */
.brands-section {
    padding: 3rem 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brands-section:hover {
    opacity: 1;
}

.brand-logo {
    height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.5;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Pulse animation for call-to-action buttons */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

/* Countdown timer */
.countdown-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Ripple Animation */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Top Bar Mobile */
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .top-bar .row > div {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .top-bar .d-flex {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .dropdown-menu {
        font-size: 0.9rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 2rem 0;
        min-height: 60vh;
    }
    
    .hero-section .carousel-item {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Brands Section Mobile */
    .brands-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .brand-card {
        height: 120px;
        padding: 1rem 0.5rem;
    }
    
    .brand-logo {
        width: 45px;
        height: 45px;
    }
    
    .brand-logo i {
        font-size: 1.25rem;
    }
    
    .brand-text {
        font-size: 0.6rem;
    }
    
    .brand-name {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    /* Products Section Mobile */
    .newest-products,
    .top-products {
        padding: 2rem 0;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-card .card-body {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-price .text-muted {
        font-size: 0.85rem;
    }
    
    /* Categories Mobile */
    .categories-section {
        padding: 2rem 0;
    }
    
    .category-card {
        height: auto;
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    /* Reviews Mobile */
    .reviews-section {
        padding: 2rem 0;
    }
    
    .review-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .reviewer-name {
        font-size: 0.95rem;
    }
    
    /* Articles Mobile */
    .articles-section {
        padding: 2rem 0;
    }
    
    .article-card {
        margin-bottom: 1.5rem;
    }
    
    .article-card .card-body {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 0.95rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer h5,
    .footer h6 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer .list-unstyled li {
        margin-bottom: 0.5rem;
    }
    
    .footer .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .brand-card {
        height: 140px;
    }
    
    .brand-logo {
        width: 55px;
        height: 55px;
    }
    
    .hero-buttons .btn {
        width: auto;
        margin-right: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-section .row > div {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .category-card {
        padding: 2rem 1rem;
    }
    
    .stats-section {
        margin: -50px auto 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .search-input-container.active {
        width: 250px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

/* Products Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #fef2f2 100%);
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.products-count {
    font-size: 1.1rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 2rem;
}

.filter-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.filter-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.filter-options .form-check {
    margin-bottom: 0.75rem;
}

.filter-options .form-check-input {
    border-radius: 4px;
    border: 2px solid #e2e8f0;
}

.filter-options .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-options .form-check-label {
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
}

/* Color Options */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.color-option {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.color-option.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.3);
}

.color-option[data-color="black"] { background-color: #000; }
.color-option[data-color="white"] { background-color: #fff; }
.color-option[data-color="blue"] { background-color: #3b82f6; }
.color-option[data-color="red"] { background-color: #ef4444; }
.color-option[data-color="green"] { background-color: #10b981; }
.color-option[data-color="purple"] { background-color: #8b5cf6; }
.color-option[data-color="gold"] { background-color: #f59e0b; }
.color-option[data-color="silver"] { background-color: #94a3b8; }

/* Rating Options */
.rating-options .form-check-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

/* Price Range */
.price-inputs .form-control {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
}

.price-inputs .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-range {
    height: 6px;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary-color);
    border: none;
    width: 20px;
    height: 20px;
}

.form-range::-moz-range-thumb {
    background: var(--primary-color);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Products Toolbar Enhanced */
.products-toolbar {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 2rem;
    z-index: 100;
    transition: all 0.3s ease;
}

.products-toolbar:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.results-info {
    background: rgba(220, 38, 38, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.toolbar-left {
    gap: 1rem;
}

.sort-dropdown .form-select,
.per-page-dropdown .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.sort-dropdown .form-select:focus,
.per-page-dropdown .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.view-toggle .btn {
    border: 2px solid #e2e8f0;
    color: var(--secondary-color);
    padding: 0.5rem 0.75rem;
    margin-left: 0.25rem;
}

.view-toggle .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.view-toggle .btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Product Cards Ultra Enhanced */
.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(220, 38, 38, 0.05) 0%, rgba(15, 15, 15, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.product-card:hover .product-image {
    transform: scale(1.08) rotate(1deg);
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-card:hover .current-price {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-badges .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: #f1f5f9;
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-decoration: line-through;
}

.discount-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-add-to-cart {
    margin-top: auto;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* Pagination */
.pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    border: 2px solid #e2e8f0;
    color: var(--dark-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: var(--secondary-color);
    background: #f8fafc;
    border-color: #e2e8f0;
}

/* Brands Section */
.brands-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.brands-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.brands-section .container {
    position: relative;
    z-index: 2;
}

/* Featured Brands Grid */
.featured-brands {
    position: relative;
}

.brand-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.brand-card.featured-brand {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.brand-card.featured-brand::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    opacity: 1;
}

.brand-logo-container {
    margin-bottom: 1rem;
}

.brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
}

.brand-logo i {
    font-size: 2rem;
    color: var(--dark-color);
}

.brand-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dark-color);
}

.samsung-logo {
    background: linear-gradient(135deg, #1f2937, #374151);
}

.samsung-logo .brand-text {
    color: white;
}

.xiaomi-logo {
    background: linear-gradient(135deg, #ff6900, #ff8533);
}

.xiaomi-logo .brand-text {
    color: white;
}

.google-logo {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.google-logo i {
    color: white;
}

.oneplus-logo {
    background: linear-gradient(135deg, #eb0029, #ff1744);
}

.oneplus-logo .brand-text {
    color: white;
}

.huawei-logo {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.huawei-logo .brand-text {
    color: white;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}

.brand-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

/* Additional Brands Carousel */
.additional-brands {
    border-top: 1px solid #e2e8f0;
    padding-top: 3rem;
}

.brands-carousel .brand-item {
    padding: 0.5rem;
    text-align: center;
}

.brand-mini-logo {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mini-logo:hover {
    border-color: var(--primary-color);
    background: var(--red-gradient);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.brand-mini-logo .brand-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.brand-mini-logo:hover .brand-text {
    color: white;
}

/* Brand Stats */
.brand-stats {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Lab Brands Carousel */
.supported-brands {
    background: #f8fafc;
}

.lab-brands-carousel .brand-item {
    padding: 1rem;
    text-align: center;
}

.brand-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo-circle:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.brand-logo-circle i {
    font-size: 2rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.brand-logo-circle .brand-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--dark-color);
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1;
}

/* Brand-specific styling */
.brand-logo-circle.samsung-logo {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-color: #1f2937;
}

.brand-logo-circle.samsung-logo .brand-text {
    color: white;
    font-size: 0.6rem;
}

.brand-logo-circle.google-logo {
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-color: #4285f4;
}

.brand-logo-circle.google-logo i {
    color: white;
}

.brand-logo-circle.xiaomi-logo {
    background: linear-gradient(135deg, #ff6900, #ff8533);
    border-color: #ff6900;
}

.brand-logo-circle.xiaomi-logo .brand-text {
    color: white;
    font-size: 0.9rem;
}

.brand-logo-circle.oneplus-logo {
    background: linear-gradient(135deg, #eb0029, #ff1744);
    border-color: #eb0029;
}

.brand-logo-circle.oneplus-logo .brand-text {
    color: white;
    font-size: 1.2rem;
}

.brand-logo-circle.huawei-logo {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
}

.brand-logo-circle.huawei-logo .brand-text {
    color: white;
    font-size: 0.55rem;
}

.brand-logo-circle.oppo-logo {
    background: linear-gradient(135deg, #1ba784, #16a085);
    border-color: #1ba784;
}

.brand-logo-circle.oppo-logo .brand-text {
    color: white;
    font-size: 0.8rem;
}

.brand-logo-circle.vivo-logo {
    background: linear-gradient(135deg, #5d4e75, #6c5ce7);
    border-color: #5d4e75;
}

.brand-logo-circle.vivo-logo .brand-text {
    color: white;
    font-size: 0.8rem;
}

.brand-logo-circle.realme-logo {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-color: #f39c12;
}

.brand-logo-circle.realme-logo .brand-text {
    color: white;
    font-size: 0.65rem;
}

.brand-logo-circle.honor-logo {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-color: #2c3e50;
}

.brand-logo-circle.honor-logo .brand-text {
    color: white;
    font-size: 0.7rem;
}

.brand-logo-circle.nothing-logo {
    background: linear-gradient(135deg, #000000, #2c2c2c);
    border-color: #000000;
}

.brand-logo-circle.nothing-logo .brand-text {
    color: white;
    font-size: 0.65rem;
}

.brand-logo-circle.sony-logo {
    background: linear-gradient(135deg, #0070f3, #0051cc);
    border-color: #0070f3;
}

.brand-logo-circle.sony-logo .brand-text {
    color: white;
    font-size: 0.8rem;
}

.brand-logo-circle.motorola-logo {
    background: linear-gradient(135deg, #004ccc, #0040a3);
    border-color: #004ccc;
}

.brand-logo-circle.motorola-logo .brand-text {
    color: white;
    font-size: 0.6rem;
}

.brand-logo-circle.nokia-logo {
    background: linear-gradient(135deg, #124191, #0e3470);
    border-color: #124191;
}

.brand-logo-circle.nokia-logo .brand-text {
    color: white;
    font-size: 0.7rem;
}

/* Fallback CSS Animation Carousel */
.brands-scroll-animation {
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0;
}

.brands-track {
    display: inline-flex;
    animation: scroll-brands 30s linear infinite;
    gap: 2rem;
    align-items: center;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.brands-track .brand-logo-circle {
    flex-shrink: 0;
}

.brand-name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Categories Section */
.categories-section {
    background: white;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.category-description {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    background: #f8fafc;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.review-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.reviewer-location {
    color: var(--secondary-color);
}

/* Articles Section */
.articles-section {
    background: white;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.article-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article-date {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.article-category {
    background: var(--red-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Owl Carousel Customization */
.owl-theme .owl-nav {
    margin-top: 2rem;
}

.owl-theme .owl-nav [class*="owl-"] {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.1) !important;
}

.owl-theme .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e2e8f0 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color) !important;
    transform: scale(1.2) !important;
}

/* Product Page Styles */

/* Product Images */
.product-images .image-container {
    position: relative;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-product-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.05);
}

.image-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.image-badges .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.image-zoom {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.btn-zoom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.btn-zoom:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.thumbnail {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding: 2rem 0;
}

.brand-badge {
    background: var(--red-gradient);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 1rem;
}

.product-sku {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-text {
    color: var(--secondary-color);
    font-weight: 500;
}

.rating-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.rating-link:hover {
    text-decoration: underline;
}

/* Pricing */
.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-decoration: line-through;
}

.discount-percentage {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Product Options */
.option-group {
    margin-bottom: 1.5rem;
}

.option-label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.option-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.option-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.option-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.color-options {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.color-option.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.3);
}

.selected-color {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-label {
    font-weight: 600;
    color: var(--dark-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    background: white;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
    box-shadow: none;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.add-to-cart-btn {
    background: var(--red-gradient);
    border: none;
}

.add-to-cart-btn:hover {
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.buy-now-btn {
    background: var(--red-black-gradient);
    border: none;
}

.buy-now-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Features List */
.features-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--dark-color);
    font-weight: 500;
}

/* Delivery Info */
.delivery-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.delivery-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.delivery-option:last-child {
    border-bottom: none;
}

.delivery-option span {
    font-weight: 500;
    color: var(--dark-color);
}

.delivery-option small {
    margin-left: auto;
}

/* Product Tabs */
.product-nav-tabs {
    border-bottom: 2px solid #e2e8f0;
}

.product-nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.product-nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: rgba(220, 38, 38, 0.3);
}

.product-nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: none;
}

.tab-content-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Specifications Table */
.specifications-table {
    display: grid;
    gap: 1rem;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.spec-label {
    font-weight: 600;
    color: var(--dark-color);
}

.spec-value {
    color: var(--secondary-color);
}

/* Reviews */
.reviews-summary {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.rating-breakdown {
    padding-left: 2rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.progress {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
}

.progress-bar {
    border-radius: 4px;
}

.rating-count {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-align: right;
}

/* Review Items */
.review-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.review-content p {
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
}

/* Warranty Info */
.warranty-info {
    display: grid;
    gap: 1.5rem;
}

.warranty-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.warranty-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.warranty-icon i {
    font-size: 1.5rem;
}

.warranty-content h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.warranty-content p {
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.5;
}

/* Article Page Styles */

/* Article Header */
.article-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.article-category {
    background: var(--red-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.article-date, .reading-time {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 1rem 0;
}

.article-subtitle .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
}

.author-details p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.article-stats {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.stat-item {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* Featured Image */
.article-featured-image {
    text-align: center;
}

.article-featured-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 0.5rem;
    text-align: center;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.share-label {
    font-weight: 600;
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Article Body */
.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-quote {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-right: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.article-image-gallery img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-list {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Performance Stats */
.performance-stats .stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Camera Samples */
.camera-samples img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

/* Pros and Cons */
.pros-cons {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.pros-section h4, .cons-section h4 {
    margin-bottom: 1rem;
}

.pros-section ul li, .cons-section ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

/* Final Rating */
.final-rating {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-card h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.rating-score {
    text-align: center;
    margin-bottom: 2rem;
}

.score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.score-label {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.rating-breakdown {
    display: grid;
    gap: 1rem;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.rating-item:last-child {
    border-bottom: none;
}

.rating-category {
    font-weight: 600;
    color: var(--dark-color);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

/* Purchase CTA */
.purchase-cta {
    background: var(--red-gradient);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.cta-card {
    padding: 2rem;
    text-align: center;
    color: white;
}

.cta-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-price {
    margin-bottom: 1.5rem;
}

.cta-price .current-price {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.cta-price .original-price {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-right: 1rem;
}

.cta-card .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.cta-card .btn:hover {
    background: #f8fafc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Article Tags */
.article-tags h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tags-list .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}

/* Comments Section */
.comments-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.comments-title {
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.comment-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.comment-form h5 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.comment-date {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.comment-text {
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 0.5rem;
}

.comment-reply {
    margin-top: 1rem;
    margin-right: 2rem;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.comment-reply .comment-avatar img {
    width: 40px;
    height: 40px;
}

/* Sidebar */
.article-sidebar .sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.sidebar-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Author Card */
.author-card {
    text-align: center;
}

.author-card .author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.author-card .author-name {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-card .author-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-card .author-bio {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.author-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: var(--secondary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social .social-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Related Articles */
.related-article {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.related-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-article .article-image img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.related-article .article-info {
    flex: 1;
}

.related-article .article-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-article .article-date {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Newsletter Signup */
.newsletter-signup {
    text-align: center;
}

.newsletter-text {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Popular Articles */
.popular-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.popular-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.article-rank {
    width: 30px;
    height: 30px;
    background: var(--red-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.popular-article .article-info {
    flex: 1;
}

.popular-article .article-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.popular-article .article-views {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Cart Page Styles */
.cart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cart-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.cart-items {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item .item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item .item-details {
    flex: 1;
    min-width: 0;
}

.cart-item .item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.cart-item .item-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.spec-tag {
    background: #f8fafc;
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
}

.cart-item .item-features small {
    font-size: 0.875rem;
}

.cart-item .item-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.quantity-label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.875rem;
}

.cart-item .item-price {
    text-align: center;
    min-width: 120px;
}

.cart-item .current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.cart-item .original-price {
    font-size: 1rem;
    color: var(--secondary-color);
    text-decoration: line-through;
    display: block;
    margin-top: 0.25rem;
}

.cart-item .unit-price {
    font-size: 0.875rem;
    color: var(--secondary-color);
    display: block;
    margin-top: 0.25rem;
}

.cart-item .item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-actions {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.order-summary {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 2rem;
}

.summary-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-section {
    padding: 1rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: var(--secondary-color);
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: var(--dark-color);
}

.summary-row.discount .summary-value {
    color: #16a34a;
}

.summary-divider {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 1rem 0;
}

.summary-total {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.summary-row.total .summary-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.summary-row.total .summary-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.savings-info {
    text-align: center;
    margin-top: 1rem;
}

.promo-section {
    padding: 1rem 0;
}

.checkout-section {
    padding: 1.5rem 0;
}

.checkout-btn {
    background: var(--red-gradient);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.security-info {
    text-align: center;
}

.benefits-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    font-size: 1.25rem;
}

.recommended-products {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.recommended-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.recommended-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.recommended-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.recommended-item:last-child {
    margin-bottom: 0;
}

.recommended-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
}

.recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommended-details {
    flex: 1;
}

.recommended-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.recommended-price {
    font-weight: 700;
    color: var(--primary-color);
}

.add-recommended {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Order Page Styles */
.checkout-progress {
    background: #f8fafc;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -2rem;
    width: 4rem;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step.completed::after {
    background: var(--primary-color);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: var(--secondary-color);
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
}

.step.completed .step-icon {
    background: var(--primary-color);
    color: white;
}

.step.active .step-icon {
    background: var(--red-gradient);
    color: white;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.step.completed .step-label,
.step.active .step-label {
    color: var(--primary-color);
}

.order-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.delivery-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
}

.delivery-option input[type="radio"]:checked + .delivery-label {
    border-color: var(--primary-color);
    background: rgba(220, 38, 38, 0.05);
}

.delivery-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin: 0;
}

.delivery-info {
    flex: 1;
}

.delivery-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.delivery-description {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.delivery-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.additional-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.additional-options .form-check {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.additional-options .form-check:hover {
    border-color: var(--primary-color);
    background: rgba(220, 38, 38, 0.02);
}

.order-items {
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item .item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
}

.order-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item .item-details {
    flex: 1;
}

.order-item .item-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.order-item .item-specs {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.order-item .item-quantity {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.order-item .item-price {
    font-weight: 700;
    color: var(--primary-color);
}

.price-breakdown {
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    color: var(--secondary-color);
    font-weight: 500;
}

.price-value {
    font-weight: 600;
    color: var(--dark-color);
}

.price-row.total .price-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.price-row.total .price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-divider {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 1rem 0;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Payment Page Styles */
.payment-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-label:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
}

.payment-method.active .payment-label {
    border-color: var(--primary-color);
    background: rgba(220, 38, 38, 0.05);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.payment-info {
    flex: 1;
}

.payment-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.payment-description {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-details {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.card-input-wrapper {
    position: relative;
}

.card-type-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
}

.cvv-input-wrapper {
    position: relative;
}

.cvv-help {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    cursor: help;
}

.installments-section {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.installments-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.installments-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.info-card i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.bank-details {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin: 1rem 0;
}

.bank-details div {
    margin-bottom: 0.5rem;
}

.bank-details div:last-child {
    margin-bottom: 0;
}

.terms-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.payment-btn {
    background: var(--red-gradient);
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.payment-btn:hover {
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.security-features {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.security-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.customer-support {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.support-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.support-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.whatsapp {
    background: #25d366;
    color: white;
}

.social-link.telegram {
    background: #0088cc;
    color: white;
}

.social-link:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.1);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-primary {
    background: var(--red-gradient);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    text-align: center;
    padding: 2rem;
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-content h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.map-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.faq-section .accordion {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.faq-section .accordion-item:last-child {
    border-bottom: none;
}

.faq-section .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(220, 38, 38, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc2626'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Products Page Responsive */
@media (max-width: 575.98px) {
    /* Products Page Mobile */
    .page-header {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Filters Mobile */
    .filters-sidebar {
        padding: 1rem;
    }
    
    .filter-section {
        margin-bottom: 1.5rem;
    }
    
    .filter-title {
        font-size: 1rem;
    }
    
    .filter-options {
        font-size: 0.9rem;
    }
    
    /* Products Toolbar Mobile */
    .products-toolbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .results-info {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .toolbar-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .toolbar-actions .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    /* Product Cards Mobile */
    .products-grid .col-lg-4 {
        margin-bottom: 1.5rem;
    }
    
    .product-card {
        height: auto;
    }
    
    .product-card .card-body {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .product-specs {
        font-size: 0.8rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .product-actions .btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    /* Offcanvas Filters */
    .offcanvas-body {
        padding: 1rem;
    }
    
    /* Pagination Mobile */
    .pagination {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .products-toolbar {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .toolbar-actions {
        gap: 0.75rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .product-actions .btn {
        width: auto;
        flex: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cart-item .item-quantity,
    .cart-item .item-price,
    .cart-item .item-actions {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }
    
    .progress-steps {
        gap: 1rem;
    }
    
    .step::after {
        width: 2rem;
        right: -1rem;
    }
    
    .payment-label {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .payment-logos {
        justify-content: center;
    }
    
    .contact-info {
        position: static;
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

/* Lab Services Page Styles */
.service-feature {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.service-feature:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-feature .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-feature h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-feature p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-details {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.service-details li {
    padding: 0.5rem 0;
    color: var(--secondary-color);
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-right: 1.5rem;
}

.service-details li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #16a34a;
    font-weight: bold;
}

.service-details li:last-child {
    border-bottom: none;
}

.service-price {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.lab-services .service-details .service-note {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: right;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.process-step .step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2rem auto 1.5rem;
    border: 3px solid #e2e8f0;
}

.process-step h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.brand-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.brand-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.brand-card .brand-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.brand-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.brand-card p {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.emergency-service {
    background: var(--red-gradient);
    color: white;
}

.emergency-content .emergency-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.emergency-content .emergency-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-features {
    list-style: none;
    padding: 0;
}

.emergency-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.emergency-features li i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.emergency-contact {
    text-align: center;
}

.emergency-contact .emergency-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.emergency-contact h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-contact p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-emergency {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    height: 100%;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.25rem;
    margin: 0 0.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-content .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.cta-content .cta-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Lab Services Page Responsive */
@media (max-width: 575.98px) {
    /* Lab Services Mobile */
    .lab-hero {
        padding: 2rem 0;
    }
    
    .lab-hero .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .lab-hero .hero-content .lead {
        font-size: 0.95rem;
    }
    
    .lab-hero .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    /* Service Features Mobile */
    .service-features {
        padding: 2rem 0;
    }
    
    .service-feature {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .service-feature h4 {
        font-size: 1.1rem;
    }
    
    .service-feature p {
        font-size: 0.9rem;
    }
    
    /* Main Services Mobile */
    .main-services {
        padding: 2rem 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-details {
        padding: 1rem;
    }
    
    .service-note {
        font-size: 0.85rem;
    }
    
    /* Process Steps Mobile */
    .process-steps {
        padding: 2rem 0;
    }
    
    .process-step {
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    /* Brands Carousel Mobile */
    .supported-brands {
        padding: 2rem 0;
    }
    
    .brand-logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .brand-logo-circle i {
        font-size: 1.5rem;
    }
    
    .brand-logo-circle .brand-text {
        font-size: 0.6rem;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 2rem 0;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author h5 {
        font-size: 1rem;
    }
    
    /* CTA Mobile */
    .lab-cta {
        padding: 2rem 0;
    }
    
    .lab-cta .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .lab-cta .cta-content p {
        font-size: 0.95rem;
    }
    
    .lab-cta .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .lab-hero .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .lab-hero .hero-buttons .btn {
        width: auto;
        margin-right: 0.75rem;
    }
    
    .service-feature {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .lab-cta .btn {
        width: auto;
        margin-right: 1rem;
    }
}

/* Responsive adjustments for lab services */
@media (max-width: 768px) {
    .emergency-content .emergency-title {
        font-size: 2rem;
    }
    
    .emergency-content .emergency-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-content .cta-title {
        font-size: 2rem;
    }
    
    .cta-content .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* About Page Styles */
.company-story {
    padding: 5rem 0;
}

.story-content .section-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.story-content .lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.story-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.story-image .image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-image .image-placeholder h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.story-image .image-placeholder p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.value-card h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-card .team-image {
    margin-bottom: 2rem;
}

.team-card .team-image .image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid #e2e8f0;
}

.team-card .team-image .image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.team-card .team-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-card .team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card .team-bio {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.mission-card,
.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.mission-card .mission-icon,
.vision-card .vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mission-card h3,
.vision-card h3 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-points,
.vision-goals {
    list-style: none;
    padding: 0;
}

.mission-points li,
.vision-goals li {
    padding: 0.5rem 0;
    color: var(--secondary-color);
    position: relative;
    padding-right: 1.5rem;
}

.mission-points li:before,
.vision-goals li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #16a34a;
    font-weight: bold;
}

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.cert-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-card .cert-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.cert-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.cert-card p {
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.reason-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.reason-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reason-card .reason-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reason-card .reason-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.reason-card .reason-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .story-image .image-placeholder {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .team-card .team-image .image-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .team-card .team-image .image-placeholder i {
        font-size: 3rem;
    }
    
    .reason-card {
        flex-direction: column;
        text-align: center;
    }
    
    .reason-card .reason-icon {
        margin: 0 auto 1rem;
    }
}

.filter-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.products-toolbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-badges .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
}

.product-actions button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-actions button {
    opacity: 1;
    transform: translateY(0);
}

.product-actions button:first-child {
    transition-delay: 0.1s;
}

.product-actions button:last-child {
    transition-delay: 0.2s;
}

.btn-add-to-cart {
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* List Group Hover Effects */
.list-group-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

/* Form Controls */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Pagination */
.pagination .page-link {
    border: none;
    border-radius: 10px;
    margin: 0 2px;
    padding: 0.75rem 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Features Section */
.features-section {
    background: #f8fafc;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

/* Brand Categories */
.brand-categories {
    background: white;
}

.brand-card {
    background: var(--red-gradient);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.brand-card:hover {
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.xiaomi-card {
    background: var(--red-gradient);
}

.iphone-card {
    background: var(--black-gradient);
}

.oneplus-card {
    background: var(--red-black-gradient);
}

.brand-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.brand-image {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.brand-image img {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

/* Popular Products */
.popular-products {
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-badges .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.product-rating {
    font-size: 0.875rem;
}

.product-price {
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.original-price {
    font-size: 1rem;
    color: var(--secondary-color);
    text-decoration: line-through;
}

/* Navbar Search */
.navbar-search .input-group {
    width: 300px;
}

.navbar-search .form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px 0 0 25px;
}

.navbar-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.navbar-search .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    color: white;
}

.navbar-search .btn {
    border-radius: 0 25px 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
}

@media (max-width: 768px) {
    /* Top Bar Mobile Fixes */
    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }

    .top-bar .row {
        margin: 0;
    }

    .top-bar .col-md-6 {
        padding: 0.25rem 0;
    }

    .top-bar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .top-bar .me-4 {
        margin-right: 1rem !important;
    }

    .top-bar span {
        font-size: 0.7rem;
    }

    /* Hide some top bar elements on mobile */
    .top-bar .col-md-6:first-child .d-flex span:last-child,
    .top-bar .col-md-6:first-child .d-flex i:nth-child(3) {
        display: none;
    }

    /* Navbar Mobile Fixes */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Notification Banner Mobile */
    .notification-banner {
        padding: 0.75rem 0;
        font-size: 0.85rem;
    }

    .notification-banner .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .notification-banner .btn-close {
        position: absolute;
        top: 0.5rem;
        left: 1rem;
    }

    /* Mobile Navigation Menu */
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        margin-bottom: 1rem;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Mobile Dropdown Fixes */
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background: rgba(15, 15, 15, 0.9);
        border: none;
        border-radius: 0;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-item:hover {
        transform: none;
        padding-right: 1.5rem;
    }

    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .search-input-container {
        width: 250px;
        right: -50px;
    }

    .products-toolbar {
        flex-direction: column;
        gap: 1rem;
    }

    .products-toolbar > div {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .navbar-search {
        margin-top: 1rem;
    }

    .navbar-search .input-group {
        width: 100%;
    }

    .brand-image {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .price-large {
        font-size: 2rem;
    }

    .price-old {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        width: 100%;
        margin-right: 0 !important;
    }

    .hero-phone {
        max-height: 300px;
        margin-top: 2rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }

    .hero-slide {
        min-height: 60vh;
    }

    .min-vh-75 {
        min-height: 60vh;
    }

    .hero-newsletter .input-group {
        flex-direction: column;
        max-width: 100%;
    }

    .hero-newsletter .form-control {
        border-radius: 25px;
        margin-bottom: 0.5rem;
    }

    .hero-newsletter .btn {
        border-radius: 25px;
        width: 100%;
    }
}

/* Additional Section Spacing and Improvements */
.our-values,
.statistics,
.team-section,
.mission-vision,
.certifications,
.why-choose-us {
    padding: 5rem 0;
}

.map-section,
.faq-section {
    padding: 4rem 0;
}

/* Improve section titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Page header improvements */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #fef2f2 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23f1f5f9"><polygon points="0,100 1000,0 1000,100"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-icon {
    position: relative;
    z-index: 2;
}

.header-icon i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Contact page specific improvements */
.contact-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* About page specific improvements */
.value-card {
    padding: 3rem 2rem;
    transition: all 0.4s ease;
}

.value-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-card {
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.team-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.75rem;
}

.stat-card .stat-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-icon i {
        font-size: 4rem;
    }
    
    .our-values,
    .statistics,
    .team-section,
    .mission-vision,
    .certifications,
    .why-choose-us {
        padding: 3rem 0;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .company-story {
        padding: 3rem 0;
    }
}

/* Owl Carousel RTL Fixes */
.owl-carousel {
    direction: rtl;
}

.owl-carousel .owl-stage-outer {
    cursor: grab;
}

.owl-carousel .owl-stage-outer:active {
    cursor: grabbing;
}

.owl-carousel .owl-item {
    cursor: pointer;
    direction: ltr;
}

.owl-carousel .owl-nav button {
    cursor: pointer !important;
    outline: none !important;
    background: var(--red-gradient) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 1.2rem !important;
    margin: 0 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
}

.owl-carousel .owl-nav button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
}

.owl-carousel .owl-dots .owl-dot {
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot span {
    cursor: pointer;
}

/* RTL specific navigation fixes */
.owl-carousel.owl-rtl .owl-nav button.owl-prev {
    left: auto;
    right: 0;
}

.owl-carousel.owl-rtl .owl-nav button.owl-next {
    right: auto;
    left: 0;
}

/* Ensure proper cursor behavior for all carousel elements */
.owl-carousel * {
    cursor: inherit;
}

.owl-carousel .owl-nav {
    margin-top: 2rem;
    text-align: center;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    transform: scale(1.2);
}

.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    opacity: 0.8;
}

/* Articles Page Improvements */
.page-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.page-stats .stat-item {
    text-align: center;
}

.page-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.page-stats .stat-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.articles-section {
    background: #fafbfc;
    padding: 4rem 0;
}

.articles-sidebar {
    position: sticky;
    top: 2rem;
}

.articles-sidebar .sidebar-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.articles-sidebar .sidebar-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: rgba(220, 38, 38, 0.05);
    border-color: var(--primary-color);
}

.category-item.active {
    background: var(--red-gradient);
    color: white;
}

.category-name {
    font-weight: 500;
}

.category-count {
    font-size: 0.875rem;
    background: rgba(0, 0, 0, 0.1);
    color: inherit;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.category-item.active .category-count {
    background: rgba(255, 255, 255, 0.2);
}

.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.popular-article:hover {
    background: #f8fafc;
    transform: translateX(5px);
}

.popular-article .article-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-article .article-info {
    flex: 1;
}

.popular-article .article-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.popular-article .article-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.featured-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.featured-article .article-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.featured-article .article-content {
    padding: 2.5rem;
}

.featured-article .article-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 1rem 0;
    line-height: 1.3;
}

.featured-article .article-excerpt {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-article .article-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.articles-grid .article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.articles-grid .article-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.articles-grid .article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.articles-grid .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.articles-grid .article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--red-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.articles-grid .article-content {
    padding: 2rem;
}

.articles-grid .article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.articles-grid .article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.articles-grid .article-excerpt {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.articles-grid .article-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Pagination Improvements */
.pagination-section {
    padding: 3rem 0;
    text-align: center;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--red-gradient);
    color: white;
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--red-gradient);
    border-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--red-gradient);
    color: white;
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.newsletter-form .btn {
    background: var(--dark-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
}

/* Responsive improvements for articles */
@media (max-width: 768px) {
    .articles-section {
        padding: 2rem 0;
    }
    
    .articles-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .featured-article .article-image {
        height: 250px;
    }
    
    .featured-article .article-content {
        padding: 1.5rem;
    }
    
    .featured-article .article-title {
        font-size: 1.5rem;
    }
    
    .articles-grid .article-image {
        height: 200px;
    }
    
    .articles-grid .article-content {
        padding: 1.5rem;
    }
    
    .page-stats {
        gap: 1rem;
    }
    
    .page-stats .stat-number {
        font-size: 2rem;
    }
}

/* Individual Article Page Improvements */
.breadcrumb-section {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.article-section {
    padding: 3rem 0 5rem;
    background: #fafbfc;
}

.article-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.article-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.article-category {
    background: var(--red-gradient);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.article-date, .reading-time {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.article-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 1.5rem 0;
}

.article-subtitle .lead {
    font-size: 1.35rem;
    color: var(--secondary-color);
    line-height: 1.6;
    font-weight: 400;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-details .author-name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-details .author-title {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

.article-stats {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.article-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.article-featured-image {
    text-align: center;
    margin: 2rem 0;
}

.article-featured-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    height: auto;
}

.image-caption {
    margin-top: 1rem;
    text-align: center;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.share-label {
    font-weight: 600;
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 2.5rem 0 1rem 0;
}

.article-body p {
    margin-bottom: 1.75rem;
}

.article-quote {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-right: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 15px;
    font-style: italic;
    font-size: 1.2rem;
    position: relative;
}

.article-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    line-height: 1;
    opacity: 0.3;
}

.article-sidebar {
    position: sticky;
    top: 2rem;
}

.article-sidebar .sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.article-sidebar .sidebar-section h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

/* Responsive improvements for individual article */
@media (max-width: 768px) {
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .article-title {
        font-size: 2.25rem;
    }
    
    .article-subtitle .lead {
        font-size: 1.2rem;
    }
    
    .article-author-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .article-stats {
        margin-left: 0;
        justify-content: center;
    }
    
    .article-body {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.75rem;
    }
    
    .social-share {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .article-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

/* Business Page Styles */
.business-hero {
    padding: 5rem 0;
}

.hero-content .hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.hero-image .image-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-image .image-placeholder h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.hero-image .image-placeholder p {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.business-services {
    padding: 5rem 0;
}

.business-service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.business-service-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.business-service-card.featured-service {
    background: linear-gradient(135deg, #f8fafc 0%, #fef2f2 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.business-service-card.featured-service::before {
    content: 'מומלץ';
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: var(--red-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 700;
}

.business-service-card .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.business-service-card .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-service-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.business-service-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--secondary-color);
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-right: 1.5rem;
    font-size: 0.95rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-details {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    margin-top: auto;
}

.service-details .service-note {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: right;
}

.business-benefits {
    padding: 5rem 0;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    height: 100%;
}

.benefit-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-card .benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-gradient);
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.business-testimonials {
    padding: 5rem 0;
}

.business-testimonials .testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.business-testimonials .testimonial-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.25rem;
    margin: 0 0.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    flex: 1;
}

.testimonial-author h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.business-cta {
    background: var(--red-gradient);
    color: white;
    padding: 5rem 0;
}

.cta-content .cta-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content .cta-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.05rem;
    opacity: 0.9;
}

.contact-info .contact-item i {
    font-size: 1.2rem;
}

.contact-info .contact-item {
    flex-direction: column;
    text-align: center;
}

.contact-info .contact-item strong {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info .contact-item .contact-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.cta-benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.cta-benefits .benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-benefits .benefit-item i {
    color: #22c55e;
    font-size: 1.1rem;
}

/* Responsive improvements for business page */
@media (max-width: 768px) {
    .hero-content .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-image .image-placeholder {
        height: 300px;
        margin-top: 2rem;
    }
    
    .hero-image .image-placeholder i {
        font-size: 4rem;
    }
    
    .business-services {
        padding: 3rem 0;
    }
    
    .business-service-card {
        margin-bottom: 2rem;
    }
    
    .business-benefits {
        padding: 3rem 0;
    }
    
    .business-testimonials {
        padding: 3rem 0;
    }
    
    .business-cta {
        padding: 3rem 0;
    }
    
    .cta-content .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-content .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Individual Product Page Responsive */
@media (max-width: 575.98px) {
    /* Product Page Mobile */
    .product-gallery {
        margin-bottom: 1.5rem;
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-thumbnails {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .product-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-brand {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
    
    .product-sku {
        font-size: 0.8rem;
    }
    
    .product-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .price-discount {
        font-size: 0.9rem;
    }
    
    /* Product Options Mobile */
    .product-options {
        margin: 1.5rem 0;
    }
    
    .option-group {
        margin-bottom: 1.5rem;
    }
    
    .option-label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .storage-options,
    .color-options {
        gap: 0.5rem;
    }
    
    .storage-option,
    .color-option {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .color-option {
        width: 40px;
        height: 40px;
    }
    
    /* Quantity and Actions Mobile */
    .quantity-selector {
        margin: 1.5rem 0;
    }
    
    .quantity-controls {
        width: 120px;
    }
    
    .quantity-controls .btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .quantity-input {
        font-size: 0.9rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .product-actions .btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Product Features Mobile */
    .product-features {
        margin: 1.5rem 0;
    }
    
    .feature-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    /* Delivery Info Mobile */
    .delivery-info {
        margin: 1.5rem 0;
    }
    
    .delivery-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    /* Product Tabs Mobile */
    .product-tabs {
        margin-top: 2rem;
    }
    
    .product-tabs .nav-tabs {
        flex-direction: column;
        border: none;
    }
    
    .product-tabs .nav-link {
        text-align: center;
        border-radius: 0;
        border: 1px solid #dee2e6;
        margin-bottom: -1px;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .product-tabs .tab-content {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Specifications Mobile */
    .specs-table {
        font-size: 0.85rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.5rem;
    }
    
    /* Reviews Mobile */
    .reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .review-item {
        padding: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    /* Related Products Mobile */
    .related-products {
        margin-top: 2rem;
    }
    
    .related-products .product-card {
        margin-bottom: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .product-main-image {
        height: 400px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: row;
        gap: 1rem;
    }
    
    .product-actions .btn {
        width: auto;
        flex: 1;
    }
    
    .product-tabs .nav-tabs {
        flex-direction: row;
        border-bottom: 1px solid #dee2e6;
    }
    
    .product-tabs .nav-link {
        border-radius: 0.25rem 0.25rem 0 0;
        border: 1px solid transparent;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: -1px;
    }
}
