
/* ENTIRELY RESPONSIVE FIXES */
* { max-width: 100vw; box-sizing: border-box; }
body { overflow-x: hidden; }
.hero-content { width: 100%; display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }
.hero-text { flex: 1; }
.hero-image { flex: 1; position: relative !important; right: auto !important; top: auto !important; transform: none !important; opacity: 1 !important; display: block !important; }

@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; padding: 40px 20px; }
    .hero-image { width: 250px !important; margin: 20px auto !important; }
    .footer-content { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Hide scrollbar but allow scrolling */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

@media (max-width: 575px) {
    .hero-text h1 { font-size: 28px !important; }
    .hero-image { width: 180px !important; }
    .footer-content { grid-template-columns: 1fr !important; }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    color: white;
    padding-top: 70px;
}

/* ========== HERO SECTION ========== */
.hero {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.hero-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #ec4899 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-text {
    max-width: 500px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.shop-now-btn {
    background-color: #4ade80;
    color: #0a0a0a;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.shop-now-btn:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
}

.hero-offer {
    background-color: #dc2626;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
}

.hero-offer-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-offer-model {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-offer-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px dashed rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 10px;
}

.hero-offer-code span {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.hero-offer-discount {
    font-size: 15px;
    font-weight: 600;
}

.hero-offer-min {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
}

.hero-image {
    position: absolute;
    right: 200px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    z-index: 1;
}

/* ========== CATEGORIES ========== */
.categories {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
}

.view-all-link {
    color: #4ade80;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: #22c55e;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.category-item:hover {
    background-color: #2a2a2a;
    transform: translateY(-5px);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.category-name {
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0;
}

/* ========== PRODUCTS ========== */
.products {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.products-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    justify-content: flex-start;
}

.product-card {
    flex: 0 0 300px;
    max-width: 300px;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, background-color 0.3s ease !important;
}

.product-card {
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    flex: 0 0 280px; /* Base width */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, background-color 0.3s ease !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: productIdleSwingLanding 5s ease-in-out infinite;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .products {
        padding: 0 15px !important;
        margin: 30px auto !important;
    }
    .products-grid {
        flex-wrap: nowrap !important;
        display: flex !important;
        flex-direction: row !important;
        padding: 15px 0 !important;
        gap: 16px !important;
        overflow-x: auto !important;
        scroll-behavior: smooth;
        justify-content: flex-start !important;
    }
    
    @media (min-width: 768px) {
        .products-grid {
            justify-content: center !important;
            gap: 24px !important;
        }
    }

    .product-card {
        flex: 0 0 120px !important;
        height: auto !important;
        min-height: 180px !important;
        padding: 12px !important;
        border-radius: 12px !important;
        background-color: #1a1a1a !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        box-shadow: none !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    @media (min-width: 576px) {
        .product-card { flex: 0 0 150px !important; min-height: 220px !important; }
    }
    @media (min-width: 768px) {
        .product-card { flex: 0 0 180px !important; min-height: 250px !important; padding: 20px !important; }
    }

    .product-image {
        height: 80px !important;
        width: 100% !important;
        object-fit: contain !important;
        margin-bottom: 10px !important;
        border-radius: 8px !important;
        filter: none !important;
        background-color: transparent !important;
        transition: transform 0.3s ease !important;
    }
    
    @media (min-width: 576px) { .product-image { height: 100px !important; } }
    @media (min-width: 768px) { .product-image { height: 130px !important; } }

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

    .product-name {
        position: static !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        color: #e0e0e0 !important;
        padding: 0 !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-align: center !important;
        border: none !important;
        margin-top: 5px !important;
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        box-shadow: none !important;
    }
    
    @media (min-width: 576px) { .product-name { font-size: 13px !important; } }

    .product-price, 
    .buy-now-btn, 
    .product-badge,
    .wishlist-btn {
        display: none !important;
    }
    .scroll-arrow {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
        display: flex !important;
    }
    
    @media (min-width: 768px) {
        .scroll-arrow { width: 40px !important; height: 40px !important; font-size: 14px !important; }
    }
}

/* Scroll Arrows Styling */
.products-container {
    position: relative;
    width: 100%;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.products-container:hover .scroll-arrow {
    opacity: 1;
    pointer-events: auto;
}

.scroll-arrow:hover {
    background: #4ade80;
    color: #0a0a0a;
    border-color: #4ade80;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

.scroll-arrow.left {
    left: -20px;
}

.scroll-arrow.right {
    right: -20px;
}

@media (max-width: 992px) {
    .scroll-arrow {
        opacity: 0.8;
        pointer-events: auto;
        width: 38px;
        height: 38px;
    }
    .scroll-arrow.left { left: 5px; }
    .scroll-arrow.right { right: 5px; }
}

@keyframes productIdleSwingLanding {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(1deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-4px) rotate(-1deg); }
}

.product-card:hover {
    background-color: rgba(42, 42, 42, 0.9);
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6) !important;
    animation: productHoverSwingLanding 1.8s ease-in-out infinite;
    border-color: var(--accent);
}

@keyframes productHoverSwingLanding {
    0%, 100% { transform: translateY(-12px) scale(1.03) rotate(0deg); }
    25% { transform: translateY(-12px) scale(1.03) rotate(2deg); }
    50% { transform: translateY(-12px) scale(1.03) rotate(0deg); }
    75% { transform: translateY(-12px) scale(1.03) rotate(-2deg); }
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #dc2626;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.product-badge.new {
    background-color: #4ade80;
    color: #0a0a0a;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wishlist-btn:hover {
    background-color: #dc2626;
}

.product-image { 
    max-width: 100%; 
    object-fit: contain;
    width: 100%;
    height: 250px;
    background-color: #111;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

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

.product-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 12px;
}

.buy-now-btn {
    background-color: #4ade80;
    color: #0a0a0a;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-now-btn:hover {
    background-color: #22c55e;
}

/* ========== SCROLL REVEAL UTILITIES ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@media (max-width: 768px) {
    .reveal {
        transition-duration: 0.5s;
        transform: translateY(15px);
    }
}

/* Rest of the footer and other styles ... */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #4ade80;
    font-size: 22px;
}

.footer-description {
    color: #999;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.github:hover {
    background-color: #333;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    border-top: 1px solid #2a2a2a;
    text-align: center;
    color: #666;
    font-size: 12px;
}