/* ── Homepage — Six Seasons ── */
    :root {
        --hp-purple: #5c3e98;
        --hp-purple-dark: #4b327d;
        --hp-purple-light: #f5f1fc;
        --hp-purple-mid: #a480e0;
        --hp-text: #2f2a33;
        --hp-muted: #6b5d80;
    }

    /* Banner backgrounds */
    .hp-hero {
        background: #faf9fd;
    }

    .hp-promo {
        background: #faf9fd;
    }

    /* Service strip */
    .hp-services {
        background: #fff;
        border-top: 1px solid #ede8f8;
        border-bottom: 1px solid #ede8f8;
        padding: 28px 0;
    }

    .hp-svc-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 10px 20px;
        border-right: 1px solid #ede8f8;
    }

    .hp-svc-item:last-child {
        border-right: none;
    }

    .hp-svc-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        background: linear-gradient(135deg, var(--hp-purple) 0%, var(--hp-purple-mid) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .hp-svc-icon i {
        color: #fff;
        font-size: 19px;
    }

    .hp-svc-text h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--hp-text);
        margin: 0 0 3px;
    }

    .hp-svc-text p {
        font-size: 13px;
        color: var(--hp-muted);
        margin: 0;
        line-height: 1.5;
    }

    .product-price {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .discount-badge {
        display: inline-block;
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
        animation: badge-pulse 2s ease-in-out infinite;
        white-space: nowrap;
    }

    @keyframes badge-pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }

    @media (max-width: 767px) {
        .hp-svc-item {
            border-right: none;
            border-bottom: 1px solid #ede8f8;
        }

        .hp-svc-item:last-child {
            border-bottom: none;
        }
    }

    /* Section heading */
    .hp-head {
        text-align: center;
        margin-bottom: 36px;
    }

    .hp-head-tag {
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--hp-purple);
        margin-bottom: 8px;
    }

    .hp-head h2 {
        font-size: clamp(24px, 3.5vw, 36px);
        font-weight: 800;
        color: var(--hp-text);
        margin: 0;
        line-height: 1.2;
    }

    .hp-head .hp-head-line {
        display: inline-block;
        width: 48px;
        height: 3px;
        background: linear-gradient(90deg, var(--hp-purple) 0%, var(--hp-purple-mid) 100%);
        border-radius: 3px;
        margin-top: 14px;
    }

    /* New Arrivals */
    .hp-arrivals {
        background: #faf9fd;
        padding: 64px 0 52px;
    }

    .hp-arrivals .nav-pills .nav-link {
        color: var(--hp-muted);
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        padding: 7px 20px;
        transition: background .2s, color .2s;
    }

    .hp-arrivals .nav-pills .nav-link.active,
    .hp-arrivals .nav-pills .nav-link:hover {
        background: var(--hp-purple);
        color: #fff;
    }

    /* Why Us */
    .hp-why {
        padding: 64px 0;
        background: #fff;
    }

    .hp-why-card {
        background: #fff;
        border: 1px solid #ede8f8;
        border-radius: 16px;
        padding: 28px 22px;
        text-align: center;
        box-shadow: 0 4px 18px rgba(92, 62, 152, .06);
        transition: transform .25s, box-shadow .25s;
        height: 100%;
    }

    .hp-why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 36px rgba(92, 62, 152, .13);
    }

    .hp-why-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--hp-purple) 0%, var(--hp-purple-mid) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .hp-why-icon i {
        color: #fff;
        font-size: 22px;
    }

    .hp-why-card h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--hp-text);
        margin-bottom: 8px;
    }

    .hp-why-card p {
        font-size: 13px;
        color: var(--hp-muted);
        line-height: 1.7;
        margin: 0;
    }

    /* Testimonials */
    .hp-testi {
        background: linear-gradient(135deg, #1a1025 0%, #2e1a52 100%);
        padding: 64px 0;
    }

    .hp-testi-card {
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(164, 128, 224, .22);
        border-radius: 16px;
        padding: 28px 24px;
    }

    .hp-testi-stars {
        color: #f5c518;
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .hp-testi-text {
        font-size: 14px;
        color: rgba(255, 255, 255, .82);
        line-height: 1.75;
        margin-bottom: 20px;
        font-style: italic;
    }

    .hp-testi-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .hp-testi-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--hp-purple) 0%, var(--hp-purple-mid) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 800;
        color: #fff;
        flex-shrink: 0;
    }

    .hp-testi-name {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    .hp-testi-loc {
        font-size: 12px;
        color: #a898c0;
    }

    .hp-testi .owl-dots .owl-dot span {
        background: rgba(255, 255, 255, .25) !important;
    }

    .hp-testi .owl-dots .owl-dot.active span {
        background: var(--hp-purple-mid) !important;
    }

    /* Blog */
    .hp-blog {
        padding: 64px 0 52px;
        background: var(--hp-purple-light);
    }

    .hp-blog .entry {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(92, 62, 152, .08);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .hp-blog .entry-body {
        padding: 16px 14px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .hp-blog .entry-title {
        font-size: 13px;
        line-height: 1.5;
        flex: 1;
    }

    .hp-blog .entry-title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
    }

    /* View-more button */
    .hp-more {
        display: inline-block;
        border: 2px solid var(--hp-purple);
        color: var(--hp-purple);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: .5px;
        padding: 11px 30px;
        border-radius: 40px;
        text-decoration: none;
        transition: background .2s, color .2s;
    }

    .hp-more:hover {
        background: var(--hp-purple);
        color: #fff;
    }

    /* ── Card Variant Pills (home page) ── */
    .card-variants {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        align-items: center;
        min-height: 30px;
        /* keeps all cards same height even with no variants */
        padding: 4px 6px 2px;
        margin: 4px 0 2px;
    }

    .cv-btn {
        font-size: 10.5px;
        font-weight: 600;
        line-height: 1.5;
        padding: 2px 9px;
        border: 1.5px solid #c9b8e8;
        background: #faf8fd;
        color: #5c3e98;
        cursor: pointer;
        border-radius: 20px;
        /* pill shape */
        transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
        white-space: nowrap;
        outline: none;
        box-shadow: none;
    }

    .cv-btn:hover {
        border-color: #5c3e98;
        background: #ede5f8;
    }

    .cv-btn.active {
        background: #5c3e98;
        border-color: #5c3e98;
        color: #fff;
        box-shadow: 0 2px 8px rgba(92, 62, 152, .25);
    }

    .product-image {
        transition: opacity .15s ease;
    }

    .product-image.cv-switching {
        opacity: .35;
    }