

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(105deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.45) 45%, rgba(30, 41, 59, 0.35) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-background .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    z-index: 0;
    display: block;
    filter: contrast(1.05) saturate(1.08);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-background .hero-video,
    .hero-video-iframe {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
    }
}

.hero-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-youtube::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #93c5fd;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(147, 197, 253, 0.35);
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 680px;
    letter-spacing: 0.2px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-outline.btn-large {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline.btn-large:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #3b82f6);
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3b82f6;
    border-bottom: 2px solid #3b82f6;
    transform: rotate(45deg);
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.categories-section .section-header {
    margin-bottom: 40px;
}

.categories-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1f2937 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
}

.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.categories-section {
    padding: 120px 0;
    background: white;
}

.categories-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
    padding-bottom: 10px;
    width: 100%;
}

.categories-grid::-webkit-scrollbar {
    height: 8px;
}

.categories-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.categories-grid::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (min-width: 1400px) {
    .category-card-modern {
        min-width: 220px;
        max-width: 280px;
        width: 220px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .category-card-modern {
        min-width: 200px;
        max-width: 250px;
        width: 200px;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .category-card-modern {
        min-width: 180px;
        max-width: 220px;
        width: 180px;
    }
}

.category-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 200px;
    max-width: 250px;
    width: 200px;
}

.category-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.category-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.category-card-modern:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-overlay {
    opacity: 1;
}

.category-btn {
    padding: 12px 24px;
    background: white;
    color: #2563eb;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
}

.category-placeholder i {
    font-size: 64px;
    color: #9ca3af;
    opacity: 0.5;
}

.category-content {
    padding: 20px 15px;
    text-align: center;
}

.category-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1f2937;
    text-align: center;
}

.category-subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}

.subcategory-link {
    display: inline-block;
    padding: 4px 10px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.subcategory-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.category-content h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-content h3 a:hover {
    color: #2563eb;
}

.category-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 8px;
}

