body {
  background: #f6fbfc;
  font-family: 'Tajawal', 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
}

/* Shop Hero Section */
.shop-hero {
  background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
  padding: 50px 0 25px 0;
  text-align: center;
  color: white;
}

.shop-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 13px;
}
.shop-hero-desc {
  font-size: 1.22rem;
  opacity: 0.92;
}

/* Shop Grid */
.shop-section {
  padding: 50px 0;
}

.shop-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 33px;
}

.product-card {
  background: white;
  border-radius: 22px;
  box-shadow: 0 7px 32px rgba(109,189,200,0.10);
  padding: 23px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 2px solid transparent;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 13px 42px rgba(109,189,200,0.20);
  border-color: #6dbdc8;
  transform: translateY(-7px) scale(1.03);
}
.product-image {
  width: 100%;
  height: 180px;
  margin-bottom: 13px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: #f6fbfc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffd700;
  color: #0b6578;
  padding: 6px 18px;
  font-size: 0.93rem;
  font-weight: 800;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(255,215,0,0.11);
}

.product-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #224056;
  margin-bottom: 9px;
}

.product-desc {
  font-size: 1rem;
  color: #4496a6;
  margin-bottom: 23px;
  flex: 1;
  line-height: 1.6;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
}

.product-price {
  font-size: 1.19rem;
  font-weight: 800;
  color: #0b6578;
  background: #eafafd;
  border-radius: 15px;
  padding: 7px 20px;
  letter-spacing: 1px;
}

.shop-btn {
  background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 31px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 6px 18px rgba(109,189,200,0.15);
}
.shop-btn:hover {
  background: #0b6578;
  color: #ffd700;
  transform: translateY(-4px) scale(1.06);
}

@media (max-width: 700px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 15px;}
  .product-image{height:130px;}
}
@media (max-width: 450px) {
  .shop-grid { grid-template-columns: 1fr;}
  .product-card{padding:15px 8px;}
  .product-title{font-size:1rem;}
  .shop-hero-title{font-size:1.1rem;}
}
