*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:black;
    color:white;
    font-family:Arial,sans-serif;
}

/* PAGE */

.collection-page{
    width:100%;
    min-height:100vh;

    padding:50px 5%;

    background:
    radial-gradient(circle at top,
    #1d1305 0%,
    #000 60%);
}

/* HEADER */

.collection-header{
    text-align:center;

    margin-bottom:60px;
}

.collection-header h3{
    color:#d4a13b;

    font-size:34px;

    letter-spacing:10px;

    margin-bottom:10px;
}

.collection-header h3::before,
.collection-header h3::after{
    content:"";

    display:inline-block;

    width:120px;
    height:2px;

    background:#d4a13b;

    vertical-align:middle;

    margin:0 20px;
}

.collection-header h1{
    font-size:110px;

    font-family:Georgia,serif;

    letter-spacing:12px;

    font-weight:500;

    color:#f5f1ea;
}

.collection-header h1::after{
    content:"";

    display:block;

    width:500px;
    height:2px;

    background:#d4a13b;

    margin:25px auto 0;
}

.collection-header p{
    color:#d4a13b;

    font-size:28px;

    margin-top:15px;
}

/* CATEGORY */

.category-title{
    margin-top:35px;

    font-size:65px;

    font-family:Georgia,serif;

    letter-spacing:10px;

    color:#d4a13b;
}

.category-title::before,
.category-title::after{
    content:"";

    display:inline-block;

    width:180px;
    height:2px;

    background:#d4a13b;

    vertical-align:middle;

    margin:0 25px;
}

/* GRID */

.collection-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;
}

/* CARD */

.product-card{
    background:#070707;

    border:1px solid rgba(212,161,59,0.5);

    border-radius:22px;

    overflow:hidden;

    transition:0.4s ease;
}

.product-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 0 35px rgba(212,161,59,0.18);
}

/* IMAGE */

.product-card img{
    width:100%;

    height:520px;

    object-fit:cover;

    display:block;
}

/* DETAILS */

.product-details{
    padding:25px;
}

.product-details h2{
    text-align:center;

    font-size:52px;

    font-family:Georgia,serif;

    letter-spacing:6px;

    color:#d4a13b;

    margin-bottom:28px;
}

/* INFO */

.info-box{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    border:
    1px solid rgba(212,161,59,0.4);

    border-radius:12px;

    overflow:hidden;
}

.info-box div{
    padding:22px 12px;

    text-align:center;

    border-right:
    1px solid rgba(212,161,59,0.3);
}

.info-box div:last-child{
    border-right:none;
}

.info-box span{
    color:#d4a13b;

    font-size:15px;

    letter-spacing:2px;
}

.info-box p{
    margin-top:10px;

    font-size:24px;

    color:white;
}

/* MOBILE */

@media(max-width:900px){

    .collection-grid{
        grid-template-columns:1fr;
    }

    .collection-header h1{
        font-size:60px;
    }

    .category-title{
        font-size:38px;
    }

    .product-card img{
        height:350px;
    }

    .product-details h2{
        font-size:34px;
    }

    .collection-header p{
        font-size:20px;
    }

    .collection-header h3::before,
    .collection-header h3::after,
    .category-title::before,
    .category-title::after{
        width:45px;
    }

}

/* IMAGE HOVER ZOOM EFFECT */

.collection-grid,
.product-card,
.image-box {
    overflow: visible !important;
}

.image-box {
    position: relative;
    z-index: 1;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.image-box:hover {
    z-index: 99999;
}

.image-box:hover img {
    transform: scale(1.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background: #fff;
    border-radius: 10px;
}