/* ============================================================
                RAY STUDIO - LUXURY COLLECTION
============================================================ */


/* ============================================================
                LUXURY COLORS
============================================================ */

:root {

    --luxury-black: #211a17;

    --luxury-dark: #33251f;

    --luxury-brown: #4b3328;

    --luxury-cream: #eee4d5;

    --luxury-light: #f8f3eb;

    --luxury-white: #ffffff;

    --luxury-gold: #b69567;

    --luxury-soft-gold: #ceb58f;

    --luxury-text: #78685f;

    --luxury-border:
        rgba(75, 51, 40, 0.16);

    --luxury-shadow:
        0 20px 50px
        rgba(33, 26, 23, 0.15);

}


/* ============================================================
                GENERAL
============================================================ */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    color:
        var(--luxury-text);

    background:
        var(--luxury-light);

    font-family:
        "Poppins",
        sans-serif;

}


img {

    max-width: 100%;

}


button,
a {

    font-family:
        "Poppins",
        sans-serif;

}


/* ============================================================
                BANNER SLIDER
============================================================ */

.collection-slider {

    position: relative;

    width: 100%;

    /*
        Recommended banner:
        1920 x 600 px
    */

    aspect-ratio:
        1920 / 600;

    overflow: hidden;

    background:
        var(--luxury-black);

}


/* ============================================================
                SLIDES
============================================================ */

.collection-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1s ease,
        visibility 1s ease;

}


.collection-slide.active-slide {

    opacity: 1;

    visibility: visible;

}


/* ============================================================
                BANNER IMAGE - NO CROPPING
============================================================ */

.collection-slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    background:
        var(--luxury-black);

}


/* ============================================================
                SLIDER ARROWS
============================================================ */

.slider-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 45px;

    height: 45px;

    border:
        1px solid
        rgba(206, 181, 143, 0.65);

    border-radius: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--luxury-soft-gold);

    background:
        rgba(33, 26, 23, 0.55);

    backdrop-filter:
        blur(6px);

    cursor: pointer;

    transform:
        translateY(-50%)
        rotate(45deg);

    transition:
        background 0.3s ease,
        border 0.3s ease;

}


.slider-arrow i {

    transform:
        rotate(-45deg);

}


.slider-arrow:hover {

    border-color:
        var(--luxury-gold);

    background:
        var(--luxury-dark);

}


.slider-arrow-left {

    left: 30px;

}


.slider-arrow-right {

    right: 30px;

}


/* ============================================================
                SLIDER COUNTER
============================================================ */

.luxury-slider-counter {

    position: absolute;

    right: 35px;

    bottom: 25px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 14px;

    letter-spacing: 1px;

}


.counter-line {

    width: 35px;

    height: 1px;

    background:
        var(--luxury-soft-gold);

}


/* ============================================================
                SLIDER DOTS
============================================================ */

.slider-dots {

    position: absolute;

    left: 50%;

    bottom: 24px;

    z-index: 10;

    display: flex;

    gap: 13px;

    transform:
        translateX(-50%);

}


.slider-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border:
        1px solid
        var(--luxury-soft-gold);

    transform:
        rotate(45deg);

    background:
        transparent;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.slider-dot.active-dot {

    background:
        var(--luxury-gold);

    transform:
        rotate(45deg)
        scale(1.35);

}


/* ============================================================
                LUXURY INTRO
============================================================ */

.luxury-intro-section {

    position: relative;

    padding:
        70px
        7%;

    overflow: hidden;

    background:
        linear-gradient(
            130deg,
            #261d19,
            #49342a
        );

}


/* ============================================================
                INTRO INNER
============================================================ */

.luxury-intro-inner {

    width: 100%;

    max-width: 1380px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        100px
        1fr
        150px;

    align-items: center;

    gap: 45px;

}


/* ============================================================
                SIDE LABEL
============================================================ */

