@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('../font/Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* رنگ‌های اصلی - آبی تیره/نفتی */
    --primary-dark: #001a2e;
    --primary-darker: #002244;
    --primary-base: #003d6b;
    
    /* رنگ ثانویه - آبی روشن */
    --secondary: #0086E5;
    --secondary-light: #00A3FF;
    
    /* رنگ خنثی */
    --gray-dark: #2c3e50;
    --gray-medium: #5f5f5f;
    --gray-light: #e0e0e0;
    --gray-lighter: #f5f5f5;
    --white: #ffffff;
    
    /* رنگ تأکیدی */
    --success: #00C853;
    --warning: #FF6B35;
    
    /* رنگ متن */
    --text-primary: #001a2e;
    --text-secondary: #5f5f5f;
    --text-light: #ffffff;
    
    /* رنگ پس‌زمینه */
    --bg-primary: #001a2e;
    --bg-secondary: #002244;
    --bg-tertiary: #003d6b;
    
    /* فونت */
    --font-family: Vazirmatn, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    top: -100px;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 0;
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 50%, var(--primary-base) 100%);
    background-attachment: fixed;
    color: var(--font-color);
    min-height: 100vh;
    direction: rtl;
    padding-bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Performance: Will-change for animated elements */
.loading-screen,
.premium-image-frame,
.premium-add-cart-btn {
    will-change: transform, opacity;
}

/* SEO Content Section */
.seo-content-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.seo-content-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 50px 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.seo-content-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 900;
    color: white;
    margin: 0 0 30px 0;
    text-align: center;
    line-height: 1.3;
}

.seo-content-text {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
}

.seo-content-text p {
    margin: 0 0 20px 0;
}

.seo-content-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 30px 0 20px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.seo-features-list,
.seo-products-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-features-list li,
.seo-products-list li {
    padding: 15px 20px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-right: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.seo-features-list li:hover,
.seo-products-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.seo-features-list li strong,
.seo-products-list li strong {
    color: var(--secondary-light);
    font-weight: 700;
}

.seo-content-text a {
    color: var(--secondary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.seo-content-text a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .seo-content-container {
        padding: 30px 20px;
    }
    
    .seo-content-title {
        font-size: 24px;
    }
    
    .seo-content-text {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .seo-content-text h3 {
        font-size: 20px;
    }
}

/* Lazy loaded images */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* Header Styles */
header {
    background: rgba(0, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Soft Light Effect for Header */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 134, 229, 0.18) 20%,
        rgba(0, 163, 255, 0.25) 50%,
        rgba(0, 134, 229, 0.18) 80%,
        transparent 100%
    );
    opacity: 0.9;
    pointer-events: none;
    animation: headerLightFlow 8s ease-in-out infinite;
    z-index: 0;
}

header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(0, 163, 255, 0.35) 0%,
        rgba(0, 134, 229, 0.2) 30%,
        transparent 70%
    );
    pointer-events: none;
    animation: headerLightPulse 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes headerLightFlow {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0.7;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

@keyframes headerLightPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

header > section {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Parts Category Section - Below Header */
.parts-category-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 998;
}

.parts-category-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.parts-category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.9) 0%,
        rgba(0, 163, 255, 0.85) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 134, 229, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.parts-category-btn:hover::before {
    left: 100%;
}

.parts-category-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 163, 255, 0.95) 0%,
        rgba(0, 134, 229, 0.9) 100%
    );
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(0, 134, 229, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.parts-category-btn.active {
    background: linear-gradient(
        135deg,
        rgba(0, 163, 255, 1) 0%,
        rgba(0, 134, 229, 0.95) 100%
    );
    box-shadow: 
        0 12px 36px rgba(0, 134, 229, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 20px rgba(0, 163, 255, 0.4);
}

.parts-menu-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.parts-category-btn.active .parts-menu-icon {
    transform: rotate(90deg);
}

.parts-btn-text {
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Parts Submenu */
.parts-submenu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
}

.parts-submenu::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(0, 163, 255, 0.1) 0%,
        transparent 50%
    );
    animation: submenuGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes submenuGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.parts-submenu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.parts-submenu-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.parts-submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.parts-submenu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 163, 255, 0.2),
        transparent
    );
    transition: left 0.4s ease;
}

.parts-submenu-item:hover::before {
    left: 100%;
}

.parts-submenu-item:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.3) 0%,
        rgba(0, 163, 255, 0.25) 100%
    );
    border-color: rgba(0, 163, 255, 0.4);
    transform: translateX(-4px);
    box-shadow: 
        0 4px 12px rgba(0, 134, 229, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
}

