    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--kyra-bg-soft);
        color: var(--kyra-text-dark);
        line-height: 1.6;
    }

    h1,
    h2,
    h3 {
        font-family: 'Playfair Display', serif;
        color: var(--kyra-black);
    }

    a {
        text-decoration: none;
    }

    /* =========================
       HERO SECTION
       ========================= */

    .hero {
        background: linear-gradient(135deg, #F7B6C2, #FDECEF);
        padding: 100px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 5vw, 4rem);
        margin-bottom: 20px;
    }

    .hero p {
        max-width: 600px;
        margin: 0 auto 30px;
        color: #333;
        font-size: 1.05rem;
    }

    .hero .cta {
        display: inline-block;
        padding: 14px 36px;
        background: var(--kyra-black);
        color: #fff;
        border-radius: 50px;
        font-weight: 500;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .hero .cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--kyra-shadow-soft);
    }

    .cta {
        display: inline-block;
        padding: 14px 36px;
        background: var(--kyra-black);
        color: #fff;
        border-radius: 50px;
        font-weight: 500;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--kyra-shadow-soft);
    }

    /* =========================
       PRODUCT GRID
       ========================= */

    .product-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: var(--kyra-shadow-soft);
        transition: transform .25s ease;
        position: relative;
        /* required for stretched-link */
    }

    .product-card:hover {
        transform: translateY(-4px);
    }

    /* Image Container & Overlay */
    .product-img {
        height: 350px;
        position: relative;
        overflow: hidden;
    }

    .product-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
        z-index: 1;
        /* behind image content */
    }

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: relative;
        z-index: 0;
    }

    /* Product Info */
    .product-info {
        position: relative;
        /* relative for any overlay inside */
        z-index: 2;
        /* above image overlay */
        padding: 20px;
        background: rgba(255, 255, 255, 0.8);
        /* optional subtle overlay for legibility */
        backdrop-filter: blur(2px);
        /* modern blur effect */
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .price {
        color: var(--kyra-pink-accent);
        font-weight: 500;
    }

    /* Grid */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }

    /* =========================
       FINAL CTA
       ========================= */

    .final-cta {
        background: var(--kyra-pink-soft);
        text-align: center;
        padding: 90px 20px;
    }

    .final-cta h2 {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }

    .final-cta a {
        background: var(--kyra-pink-accent);
        color: #fff;
        padding: 14px 40px;
        border-radius: 50px;
        font-weight: 500;
        display: inline-block;
    }

    /* =========================
       FOOTER
       ========================= */

    footer {
        background: #fff;
        border-top: 1px solid var(--kyra-border);
        text-align: center;
        padding: 30px;
        color: var(--kyra-text-muted);
        font-size: .85rem;
    }