/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #111;
}

/* HEADER */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 36px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.shop-header .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 2px;
}

.shop-header nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

/* HERO */
.shop-hero {
  padding: 90px 20px 60px;
  text-align: center;
}

.shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.shop-hero p {
  font-size: 15px;
  color: #666;
}

/* GRID */
.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* PRODUCT CARD */
.product {
  text-decoration: none;
  color: #000;
}

.product img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 14px;
}

.product h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.product span {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.product:hover img {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .shop-hero h1 {
    font-size: 34px;
  }

  .product img {
    height: 300px;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  /* GENERAL PADDING FIX */
  body {
    overflow-x: hidden;
  }

  header,
  .shop-header,
  .profile-header,
  .admin-header {
    padding: 16px 20px;
  }

  /* HEADINGS */
  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 22px !important;
  }

  /* WRAPPERS */
  .wishlist-wrapper,
  .shop-grid,
  .admin-wrapper,
  .profile-wrapper,
  .checkout-wrapper {
    padding: 40px 20px !important;
  }

}

@media (max-width: 768px) {

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product img {
    height: 280px;
  }

  .product-actions {
    flex-direction: column;
  }
}
