/* HERO */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: -32px -24px 60px;
    padding: 60px 60px;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -10%;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(233,69,96,.15) 0%, transparent 70%);
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: 20%;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.hero-badge {
    display: inline-block;
    background: rgba(233,69,96,.2);
    border: 1px solid rgba(233,69,96,.4);
    color: #e94560;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .hero-title span {
        color: #c9a84c;
    }

.hero-desc {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #e94560;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s;
}

    .btn-hero-primary:hover {
        background: #c9a84c;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(233,69,96,.4);
    }

.btn-hero-outline {
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s;
    backdrop-filter: blur(4px);
}

    .btn-hero-outline:hover {
        border-color: #c9a84c;
        color: #c9a84c;
    }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.hero-stat-lab {
    font-size: 12px;
    color: rgba(255,255,255,.5);
}

/* SECTIONS */
.section {
    margin-bottom: 64px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

    .section-title span {
        color: #e94560;
    }

.section-link {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: border .2s;
    white-space: nowrap;
}

    .section-link:hover {
        border-color: #e94560;
    }

/* CATEGORIES */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.categories-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

    .categories-scroll-wrap::-webkit-scrollbar {
        height: 4px;
    }

    .categories-scroll-wrap::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 4px;
    }

.cat-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1.5px solid var(--border);
    transition: all .25s;
    cursor: pointer;
}

    .cat-card:hover {
        border-color: #e94560;
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(233,69,96,.12);
    }

.cat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f8f4ee, #ede8df);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 28px;
}

.cat-name {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 4px;
}

.cat-count {
    font-size: 11px;
    color: var(--muted);
}

/* PRODUCTS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all .3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 48px rgba(0,0,0,.1);
        border-color: transparent;
    }

.product-card-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f4ee, #ede8df);
    position: relative;
    overflow: hidden;
}

    .product-card-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 20px;
        transition: transform .4s;
    }

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e94560;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: .5px;
}

    .product-badge.sale {
        background: #22c55e;
    }

.quick-add {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .25s;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.quick-add:hover {
    background: #e94560;
    color: #fff;
}

.product-card-body {
    padding: 18px;
}

.product-card-brand {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-main {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
}

.price-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
}

.color-dots {
    display: flex;
    gap: 4px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.1);
}

/* PROMO BANNER */
.promo-banner {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 24px;
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 24px;
}

.promo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.promo-text p {
    color: rgba(255,255,255,.6);
    font-size: 16px;
}

.promo-code {
    background: rgba(201,168,76,.15);
    border: 1.5px dashed #c9a84c;
    border-radius: 12px;
    padding: 16px 28px;
    text-align: center;
    min-width: 180px;
    flex-shrink: 0;
}

.promo-code-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.5);
    margin-bottom: 6px;
}

.promo-code-val {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #c9a84c;
    font-weight: 700;
    letter-spacing: 3px;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1.5px solid var(--border);
    text-align: center;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* TABLET */
@@media(max-width:900px) {
    .hero {
        padding: 40px 24px;
        min-height: auto;
        margin: -24px -16px 48px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-stats {
        gap: 24px;
        margin-top: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .categories-grid {
        grid-template-columns: repeat(6, minmax(90px, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .promo-banner {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media(max-width:480px) {
    .hero {
        padding: 32px 16px;
        margin: -16px -16px 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .btn-hero-primary, .btn-hero-outline {
        padding: 12px 22px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-val {
        font-size: 22px;
    }

    .section {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(6, minmax(90px, 1fr));
        gap: 10px;
    }

    .cat-card {
        padding: 16px 8px;
        border-radius: 12px;
    }

    .cat-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .cat-name {
        font-size: 11px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card-body {
        padding: 12px;
    }

    .product-card-name {
        font-size: 13px;
    }

    .price-main {
        font-size: 15px;
    }

    .promo-banner {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .promo-text h2 {
        font-size: 22px;
    }

    .promo-text p {
        font-size: 13px;
    }

    .promo-code-val {
        font-size: 22px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 20px 14px;
    }

    .feature-title {
        font-size: 13px;
    }

    .feature-desc {
        font-size: 11px;
    }
}