.parts-submenu-icon {
    font-size: 20px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.parts-submenu-item:hover .parts-submenu-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(0, 163, 255, 0.2);
}

.parts-submenu-text {
    flex: 1;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.header-brand:hover {
    transform: scale(1.05);
}

.header-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.header-name {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10002;
}

/* Desktop Search Form */
.desktop-search-form {
    display: none;
    position: relative;
    gap: 0;
}

.desktop-search-input {
    width: 300px;
    padding: 12px 50px 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-family: var(--font-family);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.desktop-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.desktop-search-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 134, 229, 0.2);
}

.desktop-search-btn {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.desktop-search-btn:hover {
    color: var(--secondary);
}

.search-icon {
    width: 20px;
    height: 20px;
}

/* Desktop Menu Button */
.desktop-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    outline: none;
}

.desktop-menu-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    color: rgba(255, 255, 255, 1);
}

.desktop-menu-btn.active {
    background: rgba(0, 134, 229, 0.2);
    border-color: var(--secondary);
    color: var(--secondary);
}

.menu-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.desktop-menu-btn.active .menu-icon {
    transform: rotate(90deg);
}

/* Desktop Dropdown Menu */
.desktop-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10003;
    min-width: 280px;
}

.desktop-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.desktop-menu-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.desktop-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(0, 26, 46, 0.9);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.desktop-menu-item:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    transform: translateX(-5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.desktop-menu-item.active {
    background: linear-gradient(135deg, rgba(0, 134, 229, 0.2) 0%, rgba(0, 163, 255, 0.2) 100%);
    color: var(--primary-dark);
    border-left: 3px solid var(--secondary);
    font-weight: 700;
}

.menu-item-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke-width: 2;
}

.desktop-menu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 8px 0;
}

.desktop-menu-item-highlight {
    background: linear-gradient(135deg, rgba(0, 134, 229, 0.15) 0%, rgba(0, 163, 255, 0.15) 100%);
    border: 2px solid rgba(0, 134, 229, 0.3);
    font-weight: 800 !important;
    margin-top: 4px;
}

.desktop-menu-item-highlight:hover {
    background: linear-gradient(135deg, rgba(0, 134, 229, 0.25) 0%, rgba(0, 163, 255, 0.25) 100%);
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 134, 229, 0.3);
}

/* Submenu Styles */
.desktop-menu-item-with-submenu {
    cursor: pointer;
    position: relative;
}

.submenu-arrow {
    width: 16px;
    height: 16px;
    margin-right: auto;
    transition: transform 0.3s ease;
    stroke-width: 2;
}

.desktop-menu-item-with-submenu.active .submenu-arrow {
    transform: rotate(-90deg);
}

.desktop-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-right: 20px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.desktop-submenu.show {
    max-height: 300px;
    opacity: 1;
}

.desktop-submenu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(0, 26, 46, 0.85);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

.desktop-submenu-item:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    transform: translateX(-3px);
    padding-right: 20px;
}

.desktop-submenu-item.active {
    background: linear-gradient(135deg, rgba(0, 134, 229, 0.15) 0%, rgba(0, 163, 255, 0.15) 100%);
    color: var(--primary-dark);
    border-right: 3px solid var(--secondary);
    font-weight: 600;
}

.submenu-item-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 2;
}

/* Banner Slideshow */
#slideshow {
    width: calc(100% - 16px);
    margin: 8px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner {
    width: 100%;
    height: 0;
    object-fit: cover;
    display: block;
    transition: height 0.5s ease;
    border-radius: 16px;
}

