/* home.css - Toy Universe — Light Modern Redesign */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* ============================================
   HERO SECTION
   ============================================ */
.home-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 72px 80px;
    margin: 0;
    background: #fefefe;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    min-height: 620px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(72, 219, 251, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.home-hero-content {
    z-index: 1;
    max-width: 600px;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fff0e6, #ffe4cc);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e0722b;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

.home-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: home-badge-pulse 2s ease-in-out infinite;
}

@keyframes home-badge-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.home-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.home-hero-title-accent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: #6b7b8d;
    margin-bottom: 40px;
    line-height: 1.75;
    max-width: 500px;
}

.home-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 52px;
}

.home-hero-btn {
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.home-hero-btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.35);
}

.home-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(255, 107, 107, 0.45);
}

.home-hero-btn-primary svg,
.home-hero-btn-secondary svg {
    width: 18px;
    height: 18px;
}

.home-hero-btn-secondary {
    background: #ffffff;
    color: #1a1a2e;
    border: 2px solid #e8ecf1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.home-hero-btn-secondary:hover {
    border-color: #cdd3dc;
    background: #f8f9fb;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.home-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.home-hero-stat {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 20px;
}

.home-hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, #ff6b6b, #48dbfb);
    border-radius: 4px;
}

.home-hero-stat-number {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.home-hero-stat-label {
    font-size: 0.85rem;
    color: #8e99a9;
    font-weight: 500;
    margin-top: 2px;
}

/* HERO VISUAL (Image) */
.home-hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    z-index: 1;
    justify-self: center;
}

.home-hero-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.12);
    transform: rotate(2deg);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-image-wrapper:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 24px 64px rgba(26, 35, 50, 0.16);
}

.home-hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-image-wrapper:hover .home-hero-image {
    transform: scale(1.05);
}

.home-hero-image-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.home-hero-visual::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.home-hero-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(72, 219, 251, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.home-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.home-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: linear-gradient(135deg, #fff0e6, #ffe4cc);
    border: 1px solid rgba(255, 140, 66, 0.15);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #e0722b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.home-section-title {
    text-align: center;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
}

.home-section-subtitle {
    text-align: center;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #8e99a9;
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif;
    padding: 0 20px;
    line-height: 1.65;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.home-categories {
    padding: 88px 20px;
    margin: 0;
    background: #f7f8fb;
    font-family: 'Outfit', sans-serif;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px 28px;
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.home-category-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #48dbfb);
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0 0 20px 20px;
}

.home-category-item:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(26, 35, 50, 0.08);
}

.home-category-item:hover::before {
    transform: scaleX(1);
}

.home-category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fff0e6, #ffe4cc);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-category-icon svg {
    width: 28px;
    height: 28px;
    color: #e0722b;
}

.home-category-item:hover .home-category-icon {
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.2);
}