.luxury-side-label {

    min-height: 235px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color:
        var(--luxury-soft-gold);

    opacity: 0;

    transform:
        translateX(-20px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.luxury-side-label span {

    writing-mode:
        vertical-rl;

    font-size: 8px;

    letter-spacing: 3px;

}


.luxury-side-label div {

    width: 1px;

    height: 55px;

    background:
        rgba(206, 181, 143, 0.45);

}


/* ============================================================
                INTRO CONTENT
============================================================ */

.luxury-intro-content {

    max-width: 750px;

    text-align: center;

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.9s ease 0.1s,
        transform 0.9s ease 0.1s;

}


.luxury-eyebrow {

    margin-bottom: 12px;

    color:
        var(--luxury-soft-gold);

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 4px;

}


.luxury-intro-content h1 {

    color:
        #ffffff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            52px,
            7vw,
            90px
        );

    font-weight: 500;

    line-height: 0.9;

}


.luxury-intro-content h1 em {

    display: block;

    color:
        var(--luxury-soft-gold);

    font-weight: 500;

}


/* ============================================================
                DIAMOND DIVIDER
============================================================ */

.luxury-diamond-divider {

    max-width: 330px;

    margin:
        25px auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color:
        var(--luxury-soft-gold);

}


.luxury-diamond-divider span {

    width: 100%;

    height: 1px;

    background:
        rgba(206, 181, 143, 0.4);

}


/* ============================================================
                DESCRIPTION
============================================================ */

.luxury-description {

    max-width: 600px;

    margin: 0 auto;

    color:
        #d8ccc3;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    line-height: 1.55;

}


/* ============================================================
                EXPLORE BUTTON
============================================================ */

.luxury-explore-button {

    margin-top: 27px;

    padding:
        12px
        22px;

    border:
        1px solid
        var(--luxury-soft-gold);

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color:
        var(--luxury-soft-gold);

    background:
        transparent;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 1.5px;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        background 0.3s ease;

}


.luxury-explore-button:hover {

    color:
        var(--luxury-dark);

    background:
        var(--luxury-soft-gold);

}


/* ============================================================
                MONOGRAM
============================================================ */

.luxury-monogram {

    width: 125px;

    height: 125px;

    border:
        1px solid
        rgba(206, 181, 143, 0.5);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color:
        var(--luxury-soft-gold);

    transform:
        rotate(45deg)
        scale(0.9);

    opacity: 0;

    transition:
        opacity 0.9s ease 0.2s,
        transform 0.9s ease 0.2s;

}


.luxury-monogram span,
.luxury-monogram small,
.luxury-monogram strong {

    transform:
        rotate(-45deg);

}


.luxury-monogram span {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 38px;

    line-height: 0.8;

}


.luxury-monogram small {

    margin-top: 8px;

    font-size: 6px;

    letter-spacing: 2px;

}


.luxury-monogram strong {

    margin-top: 2px;

    font-size: 8px;

    letter-spacing: 2px;

}


/* ============================================================
                INTRO REVEAL
============================================================ */

.luxury-visible
.luxury-side-label,

.luxury-visible
.luxury-intro-content {

    opacity: 1;

    transform:
        translate(0);

}


.luxury-visible
.luxury-monogram {

    opacity: 1;

    transform:
        rotate(45deg)
        scale(1);

}


/* ============================================================
                PRODUCTS SECTION
============================================================ */

.products-section {

    width: 100%;

    padding:
        55px
        7%
        65px;

    background:
        var(--luxury-cream);

}


/* ============================================================
                HEADING
============================================================ */

.section-heading {

    width: 100%;

    max-width: 1500px;

    margin:
        0 auto
        42px;

    display: grid;

    grid-template-columns:
        60px
        auto
        1fr;

    align-items: center;

    gap: 24px;

}


.heading-number {

    color:
        var(--luxury-gold);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 34px;

}


.heading-content p {

    margin-bottom: 6px;

    color:
        var(--luxury-gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

}


.heading-content h2 {

    color:
        var(--luxury-dark);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            40px,
            4vw,
            54px
        );

    line-height: 1;

}


.heading-line {

    width: 100%;

    height: 1px;

    background:
        rgba(75, 51, 40, 0.22);

}


/* ============================================================
                PRODUCT GRID
============================================================ */

.product-grid {

    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap:
        32px
        24px;

}


/* ============================================================
                SHARED PRODUCT CARD NOTE

    Luxury product-card styling is now controlled by:
    static/components/product-card.css

    Do not add page-specific product-card styles here.
============================================================ */


/* ============================================================
                CRAFT FULL WIDTH
============================================================ */

.product-grid
.craft-animation-section {

    grid-column:
        1 / -1 !important;

    width: 100%;

    max-width: none;

}


/* ============================================================
                NO PRODUCTS
============================================================ */

.no-products-message {

    grid-column:
        1 / -1;

    padding:
        80px
        20px;

    text-align: center;

}


.no-products-message i {

    margin-bottom: 15px;

    color:
        var(--luxury-gold);

    font-size: 35px;

}


.no-products-message h3 {

    color:
        var(--luxury-dark);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 32px;

}


.no-products-message p {

    margin-top: 8px;

    font-size: 12px;

}


/* ============================================================
                TABLET
============================================================ */

@media screen and (max-width: 1050px) {


    .luxury-intro-inner {

        grid-template-columns:
            70px
            1fr
            110px;

        gap: 25px;

    }


    .luxury-monogram {

        width: 95px;

        height: 95px;

    }


    .product-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

    }


}


/* ============================================================
                MOBILE
============================================================ */

@media screen and (max-width: 700px) {


    .slider-arrow {

        width: 33px;

        height: 33px;

    }


    .slider-arrow-left {

        left: 12px;

    }


    .slider-arrow-right {

        right: 12px;

    }


    .luxury-slider-counter {

        display: none;

    }


    .luxury-intro-section {

        padding:
            50px
            22px;

    }


    .luxury-intro-inner {

        display: block;

    }


    .luxury-side-label {

        display: none;

    }


    .luxury-monogram {

        margin:
            40px auto
            10px;

    }


    .products-section {

        padding:
            42px
            12px
            50px;

    }


    .section-heading {

        grid-template-columns:
            45px
            1fr;

    }


    .heading-line {

        display: none;

    }


}


/* ============================================================
                SMALL MOBILE
============================================================ */

@media screen and (max-width: 550px) {


    .slider-dots {

        bottom: 10px;

    }


    .luxury-intro-content h1 {

        font-size: 50px;

    }


    .luxury-description {

        font-size: 18px;

    }


    .product-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap:
            18px
            9px;

    }


}


/* ============================================================
                REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {


    .collection-slide,
    .luxury-side-label,
    .luxury-intro-content,
    .luxury-monogram {

        transition: none;

    }


}