/* ========================================
   MODERN HOMEPAGE SECTIONS
   Professionell startsida med 6 sektioner
======================================== */

/* ========================================
   1. KATEGORI-GRID 🏪
======================================== */
.category-grid-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.section-header .view-all {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.section-header .view-all:hover {
    color: #764ba2;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.category-card {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.3);
}

.category-icon {
    font-size: 2.4rem;
    margin-bottom: 8px;
    display: block;
}

.category-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
}

.category-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.category-overlay span {
    font-size: 0.95rem;
    font-weight: 600;
}

.hidden-category {
    display: none;
}

.visible-category {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

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

.show-more-categories {
    text-align: center;
    margin-top: 30px;
}

.show-more-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.show-more-btn i {
    margin-left: 8px;
}

/* ========================================
   2.5 SHOP BY STYLE 👟👗📱
   12 kategorier med produktbilder
======================================== */
.shop-by-style-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.shop-by-style-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.style-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.style-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.style-card-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.style-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.style-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.style-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    transition: background 0.3s ease;
}

.style-card:hover .style-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.style-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.style-card-icon {
    font-size: 1.5rem;
}

.style-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Responsiv design för Shop by Style */
@media (max-width: 1200px) {
    .shop-by-style-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .shop-by-style-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .shop-by-style-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .style-card-icon {
        font-size: 1.2rem;
    }
    
    .style-card-name {
        font-size: 0.8rem;
    }
    
    .style-card-info {
        padding: 10px;
    }
}

/* ========================================
   2. SÄSONGSBASERAD BANNER 🎄
======================================== */
.seasonal-banner {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.seasonal-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1%, transparent 1%);
    background-size: 50px 50px;
    animation: snowfall 20s linear infinite;
}

