*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #ffffff;
}
.logo-section{
   
    padding:15px 0;
}
.logo-section img[alt="header-logo"]{
    width:100px;
    margin:0 auto;
    display: block;
}
.header-bottom::after{
    content:"";
    background-color:#373940;
    height: 100%;
    width:100%;
    position: absolute;
    top:0;
    left:0;
    opacity: 0.1;
    z-index:-1000 ;
    
}
.header-bottom{
    height:280px;
    width:100%;
    background-image: url(./images/page-title.jpg);
    background-size:cover;
    background-position: center center;
    position: relative;
    z-index: 1000;
    color:white;
}
.header-bottom-text{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    
}
.header-bottom-text h1{
    font-size: 2.2rem;
    width:300px;
    font-weight: 600;
    line-height: 2.2rem;
    padding:10px 0;
}
.header-bottom-text p{
    width:400px;
    font-size:1rem;
}
/* product-section */
.product-title{
    text-align: center;
    font-size:2rem;
    font-weight: 500;
}
#product-container{
   display: flex;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}



#product-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.product-card {
  max-width:300px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  box-sizing: border-box;
  
}
.product-search{
    display: flex;
    justify-content: center;
    padding:20px 0;
}
.product-search input{
    width:400px;
}
.product-title {
  font-size: 18px;
  font-weight: 600;
  padding: 12px 14px 6px;
}

.product-details {
  font-size: 14px;
  color: #666;
  padding: 0 14px 12px;
  line-height: 1.4;
}
.product-button {
  
  margin: 0 14px 16px;
  padding: 10px;
  background: #f5b400;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  
}


.no-product {
  display: none;
  text-align: center;
  font-size: 18px;
  margin: 40px 0;
  color: #999;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  max-width: 400px;
  width: 90%;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.modal-content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

#close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}