.category-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 13px;
    margin: 8px 0 0 0;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card-modern-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.product-card-modern-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-modern-link:hover .product-card-modern {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #e0e7ff;
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-modern-link:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.product-card-modern-link:hover .product-overlay {
    opacity: 1;
}

.product-overlay-content {
    text-align: center;
    padding: 20px;
}

.product-login-prompt {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.product-login-prompt i {
    font-size: 32px;
    margin-bottom: 8px;
}

.product-login-prompt span {
    font-size: 16px;
    font-weight: 600;
}

.product-quick-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.product-quick-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    pointer-events: auto;
    position: relative;
    z-index: 11;
}

.product-quick-btn:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.product-quick-btn.out-of-stock-btn {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-quick-btn.out-of-stock-btn:hover {
    background: #e5e7eb;
    color: #9ca3af;
    transform: none;
    box-shadow: none;
}

.product-quick-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge i {
    font-size: 10px;
}

.badge-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.badge-stock.in-stock {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge-stock.out-stock {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.badge-sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.badge-discount {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-left: 10px;
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content h3 {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card-modern-link:hover .product-content h3 {
    color: #2563eb;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.price-hidden {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    
    .products-section {
        padding: 40px 0 !important;
    }

    .section-header {
        margin-bottom: 25px !important;
        padding: 0 15px;
    }

    .section-header .section-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }

    .section-footer {
        margin-top: 25px;
        padding: 0 15px;
    }

    .section-footer .btn {
        width: 100%;
        justify-content: center;
    }

    
    .hero-section {
        min-height: 500px !important;
        height: auto !important;
        padding: 60px 0 !important;
    }

    .hero-content {
        padding: 20px 0 !important;
    }

    .hero-content .container {
        padding: 0 15px;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .btn-large {
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }

    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    
    .categories-section {
        padding: 40px 0 !important;
    }

    .categories-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        padding: 0 15px;
        margin-top: 30px;
        overflow-x: auto !important;
    }

    .category-card-modern {
        min-width: 160px !important;
        max-width: 180px !important;
        width: 160px !important;
        flex: 0 0 auto !important;
    }

    .category-card-modern {
        border-radius: 12px;
    }

    .category-image {
        height: 150px !important;
        padding: 20px !important;
    }

    .category-image img {
        object-fit: contain !important;
    }

    .category-content {
        padding: 15px !important;
    }

    .category-content h3 {
        font-size: 0.95rem !important;
        margin-bottom: 5px;
    }

    .category-description {
        font-size: 0.8rem;
        display: none;
    }

    .category-overlay {
        opacity: 0;
    }

    .category-card-modern:hover .category-overlay {
        opacity: 0.9;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    
    .products-grid-modern {
        grid-template-columns: 1fr !important;
        
        gap: 12px !important;
        padding: 0 15px;
    }

    .product-card-modern {
        border-radius: 12px;
    }

    .product-image {
        height: 160px !important;
    }

    .product-content {
        padding: 12px !important;
    }

    .product-content h3 {
        font-size: 0.85rem !important;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 0.95rem !important;
    }

    .price-hidden {
        font-size: 0.8rem;
    }

    .product-badges {
        top: 8px;
        left: 8px;
        gap: 5px;
    }

    .badge {
        padding: 4px 8px;
        font-size: 9px;
    }

    .product-overlay-content {
        padding: 10px;
    }

    .product-quick-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .product-login-prompt i {
        font-size: 24px;
    }

    .product-login-prompt span {
        font-size: 12px;
    }

    
    .cta-section {
        padding: 40px 0 !important;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
        gap: 20px;
    }

    .cta-text h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px;
    }

    .cta-text p {
        font-size: 0.9rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 640px) {

    
    .products-section {
        padding: 30px 0 !important;
    }

    .section-header {
        margin-bottom: 20px !important;
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    .section-header p {
        font-size: 0.85rem !important;
    }

    
    .hero-section {
        min-height: 450px !important;
        padding: 50px 0 !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-description {
        font-size: 0.85rem !important;
    }

    .hero-stats {
        gap: 15px;
        margin-top: 20px;
    }

    .stat-item {
        min-width: 70px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    
    .categories-section {
        padding: 30px 0 !important;
    }

    .categories-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        overflow-x: auto !important;
    }

    .category-card-modern {
        min-width: 140px !important;
        max-width: 160px !important;
        width: 140px !important;
        flex: 0 0 auto !important;
    }

    .category-image {
        height: 130px !important;
        padding: 15px !important;
    }

    .category-image img {
        object-fit: contain !important;
    }

    .category-content {
        padding: 12px !important;
    }

    .category-content h3 {
        font-size: 0.85rem !important;
    }

    
    .products-grid-modern {
        grid-template-columns: 1fr !important;
        
        gap: 10px !important;
    }

    .product-image {
        height: 140px !important;
    }

    .product-content {
        padding: 10px !important;
    }

    .product-content h3 {
        font-size: 0.8rem !important;
    }

    .product-price {
        font-size: 0.9rem !important;
    }

    
    .cta-section {
        padding: 30px 0 !important;
    }

    .cta-text h2 {
        font-size: 1.3rem !important;
    }

    
    .team-section {
        padding: 30px 0 !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        
        gap: 15px !important;
        padding: 0 15px;
    }

    .team-card {
        padding: 18px !important;
    }

    .team-card img,
    .team-card>div[style*="width: 150px"] {
        width: 90px !important;
        height: 90px !important;
    }

    .team-card h3 {
        font-size: 0.95rem !important;
    }

    .team-card p {
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
        height: auto;
        padding: 60px 0;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-item {
        text-align: center;
    }

    .btn-large {
        padding: 12px 18px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-image {
        height: 180px;
    }

    .product-quick-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .product-login-prompt i {
        font-size: 24px;
    }

    .product-login-prompt span {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-image {
        height: 200px;
    }

    .categories-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px;
        overflow-x: auto !important;
    }

    .category-card-modern {
        min-width: 140px !important;
        max-width: 160px !important;
        width: 140px !important;
        flex: 0 0 auto !important;
    }

    .category-image {
        height: 180px;
    }

    .category-content {
        padding: 15px;
    }

    .category-content h3 {
        font-size: 1rem;
    }

    .category-subcategories {
        gap: 4px;
    }

    .subcategory-link {
        font-size: 10px;
        padding: 3px 7px;
    }

    
    .cta-section {
        padding: 30px 0 !important;
    }

    .cta-content {
        padding: 0 12px;
    }

    .cta-text h2 {
        font-size: 1.2rem !important;
    }

    .cta-text p {
        font-size: 0.85rem;
    }

    
    .team-section {
        padding: 30px 0 !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 12px;
    }

    .team-card {
        padding: 20px !important;
    }

    .team-card img,
    .team-card>div[style*="width: 150px"] {
        width: 120px !important;
        height: 120px !important;
    }

    .team-card h3 {
        font-size: 1.1rem !important;
    }

    .team-card p {
        font-size: 13px !important;
    }

    
    .container {
        padding: 0 12px !important;
    }

    
    .products-section {
        padding: 25px 0 !important;
    }

    .section-header {
        margin-bottom: 15px !important;
        padding: 0 12px;
    }

    .section-header .section-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .section-header h2 {
        font-size: 1.25rem !important;
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }

    .section-footer {
        margin-top: 20px;
        padding: 0 12px;
    }

    
    .hero-section {
        min-height: 400px !important;
        padding: 40px 0 !important;
    }

    .hero-content {
        padding: 15px 0 !important;
    }

    .hero-content .container {
        padding: 0 12px;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 !important;
    }

    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .hero-description {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn-large {
        padding: 11px 18px;
        font-size: 13px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 18px;
    }

    .stat-item {
        flex: 1;
        min-width: 60px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    
    .categories-section {
        padding: 25px 0 !important;
    }

    .categories-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        padding: 0 12px;
        overflow-x: auto !important;
    }

    .category-card-modern {
        min-width: 120px !important;
        max-width: 140px !important;
        width: 120px !important;
        flex: 0 0 auto !important;
    }

    .category-card-modern {
        border-radius: 10px;
    }

    .category-image {
        height: 120px !important;
        padding: 12px !important;
    }

    .category-image img {
        object-fit: contain !important;
    }

    .category-content {
        padding: 10px !important;
    }

    .category-content h3 {
        font-size: 0.8rem !important;
        line-height: 1.2;
    }

    .category-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    
    .products-grid-modern {
        grid-template-columns: 1fr !important;
        
        gap: 8px !important;
        padding: 0 12px;
    }

    .product-card-modern {
        border-radius: 10px;
    }

    .product-image {
        height: 130px !important;
    }

    .product-content {
        padding: 8px !important;
    }

    .product-content h3 {
        font-size: 0.75rem !important;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .product-price {
        font-size: 0.85rem !important;
    }

    .price-hidden {
        font-size: 0.75rem;
    }

    .product-badges {
        top: 6px;
        left: 6px;
        gap: 4px;
    }

    .badge {
        padding: 3px 6px;
        font-size: 8px;
    }

    .product-overlay-content {
        padding: 8px;
    }

    .product-quick-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .product-login-prompt i {
        font-size: 20px;
    }

    .product-login-prompt span {
        font-size: 11px;
    }

    
    .cta-section {
        padding: 25px 0 !important;
    }

    .cta-content {
        padding: 0 12px;
        gap: 15px;
    }

    .cta-text h2 {
        font-size: 1.2rem !important;
        margin-bottom: 8px;
    }

    .cta-text p {
        font-size: 0.8rem;
    }

    .cta-actions {
        gap: 10px;
    }

    .cta-actions .btn {
        padding: 11px 18px;
        font-size: 13px;
    }

    
    .team-section {
        padding: 25px 0 !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 25px !important;
        padding: 0 12px;
    }

    .team-card {
        padding: 15px !important;
    }

    .team-card img,
    .team-card>div[style*="width: 150px"] {
        width: 100px !important;
        height: 100px !important;
    }

    .team-card h3 {
        font-size: 1rem !important;
    }

    .team-card p {
        font-size: 12px !important;
    }

    
    .feature-card {
        padding: 20px 12px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 360px) {
    .products-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .categories-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        overflow-x: auto !important;
    }

    .category-card-modern {
        min-width: 120px !important;
        max-width: 140px !important;
        width: 120px !important;
        flex: 0 0 auto !important;
    }

    .product-image {
        height: 180px !important;
    }

    .category-image {
        height: 150px !important;
        padding: 15px !important;
    }

    .category-image img {
        object-fit: contain !important;
    }

    .hero-title {
        font-size: 1.2rem !important;
    }

    .section-header h2 {
        font-size: 1.1rem !important;
    }

    
    .team-section {
        padding: 20px 0 !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0 10px;
    }

    .team-card {
        padding: 15px !important;
    }

    .team-card img,
    .team-card>div[style*="width: 150px"] {
        width: 90px !important;
        height: 90px !important;
    }

    .team-card h3 {
        font-size: 0.95rem !important;
    }

    .team-card p {
        font-size: 11px !important;
    }

    
    .cta-section {
        padding: 20px 0 !important;
    }

    .cta-text h2 {
        font-size: 1.1rem !important;
    }

    .cta-text p {
        font-size: 0.75rem;
    }

    .cta-actions .btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}