@keyframes snowfall {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.seasonal-banner.birthday {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.seasonal-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.seasonal-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.seasonal-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.seasonal-cta {
    display: inline-block;
    background: white;
    color: #c41e3a;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.seasonal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   3. TRENDING PRODUKTER - Netflix Scroll 🔥
======================================== */
.trending-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.horizontal-scroll-wrapper {
    position: relative;
    margin-top: 30px;
}

.horizontal-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 30px;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f0f0f0;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.trending-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trending-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trending-card a {
    text-decoration: none;
    color: inherit;
}

.trending-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.trending-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.trending-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.quick-view-btn {
    background: white;
    color: #667eea;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.trending-info {
    padding: 20px;
}

.trending-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trending-price .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

/* ========================================
   4. PROMO BANNER 🎯
======================================== */
.promo-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px 20px;
    margin: 60px 0;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.promo-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.promo-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.promo-cta {
    background: white;
    color: #f5576c;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promo-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   5. POPULÄRA PRODUKTER - Featured Grid 🌟
======================================== */
.popular-section {
    max-width: 1600px;
    margin: 60px auto;
    padding: 0 20px;
}

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

/* Responsiva breakpoints för popular-grid */
@media (max-width: 1400px) {
    .popular-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .popular-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.popular-card.featured {
    grid-column: span 1;
    grid-row: span 1;
}

.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.popular-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.popular-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.popular-card.featured .popular-image {
    aspect-ratio: 16/9;
}

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

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

.popular-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.view-product-btn {
    background: white;
    color: #667eea;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.popular-info {
    padding: 12px;
}

.popular-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.popular-category {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.popular-price .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
}

.popular-category {
    display: none;
}

/* ========================================
   6. NYA PRODUKTER ✨
======================================== */
.new-products-section {
    max-width: 1600px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.new-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

/* Responsiva breakpoints för new-products-grid */
@media (max-width: 1400px) {
    .new-products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .new-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.new-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.new-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.new-product-card a {
    text-decoration: none;
    color: inherit;
}

.new-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.new-product-info {
    padding: 12px;
}

.new-product-info h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.new-product-category {
    display: none;
}

.new-product-price .price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #667eea;
}

.view-all-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* ========================================
   RESPONSIV DESIGN
======================================== */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        padding: 30px 15px;
    }

    .category-icon {
        font-size: 3rem;
    }

    .seasonal-content h2 {
        font-size: 2.5rem;
    }

    .seasonal-content p {
        font-size: 1.2rem;
    }

    .trending-card {
        flex: 0 0 200px;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-text h2 {
        font-size: 2rem;
    }

    .popular-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .popular-card.featured .popular-image {
        aspect-ratio: 1;
    }

    .new-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
    }
    
    .category-card {
        padding: 15px 8px;
    }
    
    .category-icon {
        font-size: 1.8rem;
    }
    
    .category-card h3 {
        font-size: 0.65rem;
    }

    .new-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .popular-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .trending-card {
        flex: 0 0 150px;
    }
}

/* ========================================
   7. TRUST BADGES 🛡️
======================================== */
.trust-badges-section {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 25px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.trust-badge-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.trust-badge-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px;
}

.trust-badge-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Trust Badges Responsive */
@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .trust-badge-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 15px;
    }
    
    .trust-badge-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badge-item {
        flex-direction: row;
    }
}

/* ========================================
   EXPLORE PRODUCT TYPES 🛍️
   Produkttyper med bilder - vägledning
======================================== */
.explore-types-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.explore-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.explore-type-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.explore-type-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.explore-type-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.explore-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-type-card:hover .explore-type-image img {
    transform: scale(1.1);
}

.explore-type-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    transition: background 0.3s ease;
}

.explore-type-card:hover .explore-type-overlay {
    background: linear-gradient(
        to top,
        rgba(255, 165, 0, 0.8) 0%,
        rgba(255, 165, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.explore-type-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-type-icon {
    font-size: 1.3rem;
}

/* Responsiv - Tablet */
@media (max-width: 1024px) {
    .explore-types-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

/* Responsiv - Mobil */
@media (max-width: 768px) {
    .explore-types-section {
        margin: 40px auto;
    }
    
    .explore-types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .explore-type-name {
        font-size: 0.85rem;
        padding: 12px 10px;
    }
    
    .explore-type-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .explore-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .explore-type-card {
        border-radius: 12px;
    }
    
    .explore-type-name {
        font-size: 0.75rem;
        padding: 10px 8px;
        gap: 4px;
    }
    
    .explore-type-icon {
        font-size: 0.9rem;
    }
}


/* ========================================
   🔥 DEALS OF THE DAY
======================================== */
.deals-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.deal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.deal-card a {
    text-decoration: none;
    color: inherit;
}

.deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(255,65,108,0.4);
}

.deal-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s;
}

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

.deal-info {
    padding: 15px;
}

.deal-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.deal-prices {
    display: flex;
    align-items: center;
    gap: 10px;
}

.deal-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff416c;
}

.deal-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

@media (max-width: 1024px) {
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .deal-image {
        height: 140px;
    }
    
    .deal-info {
        padding: 10px;
    }
    
    .deal-title {
        font-size: 0.8rem;
    }
}


/* ========================================
   🛍️ CATEGORY SHOWCASE
======================================== */
.category-showcase-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.showcase-card a {
    text-decoration: none;
    color: inherit;
}

.showcase-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s;
}

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

.showcase-info {
    padding: 15px;
}

.showcase-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.showcase-rating {
    font-size: 0.85rem;
    color: #f59e0b;
    margin-bottom: 8px;
}

.showcase-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}

@media (max-width: 1024px) {
    .category-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .category-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .showcase-image {
        height: 140px;
    }
    
    .showcase-info {
        padding: 10px;
    }
    
    .showcase-title {
        font-size: 0.8rem;
    }
}


/* ========================================
   💰 SHOP BY PRICE
======================================== */
.shop-by-price-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.price-ranges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.price-range-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 25px;
    color: white;
    text-align: center;
}

.price-range-header {
    margin-bottom: 20px;
}

.price-range-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.price-range-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.price-range-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.price-range-product {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.price-range-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.price-range-cta {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.price-range-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .price-ranges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-range-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .price-range-products {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   ⭐ TOP RATED
======================================== */
.top-rated-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.top-rated-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.top-rated-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.top-rated-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.top-rated-card a {
    text-decoration: none;
    color: inherit;
}

.top-rated-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.top-rated-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s;
}

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

.top-rated-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(245,158,11,0.4);
}

.top-rated-info {
    padding: 15px;
}

.top-rated-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.top-rated-reviews {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}

.top-rated-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}

@media (max-width: 1024px) {
    .top-rated-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-rated-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .top-rated-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .top-rated-image {
        height: 140px;
    }
    
    .top-rated-info {
        padding: 10px;
    }
    
    .top-rated-title {
        font-size: 0.8rem;
    }
}
