/* GLOBAL */

body {

    margin: 0;
    background: #000;
    font-family: Arial, sans-serif;
    color: white;

}

html {

    scroll-behavior: smooth;

}

::selection {

    background: white;
    color: black;

}


/* HERO */

.collection-hero {

    padding: 140px 60px 100px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);

}

.collection-hero h1 {

    font-size: 72px;
    font-weight: 200;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 25px;

}

.collection-hero p {

    max-width: 700px;
    margin: auto;

    color: #9f9f9f;

    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 1px;

}



/* LATERAL LUXURY */
.luxury-side {

    width: 14%;
    background: #f5f1eb;

}



/* OVERLAY TOP BAR */

.collection-overlay {

    backdrop-filter: blur(3px);
    position: fixed;

    top: 0;
    left: 0;

    height: 90px;

    width: 100%;

    display: flex;

    justify-content: flex-end;

    align-items: center;

    padding: 60px 60px;

    box-sizing: border-box;

    z-index: 9999;

    pointer-events: none;

}


/* HEADER ACTIONS */

.header-actions {

    display: flex;

    align-items: center;

    gap: 22px;

    pointer-events: auto;

}


/* BASKET */

.basket-link {

    width: 42px;

    height: 42px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    border: 1px solid rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.04);

    transition: all 0.3s ease;

}

.basket-link:hover {

    background: white;

    color: black;

}


/* NEWSLETTER */

.newsletter-link {

    height: 42px;

    padding: 0 22px;

    display: flex;

    align-items: center;

    color: white;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;

    border: 1px solid rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.04);

    transition: all 0.3s ease;

    text-decoration: none;

}

.newsletter-link:hover {

    background: white;

    color: black;

}


/* LANGUAGE SELECTOR */

.language-selector {

    background: transparent;

    border: 1px solid rgba(255,255,255,0.25);

    color: white;

    padding: 10px 14px;

    outline: none;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;

}


/* LANGUAGE OPTIONS */

.language-selector option {

    background: black;

    color: white;

}


/* HOVER */

.language-selector:hover {

    border-color: white;

}



/* PRODUCTS GRID */

.products-grid {

    width: 100%;

    display: grid;

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

    gap: 80px 50px;

    padding: 100px 70px;

    box-sizing: border-box;

}


/* PRODUCT CARD */

.product-card {

    text-decoration: none;

    color: white;

    display: flex;

    flex-direction: column;

    transition: transform 0.4s ease;

    cursor: pointer;

}

.product-card:hover {

    transform: translateY(-10px);

}


/* IMAGE CONTAINER */

.product-image {

    position: relative;

    overflow: hidden;

    background: #111;

    border-radius: 2px;

}


/* IMAGE */

.product-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    transition: transform 1s ease;

    display: block;

    cursor: pointer;

}


/* IMAGE HOVER */

.product-card:hover img {

    transform: scale(1.08);

}


/* INFO */

.product-info {

    padding-top: 28px;

}

.product-info h2 {

    font-size: 32px;

    font-weight: 300;

    letter-spacing: 6px;

    text-transform: uppercase;

    margin-bottom: 14px;

}

.product-info p {

    color: #8a8a8a;

    font-size: 15px;

    letter-spacing: 1px;

    margin-bottom: 28px;

}


/* BUTTON */

.product-info button {

    background: transparent;

    color: white;

    border: 1px solid rgba(255,255,255,0.3);

    padding: 16px 34px;

    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.4s ease;

}


/* BUTTON HOVER */

.product-info button:hover {

    background: white;

    color: black;

    border-color: white;

}


/* FOOTER */

.luxury-footer {

    margin-top: 120px;

    background: #f5f1eb;

    padding: 90px 70px;

}


/* FOOTER CONTAINER */

.footer-container {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 60px;

}


/* LUXURY FOOTER */

.luxury-footer {

    background: #f5f1eb;

    padding: 80px 60px;

    margin-top: 120px;

}

.footer-container {

    display: flex;

    justify-content: space-between;

    gap: 60px;

    flex-wrap: wrap;

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 14px;

    min-width: 180px;

}

.footer-column h3 {

    color: black;

    font-size: 15px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 10px;

}

.footer-column a {

    color: #333;

    text-decoration: none;

    font-size: 14px;

    transition: opacity 0.3s ease;

}

.footer-column a:hover {

    opacity: 0.5;

}

/* SOCIAL ICONS */

.social-icons {

    display: flex;

    gap: 14px;

    margin-top: 10px;

}

.social-icons a {

    width: 34px;

    height: 34px;

    border: 1px solid black;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: black;

    font-size: 14px;

    transition: all 0.3s ease;

}

.social-icons a:hover {

    background: black;

    color: white;

}