.home-category-name {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 650;
    color: #1a1a2e;
    text-align: center;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.home-features {
    padding: 88px 20px;
    margin: 0;
    background: #f7f8fb;
    font-family: 'Outfit', sans-serif;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-feature-card {
    padding: 40px 28px;
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.home-feature-card:nth-child(1)::after {
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
}

.home-feature-card:nth-child(2)::after {
    background: linear-gradient(90deg, #1565c0, #42a5f5);
}

.home-feature-card:nth-child(3)::after {
    background: linear-gradient(90deg, #e65100, #ff9800);
}

.home-feature-card:nth-child(4)::after {
    background: linear-gradient(90deg, #7b1fa2, #ba68c8);
}

.home-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(26, 35, 50, 0.08);
    border-color: transparent;
}

.home-feature-card:hover::after {
    opacity: 1;
}

.home-feature-icon {
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-feature-icon svg {
    width: 30px;
    height: 30px;
}

.home-feature-icon-shield {
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.home-feature-icon-shipping {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.home-feature-icon-price {
    background: linear-gradient(145deg, #fff3e0, #ffe0b2);
    color: #e65100;
}

.home-feature-icon-support {
    background: linear-gradient(145deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.12) rotate(-3deg);
}

.home-feature-title {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.home-feature-text {
    font-size: clamp(0.85rem, 1.5vw, 0.92rem);
    color: #8e99a9;
    line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION (Bestsellers / Latest)
   ============================================ */
.home-bestsellers,
.latest-container {
    padding: 88px 20px;
    margin: 0;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.latest-container {
    background: #fefefe;
}

.home-bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-bestseller-card {
    position: relative;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #edf0f4;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.latest-container .home-bestseller-card {
    background: #ffffff;
}

.home-bestseller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(26, 35, 50, 0.1);
    border-color: transparent;
}

.home-bestseller-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 3px 12px rgba(255, 107, 107, 0.3);
}

.home-bestseller-image {
    margin: 12px 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(145deg, #f8f9fb, #f0f2f5);
    border: 1px solid #edf0f4;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-bestseller-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-bestseller-card:hover .home-bestseller-image img {
    transform: scale(1.08);
}

.home-bestseller-card:hover .home-bestseller-image {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.home-bestseller-placeholder {
    font-size: 3rem;
    color: #c5cdd8;
}

.home-bestseller-name {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.home-bestseller-price {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: #2e7d32;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.home-bestseller-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: 0.01em;
}

.home-bestseller-btn:hover {
    background: #2d3a5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.25);
}

.home-bestsellers-cta {
    text-align: center;
    margin-top: 52px;
}

.home-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid #1a1a2e;
}

.home-view-all-btn:hover {
    background: #1a1a2e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(26, 26, 46, 0.18);
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.home-trust {
    padding: 56px 20px;
    margin: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.home-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            #ff6b6b 0%,
            #feca57 25%,
            #48dbfb 50%,
            #ff9ff3 75%,
            #ff6b6b 100%);
    background-size: 200% 100%;
    animation: trustRainbow 6s linear infinite;
}

@keyframes trustRainbow {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.home-trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.home-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home-trust-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.home-trust-icon svg {
    width: 20px;
    height: 20px;
}

.home-trust-icon-secure {
    background: rgba(46, 196, 182, 0.15);
    color: #48dbfb;
}

.home-trust-icon-verified {
    background: rgba(255, 140, 66, 0.15);
    color: #feca57;
}

.home-trust-icon-guarantee {
    background: rgba(108, 92, 231, 0.15);
    color: #a29bfe;
}

.home-trust-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.home-no-products {
    text-align: center;
    width: 100%;
    padding: 48px 20px;
    color: #8e99a9;
    font-size: 1.05rem;
    grid-column: 1 / -1;
}

/* ============================================
   RESPONSIVE — 1200px
   ============================================ */
@media (max-width: 1200px) {
    .home-hero {
        padding: 60px 48px;
        gap: 36px;
    }

    .home-hero-visual {
        max-width: 380px;
    }

    .home-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
    .home-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 56px 36px;
        gap: 36px;
        min-height: auto;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .home-hero-subtitle {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-buttons {
        justify-content: center;
    }

    .home-hero-stats {
        justify-content: center;
    }

    .home-hero-visual {
        max-width: 340px;
        justify-self: center;
    }

    .home-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    .home-hero {
        padding: 44px 24px;
    }

    .home-hero-btn {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    .home-hero-stats {
        gap: 28px;
    }

    .home-hero-visual {
        max-width: 280px;
    }

    .home-categories,
    .home-features,
    .home-bestsellers,
    .latest-container {
        padding: 64px 16px;
    }

    .home-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .home-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .home-bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .home-feature-icon {
        width: 56px;
        height: 56px;
    }

    .home-bestseller-image {
        width: 130px;
        height: 130px;
    }

    .home-hero-toy {
        padding: 12px;
        border-radius: 14px;
    }

    .home-hero-toy-1 {
        padding: 20px;
    }

    .home-hero-toy-icon {
        width: 32px;
        height: 32px;
    }

    .home-hero-toy-1 .home-hero-toy-icon {
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   RESPONSIVE — 576px
   ============================================ */
@media (max-width: 576px) {
    .home-hero {
        padding: 36px 20px;
    }

    .home-hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .home-hero-btn {
        width: 100%;
    }

    .home-hero-stats {
        width: 100%;
        gap: 16px;
    }

    .home-hero-stat {
        flex: 1;
        min-width: 0;
    }

    .home-hero-visual {
        max-width: 240px;
    }

    .home-categories,
    .home-features,
    .home-bestsellers,
    .latest-container {
        padding: 52px 16px;
    }

    .home-section-header {
        margin-bottom: 40px;
    }

    .home-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .home-category-item {
        padding: 24px 12px 22px;
        border-radius: 16px;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-feature-card {
        padding: 32px 24px;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .home-feature-card::after {
        height: 100%;
        width: 3px;
        top: 0;
        bottom: 0;
        right: auto;
        left: 0;
        border-radius: 20px 0 0 20px;
    }

    .home-feature-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .home-bestsellers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .home-bestseller-card {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .home-bestseller-image {
        width: 100px;
        height: 100px;
    }

    .home-bestseller-btn {
        padding: 9px 22px;
        font-size: 0.82rem;
    }

    .home-trust {
        padding: 40px 16px;
    }

    .home-trust-grid {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .home-trust-item {
        justify-content: center;
        border-radius: 16px;
    }
}

/* ============================================
   RESPONSIVE — 400px
   ============================================ */
@media (max-width: 400px) {
    .home-hero {
        padding: 28px 16px;
    }

    .home-hero-badge {
        padding: 6px 14px;
        font-size: 0.76rem;
    }

    .home-hero-visual {
        max-width: 200px;
    }

    .home-categories-grid {
        gap: 8px;
    }

    .home-category-item {
        padding: 20px 10px;
        border-radius: 14px;
    }

    .home-category-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .home-bestsellers-grid {
        grid-template-columns: 1fr;
    }

    .home-bestseller-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .home-bestseller-image {
        width: 130px;
        height: 130px;
    }

    .home-view-all-btn {
        padding: 13px 32px;
        font-size: 0.95rem;
    }

    .home-feature-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   TOUCH DEVICES
   ============================================ */
@media (hover: none) {

    .home-feature-card:hover,
    .home-bestseller-card:hover,
    .home-category-item:hover,
    .home-trust-item:hover {
        transform: none;
        box-shadow: none;
    }

    .home-hero-btn-primary:hover,
    .home-hero-btn-secondary:hover,
    .home-view-all-btn:hover,
    .home-bestseller-btn:hover {
        transform: none;
    }

    .home-feature-card:active,
    .home-bestseller-card:active,
    .home-category-item:active {
        transform: scale(0.98);
    }

    .home-category-item:hover::before {
        transform: scaleX(0);
    }

    .home-feature-card:hover::after {
        opacity: 0;
    }

    .home-hero-toy:hover {
        transform: translate(-50%, -50%);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {

    .home-hero-visual,
    .home-hero-buttons {
        display: none;
    }

    .home-hero,
    .home-categories,
    .home-features,
    .home-bestsellers,
    .latest-container,
    .home-trust {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}