/*
Theme: InDreams
Page: Shop

Development route:
 /shop-2/
*/


/* =========================================================
   FOUNDATION
   ========================================================= */

.indreams-shop-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;

    color: #f8f2e8;

    background:
        linear-gradient(
            180deg,
            #080416 0%,
            #08051c 48%,
            #080828 100%
        );

    font-family: "Outfit", sans-serif;
}

.indreams-shop-section {
    position: relative;
}

.indreams-shop-shell {
    position: relative;
    z-index: 2;

    width: min(
        1233px,
        calc(100% - 48px)
    );

    margin-left: auto;
    margin-right: auto;
}

.indreams-shop-shell--medium {
    width: min(
        1040px,
        calc(100% - 48px)
    );
}


/* =========================================================
   COSMIC BACKGROUND
   ========================================================= */

.indreams-shop-cosmic-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        radial-gradient(
            ellipse at 15% 26%,
            rgba(156, 0, 188, 0.5),
            transparent 50%
        ),
        radial-gradient(
            ellipse at 88% 58%,
            rgba(0, 151, 175, 0.34),
            transparent 50%
        ),
        radial-gradient(
            ellipse at 48% 95%,
            rgba(48, 126, 75, 0.22),
            transparent 58%
        ),
        #080417;
}

.indreams-shop-stars {
    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;
    opacity: 0.55;

    background-image:
        radial-gradient(
            1px 1px at 16% 20%,
            rgba(255, 244, 210, 0.9),
            transparent
        ),
        radial-gradient(
            1px 1px at 42% 34%,
            rgba(255, 238, 188, 0.7),
            transparent
        ),
        radial-gradient(
            1.5px 1.5px at 76% 18%,
            rgba(255, 245, 205, 0.82),
            transparent
        ),
        radial-gradient(
            1px 1px at 84% 46%,
            rgba(255, 239, 190, 0.8),
            transparent
        ),
        radial-gradient(
            1px 1px at 31% 80%,
            rgba(255, 237, 192, 0.67),
            transparent
        );

    background-size: 420px 420px;
}


/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */

.indreams-shop-section-label {
    margin: 0 0 16px;

    color: #d7a743;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.34em;
    line-height: 1.5;
    text-transform: uppercase;
}

.indreams-shop-heading {
    margin: 0;

    color: #f8f2e8;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            42px,
            5vw,
            66px
        );

    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.04;
}

.indreams-shop-heading em {
    color: transparent;

    background:
        linear-gradient(
            135deg,
            #efd28e 0%,
            #d7a646 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    font-style: italic;
}

.indreams-shop-body {
    margin: 22px 0 0;

    color:
        rgba(
            248,
            242,
            232,
            0.78
        );

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   HERO
   ========================================================= */

.indreams-shop-hero {
    overflow: hidden;

    padding:
        162px 0 67px;

    isolation: isolate;
}

.indreams-shop-hero__inner {
    max-width: 850px;

    text-align: center;
}

.indreams-shop-eyebrow {
    margin: 0 0 17px;

    color: #e25dcc;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.indreams-shop-hero__title {
    max-width: 820px;

    margin: 0 auto;

    color: #f8f2e8;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            58px,
            7vw,
            88px
        );

    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
}

.indreams-shop-hero__title em {
    color: transparent;

    background:
        linear-gradient(
            135deg,
            #efd28d,
            #d2a442
        );

    -webkit-background-clip: text;
    background-clip: text;

    font-style: italic;
}

.indreams-shop-hero__intro {
    max-width: 690px;

    margin:
        28px auto 0;

    color:
        rgba(
            248,
            242,
            232,
            0.85
        );

    font-size: 16px;
    line-height: 1.72;
}


/* =========================================================
   PRODUCTS SECTION
   ========================================================= */

.indreams-shop-products {
    padding:
        70px 0 82px;

    background:
        linear-gradient(
            180deg,
            #0d041d,
            #080c34
        );
}

.indreams-shop-product-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;
}

.indreams-shop-product-card {
    overflow: hidden;

    border:
        1px solid
        rgba(216, 175, 72, 0.22);

    border-radius: 19px;

    background:
        linear-gradient(
            180deg,
            rgba(24, 8, 52, 0.96),
            rgba(18, 13, 68, 0.96)
        );

    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.2);
}

.indreams-shop-product-image {
    overflow: hidden;

    margin: 0;

    background: #080514;
}

.indreams-shop-product-image img {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;
}

.indreams-shop-product-content {
    padding:
        23px 24px 27px;
}

.indreams-shop-product-content h2 {
    min-height: 58px;

    margin: 0;

    color: #f8f2e8;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;
    font-weight: 500;
    line-height: 1.18;
}

.indreams-shop-product-price {
    margin:
        12px 0 0;

    color: #d8aa48;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;
    line-height: 1;
}

