/* GLOBAL */

body {

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

}

html {

    scroll-behavior: smooth;

}

a {

    text-decoration: none;

}



/* HERO */

.product-hero {

    position: relative;

    padding: 140px 70px 120px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

}

.hero-content {

    width: 100%;

    max-width: 100%;

}

.hero-content h1 {

    font-size: 82px;

    font-weight: 200;

    letter-spacing: 10px;

    text-transform: uppercase;

    margin-bottom: 30px;

    margin-left: 35%;

}

.hero-content p {

    color: #9f9f9f;

    line-height: 1.9;

    font-size: 18px;

    width: 80%;

    max-width: 80%;

    padding: 0%;

    margin: 5%;

    text-align: justify;

}



/* HEADER ACTIONS */

.header-actions {

    position: absolute;

    top: 35px;

    right: 45px;

    display: flex;

    gap: 18px;

}



/* 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;

}

.newsletter-link:hover {

    background: white;

    color: black;

}



/* LANGUAGE */

.language-selector {

    height: 42px;

    padding: 0 16px;

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

    color: white;

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

    cursor: pointer;

}



/* LANGUAGE OPTIONS */

.language-selector option {

    background: black;

    color: white;

}


/* PRODUCT LAYOUT */

.product-layout {

    display: grid;

    grid-template-columns: 1fr 1.2fr 1fr;

    gap: 60px;

    padding: 100px 70px;

}



/* GALLERIES */

.product-gallery-left,
.product-gallery-right {

    display: flex;

    flex-direction: column;

    gap: 24px;

}

.product-gallery-left img,
.product-gallery-right img {

    width: 100%;

    height: 340px;

    object-fit: cover;

    transition: transform 0.6s ease;

    cursor: zoom-in;

}

.product-gallery-left img:hover,
.product-gallery-right img:hover {

    transform: scale(1.03);

}


/* ==================================================
IMAGE ZOOM
================================================== */

.image-zoom{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

    cursor:zoom-out;

}

.image-zoom.active{

    display:flex;

}

.image-zoom img{

    max-width:92vw;

    max-height:92vh;

    object-fit:contain;

    animation:zoomFade .25s ease;

}

@keyframes zoomFade{

from{

opacity:0;

transform:scale(.9);

}

to{

opacity:1;

transform:scale(1);

}

}



/* CONTENT */

.product-content h2 {

    font-size: 18px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-top: 50px;

    margin-bottom: 20px;

}

.product-content p {

    color: #9f9f9f;

    line-height: 1.9;

}



/* DETAILS */

.product-details {

    margin-top: 60px;

    border-top: 1px solid rgba(255,255,255,0.08);

}

.detail-row {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 24px 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);

}

.detail-title {

    color: #777;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 12px;

}

.detail-value {

    text-align: right;

}



/* BUY BUTTON */

.buy-button {

    margin-top: 60px;

    width: 220px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    color: white;

    text-transform: uppercase;

    letter-spacing: 4px;

    transition: all 0.4s ease;

        transition:

    transform .12s ease,
    background .25s ease,
    color .25s ease;

}

.buy-button:hover {

    background: white;

    color: black;

}

.buy-button:active {

    transform: translateY(2px) scale(.97);
}

/* 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;

}




/* RESPONSIVE */

@media (max-width: 1100px) {

    .product-layout {

        grid-template-columns: 1fr;

    }

}