/* Category Cards */
.category-cards {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.category-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.category-card {
    background: transparent;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
    position: relative;
    overflow: visible;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-image-wrapper {
    width: 100%;
    height: 90px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-top: 6px;
    line-height: 1.4;
}

/* Product Sections */
.product-section {
    padding: 40px 20px;
    margin-bottom: 40px;
}

/* Products Filters Section */
.products-filters-section {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
}

.filters-container {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.filter-group {
    flex: 1;
    min-width: 280px;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.filter-header svg {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    color: var(--secondary-light);
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
}

/* Price Filter */
.price-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-range-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price-min,
.price-max {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    flex: 1;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price-separator {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.price-range-slider {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 20px 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.range-input {
    position: absolute;
    width: 100%;
    height: 8px;
    background: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
    z-index: 2;
}

.range-input:first-of-type {
    z-index: 3;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(0, 134, 229, 1) 0%, rgba(0, 163, 255, 1) 100%);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 
        0 4px 12px rgba(0, 134, 229, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 
        0 6px 16px rgba(0, 134, 229, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.3);
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(0, 134, 229, 1) 0%, rgba(0, 163, 255, 1) 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 
        0 4px 12px rgba(0, 134, 229, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.range-input::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 
        0 6px 16px rgba(0, 134, 229, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.3);
}

.range-input::-moz-range-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Sort Options */
.sort-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sort-option {
    padding: 11px 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sort-option:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.35) 0%,
        rgba(0, 163, 255, 0.3) 100%
    );
    border-color: rgba(0, 163, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 134, 229, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sort-option.active {
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.7) 0%,
        rgba(0, 163, 255, 0.65) 100%
    );
    border-color: rgba(0, 163, 255, 0.7);
    color: white;
    box-shadow: 
        0 4px 16px rgba(0, 134, 229, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Apply Filters Button */
.apply-filters-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.95) 0%,
        rgba(0, 163, 255, 0.9) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 16px rgba(0, 134, 229, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    align-self: flex-end;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.apply-filters-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 163, 255, 1) 0%,
        rgba(0, 134, 229, 0.95) 100%
    );
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 134, 229, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.apply-filters-btn svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Parts Group Section */
.parts-group-section {
    padding: 30px 20px;
    margin-bottom: 30px;
}

.parts-group-section:first-of-type {
    padding-top: 40px;
}

.parts-group-icon {
    font-size: 28px;
    line-height: 1;
    margin-left: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Subcategory Filters - Modern Premium Design */
.subcategory-filters {
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.subcategory-filters-wrapper {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.subcategory-filters-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(0, 163, 255, 0.08) 0%,
        transparent 50%
    );
    animation: filterBackgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes filterBackgroundPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.subcategory-filters-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.subcategory-filters-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.2) 0%,
        rgba(0, 163, 255, 0.15) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 16px;
    box-shadow: 
        0 4px 16px rgba(0, 134, 229, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.subcategory-filters-title svg {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 163, 255, 0.4));
}

.subcategory-filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    position: relative;
    z-index: 1;
}

.subcategory-filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.subcategory-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.1) 0%,
        rgba(0, 163, 255, 0.08) 50%,
        rgba(0, 134, 229, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.subcategory-filter-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 163, 255, 0.1),
        transparent 30%,
        transparent 70%,
        rgba(0, 134, 229, 0.1),
        transparent
    );
    animation: filterRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

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

.subcategory-filter-btn:hover::before,
.subcategory-filter-btn.active::before {
    opacity: 1;
}

.subcategory-filter-btn:hover::after,
.subcategory-filter-btn.active::after {
    opacity: 1;
}

.subcategory-filter-btn > * {
    position: relative;
    z-index: 1;
}

.subcategory-filter-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.3) 0%,
        rgba(0, 163, 255, 0.25) 50%,
        rgba(0, 134, 229, 0.3) 100%
    );
    border-color: rgba(0, 163, 255, 0.5);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 16px 40px rgba(0, 134, 229, 0.4),
        0 8px 20px rgba(0, 163, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 2px rgba(0, 163, 255, 0.2);
    color: white;
}

.subcategory-filter-btn.active {
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.55) 0%,
        rgba(0, 163, 255, 0.5) 50%,
        rgba(0, 134, 229, 0.55) 100%
    );
    border-color: rgba(0, 163, 255, 0.7);
    color: white;
    box-shadow: 
        0 16px 48px rgba(0, 134, 229, 0.6),
        0 8px 24px rgba(0, 163, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 3px rgba(0, 163, 255, 0.4),
        0 0 40px rgba(0, 163, 255, 0.4);
    transform: translateY(-4px) scale(1.02);
}

.subcategory-filter-btn.active::before {
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.2) 0%,
        rgba(0, 163, 255, 0.18) 50%,
        rgba(0, 134, 229, 0.2) 100%
    );
}