.indreams-shop-product-button {
    display: inline-flex;

    min-height: 41px;

    margin-top: 21px;

    padding:
        10px 17px;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(216, 175, 72, 0.42);

    border-radius: 999px;

    color: #f8f2e8 !important;

    background:
        rgba(255, 255, 255, 0.015);

    font-size: 11px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

a.indreams-shop-product-button:hover {
    transform: translateY(-2px);

    border-color:
        rgba(232, 196, 95, 0.9);

    background:
        rgba(216, 175, 72, 0.06);
}

.indreams-shop-product-button--inactive {
    cursor: default;
    opacity: 0.88;
}

.indreams-shop-store-note {
    margin:
        35px 0 0;

    color:
        rgba(248, 242, 232, 0.54);

    text-align: center;

    font-size: 10px;
}

.indreams-shop-store-note strong {
    color: #d7aa47;
    font-weight: 500;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.indreams-shop-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    align-items: center;
    justify-content: center;

    margin-top: 31px;
}

.indreams-shop-actions--left {
    justify-content: flex-start;
}

.indreams-shop-button {
    display: inline-flex;

    min-height: 47px;

    padding:
        13px 24px;

    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        filter 0.2s ease;
}

.indreams-shop-button:hover {
    transform: translateY(-2px);
}

.indreams-shop-button--gold {
    color: #24180a !important;

    background:
        linear-gradient(
            90deg,
            #e9b73c,
            #f0c353,
            #dba82e
        );

    box-shadow:
        0 8px 27px
        rgba(224, 171, 47, 0.3);
}

.indreams-shop-button--gold:hover {
    filter: brightness(1.06);
}

.indreams-shop-button--outline {
    border:
        1px solid
        rgba(219, 181, 81, 0.42);

    color: #f8f2e8 !important;

    background:
        rgba(255, 255, 255, 0.02);
}

.indreams-shop-button--outline:hover {
    border-color:
        rgba(232, 196, 95, 0.9);
}


/* =========================================================
   EXPERIENCE CTA
   ========================================================= */

.indreams-shop-experience {
    padding:
        78px 0 88px;

    background:
        linear-gradient(
            180deg,
            #10041f,
            #080c34
        );
}

.indreams-shop-experience-border {
    padding: 1.5px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #d93fca,
            #57d6df,
            #e5b63c
        );

    box-shadow:
        0 0 55px
        rgba(114, 53, 186, 0.25);
}

.indreams-shop-experience-panel {
    padding:
        44px 40px;

    border-radius: 23px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(24, 7, 37, 0.98),
            rgba(5, 14, 46, 0.98)
        );
}

.indreams-shop-experience-panel
.indreams-shop-heading {
    font-size:
        clamp(
            36px,
            4.5vw,
            54px
        );
}

.indreams-shop-experience-panel
.indreams-shop-body {
    max-width: 670px;

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   GIFT SHOP
   ========================================================= */

.indreams-shop-gift-shop {
    padding:
        86px 0 96px;

    background:
        linear-gradient(
            180deg,
            #10051e,
            #080d35
        );
}

.indreams-shop-gift-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 58px;

    align-items: center;
}

.indreams-shop-gift-image {
    overflow: hidden;

    margin: 0;

    border:
        1px solid
        rgba(216, 175, 72, 0.23);

    border-radius: 22px;

    box-shadow:
        0 0 38px
        rgba(211, 170, 62, 0.13);
}

.indreams-shop-gift-image img {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;
}

.indreams-shop-gift-copy {
    min-width: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .indreams-shop-hero {
        padding-top: 122px;
    }

    .indreams-shop-product-grid {
        gap: 18px;
    }

    .indreams-shop-product-content {
        padding:
            21px 20px 24px;
    }

    .indreams-shop-product-content h2 {
        font-size: 23px;
    }

    .indreams-shop-gift-grid {
        gap: 40px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .indreams-shop-shell,
    .indreams-shop-shell--medium {
        width:
            min(
                100% - 30px,
                1233px
            );
    }

    .indreams-shop-hero {
        padding:
            53px 0 43px;
    }

    .indreams-shop-eyebrow {
        font-size: 9px;
        letter-spacing: 0.27em;
    }

    .indreams-shop-hero__title {
        font-size:
            clamp(
                45px,
                13vw,
                62px
            );
    }

    .indreams-shop-hero__intro {
        font-size: 15px;
    }

    .indreams-shop-products,
    .indreams-shop-experience,
    .indreams-shop-gift-shop {
        padding:
            58px 0;
    }

    .indreams-shop-product-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .indreams-shop-product-card {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .indreams-shop-product-content h2 {
        min-height: 0;
    }

    .indreams-shop-actions {
        flex-direction: column;

        margin-top: 27px;
    }

    .indreams-shop-actions--left {
        align-items: flex-start;
    }

    .indreams-shop-button {
        width: 100%;
        max-width: 330px;
    }

    .indreams-shop-experience-panel {
        padding:
            31px 20px;
    }

    .indreams-shop-gift-grid {
        grid-template-columns: 1fr;

        gap: 37px;
    }

    .indreams-shop-gift-image {
        max-width: 560px;
        margin: 0 auto;
    }
}