/* ===== CATEGORY HEADER ===== */

.category-header{
  text-align:center;
  padding:80px 20px 40px;
}

.category-header h1{
  font-size:36px;
  margin-bottom:15px;
}

.category-header p{
  max-width:700px;
  margin:auto;
  color:#555;
  line-height:1.6;
}


/* ===== GALLERY GRID ===== */

.category-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  padding:20px;
  max-width:1200px;
  margin:auto;
}


/* Tablet */

@media (min-width:768px){
  .category-gallery{
    grid-template-columns:repeat(3,1fr);
  }
}


/* Desktop */

@media (min-width:1024px){
  .category-gallery{
    grid-template-columns:repeat(4,1fr);
  }
}


/* ===== GALLERY CARD ===== */

.gallery-card{
  border:1px solid #F17C2E;
  border-radius: 3px;
  background:white;
  overflow:hidden;
}


/* Image */

.gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}


/* Bottom Bar */

.gallery-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#F17C2E;
  padding:6px 10px;
  font-size:14px;
  color: #1E2D8F;

}


/* Text */

.gallery-info span{
  font-weight:bold;
}


/* Share Icon */

.gallery-info i{
  font-size:16px;
  cursor:pointer;
  color:black;
}

.gallery-info i:hover{
  opacity:0.7;
}


/* POPUP VIEW */

.image-popup{
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,.8);
    backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition: opacity .3s ease, visibility .3s ease;

    z-index: 99999;

    -webkit-tap-highlight-color: transparent;
}

.image-popup img{
    max-width:90%;
    max-height:80%;
    border-radius:8px;

    cursor:grab;

    user-select:none;
    -webkit-user-select:none;
    -webkit-user-drag:none;

    touch-action:none;

    pointer-events:auto;
}

.image-popup.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.close-btn{
  position:absolute;
  top:30px;
  right:40px;
  font-size:40px;
  color:white;
  cursor:pointer;
}


/*Enquiry pop up form*/
.enquiry-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  visibility:hidden;
  opacity:0;
  transition:0.3s;
  z-index:1000;
}

.enquiry-popup.active{
  visibility:visible;
  opacity:1;
}

.enquiry-box{
  background:white;
  padding:30px;
  width:90%;
  max-width:420px;
  border-radius:8px;
  position:relative;
}

.enquiry-box input,
.enquiry-box textarea{
  width:100%;
  margin-top:10px;
  padding:10px;
  border:1px solid #ccc;
}

.enquiry-box button{
  margin-top:15px;
  padding:10px;
  width:100%;
  background:black;
  color:white;
  border:none;
  cursor:pointer;
}

.close-enquiry{
  position:absolute;
  top:10px;
  right:15px;
  font-size:28px;
  cursor:pointer;
}

.enquiry-product-preview{
  text-align:center;
  margin-bottom:15px;
}

.enquiry-product-preview img{
  width:120px;
  height:90px;
  object-fit:cover;
  border-radius:6px;
  border:1px solid #ddd;
}