.filter-icon {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.subcategory-filter-btn:hover .filter-icon {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 
        0 6px 16px rgba(0, 134, 229, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.subcategory-filter-btn.active .filter-icon {
    transform: scale(1.15);
    background: linear-gradient(
        135deg,
        rgba(0, 163, 255, 0.4) 0%,
        rgba(0, 134, 229, 0.35) 100%
    );
    border-color: rgba(0, 163, 255, 0.6);
    box-shadow: 
        0 8px 20px rgba(0, 163, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 20px rgba(0, 163, 255, 0.4);
    filter: drop-shadow(0 4px 12px rgba(0, 163, 255, 0.6));
}

.filter-icon svg {
    width: 24px;
    height: 24px;
}

.filter-text {
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.subcategory-filter-btn:hover .filter-text {
    text-shadow: 0 2px 8px rgba(0, 163, 255, 0.5);
}

.subcategory-filter-btn.active .filter-text {
    text-shadow: 0 2px 10px rgba(0, 163, 255, 0.7);
    font-weight: 700;
}

.product-section-header {
    max-width: 1400px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.product-section-link {
    color: var(--secondary-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-section-link:hover {
    color: var(--secondary);
}

.products {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Product Card - Glassmorphism with Fade */
.product-card {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    opacity: 0.6;
    z-index: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

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

.product-card-inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
    border-radius: 14px 14px 0 0;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.product-image-link:hover .product-image {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    gap: 8px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 134, 229, 0.85) 0%,
        rgba(0, 163, 255, 0.9) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.product-image-link:hover .product-overlay {
    opacity: 1;
}

.view-product-btn {
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.view-product-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.product-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 4;
    transition: all 0.3s ease;
}

.product-card:hover .product-category-badge {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 100%
    );
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-stock-warning {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(
        to bottom,
        rgba(255, 107, 53, 0.95) 0%,
        rgba(255, 107, 53, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.product-stock-out {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(
        to bottom,
        rgba(239, 68, 68, 0.95) 0%,
        rgba(239, 68, 68, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.product-status-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(
        to bottom,
        rgba(0, 200, 83, 0.95) 0%,
        rgba(0, 200, 83, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 
        0 4px 12px rgba(0, 200, 83, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: space-between;
    padding: 12px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: visible;
}

.product-title-link {
    text-decoration: none;
    color: white;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 4px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    min-height: 38px;
    flex-shrink: 0;
}

.product-title-link:hover .product-title {
    color: var(--secondary-light);
    text-shadow: 0 2px 6px rgba(0, 134, 229, 0.3);
}

.product-description {
    display: none;
}

.product-features {
    display: none;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-feature svg {
    color: var(--success);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.product-footer {
    padding-top: 8px;
    margin-top: auto;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    flex-shrink: 0;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
}

.price-value {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.price-currency {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.sale-badge {
    background: var(--warning);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.add-to-cart-button {
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 10px;
    gap: 6px;
    flex-shrink: 0;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
    display: flex !important;
    align-items: center;
    margin-top: 8px;
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.95) 0%,
        rgba(0, 163, 255, 0.95) 100%
    ) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 12px rgba(0, 134, 229, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-button:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 163, 255, 0.95) 0%,
        rgba(0, 134, 229, 0.95) 100%
    );
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 134, 229, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.add-to-cart-button svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* CTA Section */
.cta-section {
    padding: 60px 20px;
    margin-bottom: 40px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 134, 229, 0.2) 0%, rgba(0, 163, 255, 0.2) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 134, 229, 0.3);
}

.cta-button:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 134, 229, 0.4);
}

/* Modern Footer */
.modern-footer {
    background: rgba(0, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary-light);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-light);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-enamad {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-enamad img {
    max-width: 120px;
    width: 120px;
    height: 120px;
    display: block !important;
    border-radius: 8px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    object-fit: contain;
    background: transparent;
}

.footer-enamad img:hover {
    transform: scale(1.05);
}

.footer-enamad a {
    display: block !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: fit-content;
    margin: 0;
}

.footer-enamad a:hover {
    opacity: 0.9;
}

.footer-enamad iframe {
    max-width: 120px;
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 8px;
    border: none;
}

@media (max-width: 768px) {
    .footer-enamad {
        justify-content: center;
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .footer-enamad img {
        max-width: 100px;
        width: 100px !important;
        height: 100px !important;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 120px;
    left: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.floating-cart-btn {
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.95) 0%,
        rgba(0, 163, 255, 0.95) 50%,
        rgba(0, 134, 229, 0.95) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    box-shadow: 
        0 8px 32px rgba(0, 134, 229, 0.4),
        0 4px 16px rgba(0, 134, 229, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-cart-btn:hover {
    box-shadow: 
        0 12px 40px rgba(0, 134, 229, 0.5),
        0 6px 20px rgba(0, 134, 229, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.floating-whatsapp-btn {
    background: linear-gradient(
        135deg,
        rgba(37, 211, 102, 0.95) 0%,
        rgba(18, 140, 126, 0.95) 50%,
        rgba(37, 211, 102, 0.95) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    box-shadow: 
        0 8px 32px rgba(37, 211, 102, 0.4),
        0 4px 16px rgba(18, 140, 126, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-whatsapp-btn:hover {
    box-shadow: 
        0 12px 40px rgba(37, 211, 102, 0.5),
        0 6px 20px rgba(18, 140, 126, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.floating-call-btn {
    background: linear-gradient(
        135deg,
        rgba(147, 51, 234, 0.95) 0%,
        rgba(124, 58, 237, 0.95) 50%,
        rgba(147, 51, 234, 0.95) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    box-shadow: 
        0 8px 32px rgba(147, 51, 234, 0.4),
        0 4px 16px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-call-btn:hover {
    box-shadow: 
        0 12px 40px rgba(147, 51, 234, 0.5),
        0 6px 20px rgba(124, 58, 237, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.floating-btn-icon {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-btn:hover .floating-btn-icon {
    transform: scale(1.1);
}

.floating-btn-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-btn-tooltip {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

/* Bottom Navigation (Mobile Only) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 26, 46, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 0;
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 997;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 12px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--secondary-light);
    background: rgba(255, 255, 255, 0.1);
}

.bottom-nav-icon {
    width: 24px;
    height: 24px;
}

.bottom-nav-label {
    font-size: 11px;
    font-weight: 600;
}

.bottom-nav-category-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Mobile Category Submenu - Standard */
.mobile-category-submenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mobile-category-submenu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Hide floating buttons when submenu is active */
body.submenu-active .floating-actions {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-submenu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-category-submenu.active .mobile-submenu-backdrop {
    opacity: 1;
}

.mobile-submenu-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-category-submenu.active .mobile-submenu-content {
    transform: translateY(0);
}

.mobile-submenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-submenu-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.mobile-submenu-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-submenu-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-submenu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-submenu-item:hover {
    background: #e9ecef;
    border-color: rgba(0, 134, 229, 0.2);
}

.mobile-submenu-item:active {
    background: #dee2e6;
}

.mobile-submenu-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(0, 134, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.mobile-submenu-item-icon svg {
    width: 22px;
    height: 22px;
}

.mobile-submenu-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-submenu-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.mobile-submenu-item-desc {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
}

.mobile-submenu-item-arrow {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #999999;
    transition: transform 0.2s ease;
}

.mobile-submenu-item:hover .mobile-submenu-item-arrow {
    color: var(--secondary);
    transform: translateX(-3px);
}

/* Scrollbar styling for submenu */
.mobile-submenu-content::-webkit-scrollbar {
    width: 4px;
}

.mobile-submenu-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-submenu-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.mobile-submenu-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive Design */
@media (min-width: 1024px) {
    .desktop-search-form {
        display: flex !important;
    }
    
    .desktop-menu-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    header > section {
        justify-content: space-between;
    }
    
    .header-actions {
        display: flex !important;
    }
    
    .bottom-nav {
        display: none !important;
    }
    
    .mobile-category-submenu {
        display: none !important;
    }
    
    .floating-actions {
        display: flex;
    }
    
    /* Banner width for desktop - full page width */
    #slideshow {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 1023px) {
    .desktop-menu-btn,
    .desktop-menu {
        display: none !important;
    }
    
    header {
        padding: 12px 16px;
    }
    
    header > section {
        justify-content: center;
        gap: 12px;
    }
    
    .parts-category-section {
        padding: 16px;
    }
    
    .parts-category-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .parts-menu-icon {
        width: 18px;
        height: 18px;
    }
    
    .parts-submenu {
        min-width: 200px;
        right: 0;
    }
    
    .parts-submenu-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .parts-submenu-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex !important;
    }
    
    .parts-category-section {
        padding: 12px;
    }
    
    .parts-category-btn {
        padding: 9px 14px;
        font-size: 13px;
        gap: 6px;
    }
    
    .parts-menu-icon {
        width: 16px;
        height: 16px;
    }
    
    .parts-submenu {
        min-width: 180px;
    }
    
    .parts-submenu-item {
        padding: 9px 12px;
        font-size: 12px;
        gap: 10px;
    }
    
    .parts-submenu-icon {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .parts-category-section {
        padding: 10px 8px;
    }
    
    .parts-category-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 5px;
        border-radius: 12px;
    }
    
    .parts-menu-icon {
        width: 15px;
        height: 15px;
    }
    
    .parts-submenu {
        min-width: 160px;
        border-radius: 16px;
    }
    
    .parts-submenu-content {
        padding: 10px;
        gap: 5px;
    }
    
    .parts-submenu-item {
        padding: 8px 10px;
        font-size: 11px;
        gap: 8px;
        border-radius: 10px;
    }
    
    .parts-submenu-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}
    
    .bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .floating-actions {
        display: flex;
        bottom: 100px;
    }
    
    /* Banner for tablet/mobile */
    #slideshow {
        width: calc(100% - 16px);
        margin: 8px auto 0;
        border-radius: 12px;
    }
    
    .category-cards {
        padding: 16px;
        margin-top: 16px;
        margin-bottom: 30px;
    }
    
    .category-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
        overflow: visible;
    }
    
    .category-card {
        padding: 12px;
    }
    
    .category-image-wrapper {
        height: 80px;
    }
    
    .category-title {
        font-size: 13px;
    }
    
    .product-section {
        padding: 30px 16px;
        margin-bottom: 30px;
    }
    
    .products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
    
    .product-card-inner {
        padding: 16px;
    }
    
    .product-image-wrapper {
        height: 180px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-description {
        display: none;
    }
    
    .price-value {
        font-size: 20px;
    }
    
    .cta-section {
        padding: 40px 16px;
        margin-bottom: 30px;
    }
    
    .cta-container {
        padding: 30px 24px;
    }
    
    .modern-footer {
        padding: 40px 16px 20px;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
}

/* Responsive Subcategory Filters */
@media (max-width: 768px) {
    .products-filters-section {
        padding: 12px;
    }
    
    .filters-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .price-range-display {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .price-min,
    .price-max {
        font-size: 13px;
    }
    
    .sort-options {
        gap: 8px;
    }
    
    .sort-option {
        padding: 8px 14px;
        font-size: 13px;
        flex: 1;
        min-width: calc(50% - 4px);
    }
    
    .apply-filters-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .subcategory-filters {
        padding: 0 12px;
        margin-bottom: 32px;
    }
    
    .subcategory-filters-wrapper {
        padding: 20px 16px;
        border-radius: 20px;
    }
    
    .subcategory-filters-header {
        margin-bottom: 20px;
    }
    
    .subcategory-filters-title {
        font-size: 15px;
        padding: 10px 18px;
        border-radius: 14px;
    }
    
    .subcategory-filters-title svg {
        width: 18px;
        height: 18px;
    }
    
    .subcategory-filters-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .subcategory-filter-btn {
        padding: 16px 12px;
        min-height: 110px;
        gap: 10px;
        border-radius: 16px;
    }
    
    .filter-icon {
        width: 48px;
        height: 48px;
        font-size: 28px;
        border-radius: 14px;
    }
    
    .filter-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .filter-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .subcategory-filters {
        padding: 0 8px;
        margin-bottom: 24px;
    }
    
    .subcategory-filters-wrapper {
        padding: 16px 12px;
        border-radius: 18px;
    }
    
    .subcategory-filters-header {
        margin-bottom: 16px;
    }
    
    .subcategory-filters-title {
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 12px;
    }
    
    .subcategory-filters-title svg {
        width: 16px;
        height: 16px;
    }
    
    .subcategory-filters-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .subcategory-filter-btn {
        padding: 14px 10px;
        min-height: 100px;
        gap: 8px;
        border-radius: 14px;
    }
    
    .filter-icon {
        width: 44px;
        height: 44px;
        font-size: 24px;
        border-radius: 12px;
    }
    
    .filter-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .filter-text {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 12px;
    }
    
    .header-logo {
        width: 70px;
        height: 70px;
    }
    
    .header-name {
        font-size: 20px;
    }
    
    /* Banner for mobile */
    #slideshow {
        width: calc(100% - 12px);
        margin: 6px auto 0;
        border-radius: 10px;
    }
    
    .category-cards {
        padding: 12px;
        margin-top: 12px;
        margin-bottom: 24px;
    }
    
    .category-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 10px;
        overflow: visible;
    }
    
    .category-card {
        padding: 10px;
    }
    
    .category-image-wrapper {
        height: 70px;
        margin-bottom: 8px;
    }
    
    .category-title {
        font-size: 12px;
        margin-top: 4px;
    }
    
    .product-section {
        padding: 24px 12px;
        margin-bottom: 24px;
    }
    
    .product-section-header {
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .product-section-title {
        font-size: 18px;
    }
    
    .product-section-link {
        font-size: 13px;
    }
    
    .products {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 12px;
        padding: 0 12px 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .products::-webkit-scrollbar {
        display: none;
    }
    
    .product-card {
        border-radius: 14px;
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        min-height: 320px;
        flex-shrink: 0;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
    }
    
    .product-card-inner {
        padding: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
        flex: 1;
        overflow: visible;
    }
    
    .product-image-wrapper {
        height: 160px;
        min-height: 160px;
        max-height: 160px;
        margin-bottom: 0;
        border-radius: 14px 14px 0 0;
        flex-shrink: 0;
    }
    
    .product-image {
        padding: 12px;
    }
    
    .product-info {
        padding: 12px;
        gap: 6px;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: visible;
        justify-content: space-between;
    }
    
    .product-title {
        font-size: 13px;
        line-height: 1.4;
        margin: 0 0 4px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 36px;
        flex-shrink: 0;
    }
    
    .product-description {
        display: none;
    }
    
    .product-features {
        display: none;
    }
    
    .product-footer {
        padding-top: 8px;
        margin-top: auto;
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
        flex-shrink: 0;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
    }
    
    .product-price > div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
    }
    
    .product-price > div > div:first-child {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }
    
    .product-price > div > div:last-child {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        font-size: 11px;
    }
    
    .product-price > div > div:last-child span:first-child {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: line-through;
    }
    
    .price-value {
        font-size: 15px;
        font-weight: 700;
        white-space: nowrap;
    }
    
    .price-currency {
        font-size: 10px;
        flex-shrink: 0;
    }
    
    .sale-badge {
        font-size: 9px;
        padding: 2px 6px;
        flex-shrink: 0;
    }
    
    .add-to-cart-button {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 10px;
        gap: 6px;
        flex-shrink: 0;
        justify-content: center;
        white-space: nowrap;
        width: 100%;
        display: flex !important;
        align-items: center;
        margin-top: 8px;
        background: linear-gradient(
            135deg,
            rgba(0, 134, 229, 0.95) 0%,
            rgba(0, 163, 255, 0.95) 100%
        ) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: white !important;
        text-decoration: none;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 
            0 4px 12px rgba(0, 134, 229, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 40px;
    }
    
    .add-to-cart-button svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        display: block;
    }
    
    .add-to-cart-button span {
        font-size: 11px;
        flex-shrink: 0;
        display: inline-block;
    }
    
    .product-category-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .product-stock-warning,
    .product-stock-out,
    .product-status-badge {
        bottom: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .cta-section {
        padding: 30px 12px;
        margin-bottom: 24px;
    }
    
    .cta-container {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .modern-footer {
        padding: 30px 12px 16px;
        margin-top: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .footer-section h4.footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-logo-image {
        width: 45px;
        height: 45px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-bottom {
        padding-top: 16px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .floating-actions {
        bottom: 90px;
        left: 16px;
        gap: 14px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
    }
    
    .floating-btn-icon {
        width: 24px;
        height: 24px;
    }
    
    body {
        padding-bottom: 65px;
    }
    
    .bottom-nav {
        padding: 10px 0;
    }
    
    .bottom-nav-item {
        padding: 6px 8px;
        gap: 3px;
    }
    
    .bottom-nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .bottom-nav-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        width: 60px;
        height: 60px;
    }
    
    .header-name {
        font-size: 16px;
    }
    
    .products {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        padding: 0 12px 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .products::-webkit-scrollbar {
        display: none;
    }
    
    .product-card {
        width: 150px;
        min-width: 150px;
        max-width: 150px;
        min-height: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
    }
    
    .product-card-inner {
        overflow: visible;
    }
    
    .product-image-wrapper {
        height: 150px;
        min-height: 150px;
        max-height: 150px;
        flex-shrink: 0;
    }
    
    .product-image {
        padding: 10px;
    }
    
    .product-info {
        padding: 10px;
        gap: 6px;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: visible;
        justify-content: space-between;
    }
    
    .product-title {
        font-size: 12px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 32px;
        margin: 0 0 4px 0;
        flex-shrink: 0;
    }
    
    .product-description {
        display: none;
    }
    
    .product-footer {
        padding-top: 6px;
        gap: 6px;
        margin-top: auto;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        flex-shrink: 0;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
    }
    
    .product-price > div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
    }
    
    .product-price > div > div:first-child {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }
    
    .product-price > div > div:last-child {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        font-size: 10px;
    }
    
    .product-price > div > div:last-child span:first-child {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: line-through;
    }
    
    .price-value {
        font-size: 14px;
        white-space: nowrap;
    }
    
    .price-currency {
        font-size: 9px;
        flex-shrink: 0;
    }
    
    .sale-badge {
        font-size: 8px;
        padding: 2px 5px;
        flex-shrink: 0;
    }
    
    .add-to-cart-button {
        padding: 10px 14px;
        font-size: 12px;
        flex-shrink: 0;
        white-space: nowrap;
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
        background: linear-gradient(
            135deg,
            rgba(0, 134, 229, 0.95) 0%,
            rgba(0, 163, 255, 0.95) 100%
        ) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: white !important;
        text-decoration: none;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 
            0 4px 12px rgba(0, 134, 229, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 40px;
        border-radius: 10px;
        gap: 6px;
    }
    
    .add-to-cart-button svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
        display: block;
    }
    
    .add-to-cart-button span {
        display: inline-block;
    }
    
    .floating-actions {
        bottom: 85px;
        left: 14px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
    }
    
    .floating-btn-icon {
        width: 22px;
        height: 22px;
    }
}
/* Repair Form Styles - Minimal & Professional */
.repair-form-section {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.repair-form-container {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.repair-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.repair-title {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.repair-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.repair-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.repair-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.repair-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.repair-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.required {
    color: var(--warning);
}

.repair-input,
.repair-select,
.repair-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-family);
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.repair-input::placeholder,
.repair-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.repair-input:focus,
.repair-select:focus,
.repair-textarea:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 134, 229, 0.2);
}

.repair-textarea {
    resize: vertical;
    min-height: 80px;
}

.repair-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}

.repair-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(
        135deg,
        rgba(0, 134, 229, 0.9) 0%,
        rgba(0, 163, 255, 0.9) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(0, 134, 229, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

.repair-submit-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 163, 255, 0.95) 0%,
        rgba(0, 134, 229, 0.95) 100%
    );
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 134, 229, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

/* Responsive Repair Form */
@media (max-width: 768px) {
    .repair-form-section {
        padding: 24px 16px;
    }
    
    .repair-form-container {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .repair-title {
        font-size: 24px;
    }
    
    .repair-subtitle {
        font-size: 13px;
    }
    
    .repair-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .repair-input,
    .repair-select,
    .repair-textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .repair-submit-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Loading Screen - Professional */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 50%, var(--primary-base) 100%);
    background-attachment: fixed;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.loading-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 8px;
}

.loading-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: loadingLogoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(0, 134, 229, 0.4));
    position: relative;
    z-index: 2;
}

.loading-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 134, 229, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: loadingGlow 2s ease-in-out infinite;
    z-index: 1;
}

.loading-site-name {
    font-size: 36px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    animation: loadingFadeIn 1s ease-out;
}

.loading-site-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
    animation: loadingFadeIn 1.2s ease-out;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.spinner-ring {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--secondary-light);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: loadingSpin 1s linear infinite;
}

@keyframes loadingLogoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes loadingGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes loadingFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .loading-logo-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .loading-logo-glow {
        width: 120px;
        height: 120px;
    }
    
    .loading-site-name {
        font-size: 28px;
    }
    
    .loading-site-tagline {
        font-size: 14px;
    }
    
    /* Products Filters - Mobile */
    .products-filters-section {
        padding: 16px 12px;
        margin-bottom: 24px;
    }
    
    .filters-container {
        padding: 18px;
        gap: 20px;
        border-radius: 16px;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .filter-header {
        margin-bottom: 14px;
    }
    
    .filter-title {
        font-size: 15px;
    }
    
    .price-range-display {
        padding: 12px 16px;
    }
    
    .price-min,
    .price-max {
        font-size: 14px;
    }
    
    .price-separator {
        font-size: 12px;
    }
    
    .price-range-slider {
        margin: 16px 0;
    }
    
    .sort-options {
        gap: 8px;
    }
    
    .sort-option {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .apply-filters-btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 12px;
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .products-filters-section {
        padding: 12px 10px;
    }
    
    .filters-container {
        padding: 16px;
        gap: 16px;
        border-radius: 14px;
    }
    
    .filter-header {
        margin-bottom: 12px;
    }
    
    .filter-title {
        font-size: 14px;
    }
    
    .price-range-display {
        padding: 10px 14px;
    }
    
    .price-min,
    .price-max {
        font-size: 13px;
    }
    
    .sort-options {
        gap: 6px;
    }
    
    .sort-option {
        padding: 9px 14px;
        font-size: 12px;
    }
    
    .apply-filters-btn {
        padding: 11px 20px;
        font-size: 13px;
    }
}

/* JavaScript Toggle Functions */
script {
    display: none;
}
