.shops-section {
  padding: 4rem 2rem;
  background-color: #fff;
 
}

.shops-header {
  text-align: left;
  margin-bottom: 2rem;
}

.shops-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: .5rem;
}

.shops-header h2 {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin: 0;
}

.shops-header p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 50%;
  text-align: right;
  color: #a4a1a1;
}

.more-link {
  display: inline-block;
  font-size: 0.95rem;
  border-bottom: 1px solid #000;
  text-decoration: none;
  padding-bottom: 0.1em;
}

.shops-grid {
  display: flex;
  gap: 2rem;
}

.shop-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px #c9a26875; /* <- added shadow */
  background: #82818185; /* optional: keeps corners clean */
}


.shop-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
    
}

.shop-info {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem;
  font-size: 0.95rem;
  width: 100%;
}

.shop-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.shop-info a {
  color: #fff;
  text-decoration: underline;
}
.shop-image-container {
  position: relative;
  width: 100%;
  padding-top: 66.66%; /* 3:2 ratio, adjust as needed */
  overflow: hidden;
  
}

.shop-image-container .rotating-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 3s ease-in-out;
  opacity: 1;
   filter: brightness(70%);
}
.shop-label-image {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 60px;
  height: auto;
  z-index: 5;
  transition: transform 0.4s ease;
}

.shop-label-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.4s ease;
  border-radius: 4px;
}

.shop-card:hover .shop-label-image img {
  transform: scale(1.1) rotate(3deg);
}
