*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    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;
}

/* TITLE */

.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;
}

/* IMAGE */

.product-card img{
    width:100%;

    height:420px;

    object-fit:cover;

    display:block;
}

/* DETAILS */

.product-details{
    padding:22px;
}

.product-details h2{
    text-align:center;

    font-size:42px;

    font-family:Georgia, serif;

    color:#d4a13b;

    margin-bottom:25px;
}

/* INFO */

.info-box{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    border:
    1px solid rgba(212,161,59,0.4);

    border-radius:10px;

    overflow:hidden;
}

.info-box div{
    text-align:center;

    padding:18px;

    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:14px;

    letter-spacing:2px;
}

.info-box p{
    margin-top:10px;

    font-size:20px;

    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:320px;
    }

    .collection-header h3::before,
    .collection-header h3::after,
    .category-title::before,
    .category-title::after{
        width:45px;
    }

}

.collection-grid{
  display:grid !important;
  grid-template-columns:repeat(2, 420px) !important;
  gap:35px !important;
  justify-content:center !important;
  overflow:visible !important;
}

.product-card,
.image-box{
  overflow:visible !important;
}

.image-box{
  position:relative !important;
  z-index:1 !important;
}

.image-box img{
  width:100% !important;
  height:auto !important;
  transition:transform 0.35s ease !important;
  cursor:pointer !important;
}

.image-box:hover{
  z-index:99999 !important;
}

.image-box:hover img{
  transform:scale(1.6) !important;
  box-shadow:0 10px 30px rgba(0,0,0,0.45) !important;
  background:#fff !important;
}

.third-card{
  grid-column:1 / 3 !important;
  justify-self:center !important;
}

/* IMAGE HOVER ZOOM FOR ALL COLLECTION PAGES */

.product-card,
.image-box,
.collection-grid {
    overflow: visible !important;
}

.image-box {
    position: relative;
    z-index: 1;
}

.image-box img {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
    cursor: pointer;
}

.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;
}

/* Hover Zoom Effect */

.collection-grid{
    overflow: visible !important;
}

.product-card{
    overflow: visible !important;
    position: relative;
}

.image-box{
    position: relative;
    overflow: visible !important;
    z-index: 1;
}

.image-box img{
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.image-box:hover{
    z-index: 9999;
}

.image-box:hover img{
    transform: scale(1.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background: #fff;
}

.collection-grid,
.product-card,
.image-box{
    overflow: visible !important;
}

.image-box{
    position: relative;
    z-index: 1;
}

.image-box img{
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.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;
}


/* Hover Zoom Effect */

.collection-grid,
.product-card,
.image-box{
    overflow: visible !important;
}

.image-box{
    position: relative;
    z-index: 1;
}

.image-box img{
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.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;
}

.collection-grid,
.product-card,
.image-box{
    overflow: visible !important;
}

.image-box{
    position: relative;
    z-index: 1;
}

.image-box img{
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.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;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 190px;
  border: 1px solid #d4af37;
  z-index: 9999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 15px;
  color: #d4af37;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

body{
    margin:0;
    padding:0;
    background:#000;
    color:white;
    font-family:Georgia, serif;
}

.collection-header{
    text-align:center;
    padding:40px 20px;
}

.collection-header h1{
    font-size:48px;
    color:#d4af37;
}

.collection-header h2{
    color:#d4af37;
    margin-top:10px;
}

.collection-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    padding:30px;
}

.product-card{
    width:320px;
    background:#111;
    border:1px solid #d4af37;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.product-card h3{
    color:#d4af37;
    padding:15px;
}

body{
    margin:0;
    padding:0;
    font-family: "Times New Roman", serif;
    background: linear-gradient(
        to bottom,
        #0d0700,
        #140a00,
        #0d0700
    );
    color:#d4af37;
}

.collection-header{
    text-align:center;
    padding:60px 20px;
}

.collection-header h3{
    letter-spacing:10px;
    font-size:28px;
    color:#d4af37;
    margin-bottom:10px;
}

.collection-header h1{
    font-size:80px;
    letter-spacing:8px;
    margin:0;
    color:#d4af37;
}

.collection-header p{
    font-size:28px;
    margin-top:25px;
    color:#d4af37;
}

.collection-header h2{
    font-size:70px;
    margin-top:30px;
    color:#d4af37;
}

.collection-header::before,
.collection-header::after{
    content:"";
    display:block;
    width:250px;
    height:2px;
    background:#d4af37;
    margin:25px auto;
}

.product-card{
    background:transparent;
    border:none;
    box-shadow:none;
}

.product-card img{
    width:100%;
    border-radius:15px;
    transition:0.4s;
}

.product-card img:hover{
    transform:scale(1.03);
}

.product-card h3{
    color:#d4af37;
    text-align:center;
    margin-top:15px;
    font-size:26px;
}