/* shop.css - Custom grid for shop page */
.shop-section {
  padding: 40px 0;
  background: #fff;
}
.shop-section .heading {
  text-align: center;
  margin-bottom: 24px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px 20px;
  margin: 0 auto;
  max-width: 1200px;
}
.shop-item {
  background: #faf7f2;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 18px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.shop-item:hover {
  box-shadow: 0 6px 18px rgba(191,161,74,0.18);
}
.shop-item .image {
  width: 100%;
  max-width: 170px;
  height: 170px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.shop-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shop-item .text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #bfa14a;
  text-align: center;
}
.shop-item .fonts {
  color: #e6b800;
  margin-bottom: 6px;
}
.shop-item .price {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px 40px;
  }
  .shop-item .image {
    max-width: 110px;
    height: 110px;
  }
}
img{
    cursor: pointer;
}
@media (max-width: 700px){


.shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px 27px;
}
}
@media (max-width: 600px){
  .contectses h1{
    font-size: 12px;
  }
  .contectses i{
   font-size: 12px;
        position: relative;
    top: -3px;
  }
}
