* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #faf5ea;
  color: #333;
}

/* TOP BAR */
.top-bar {
  background: #2f5d5b;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 20px;
}

/* HEADER */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}

.header img {
  max-height: 400px;
  width: auto;
}
/* SHOP */
.shop {
  background: #f6f2ef;
  padding: 80px 40px;
  text-align: center;
}

.shop h2 {
  font-size: 18px;
  letter-spacing: 2px;
  color: #2f5d5b;
  margin-bottom: 50px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-grid img {
  width: 100%;
  background: #fff;
  padding: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}
@media (max-width: 768px) {
.shop-grid{
    grid-template-columns: 1fr;
    
  }
  .shop-grid img{
    width: 100%;
    max-width: 100%;
  }
}