/* =========================
   SHOP HERO
========================= */

.shop-hero {
  min-height: 420px;

  padding: 80px 8%;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  background: #111;

  color: white;
}

.shop-hero-content {
  max-width: 750px;
}

.shop-hero .section-tag {
  color: #d8ff3f;
}

.shop-hero h1 {
  margin-top: 20px;

  font-size: clamp(60px, 9vw, 130px);

  line-height: 0.9;

  letter-spacing: -6px;
}

.shop-hero h1 span {
  font-family: "Playfair Display", serif;

  font-style: italic;

  font-weight: 500;

  color: #d8ff3f;
}

.shop-hero-content > p:last-child {
  max-width: 500px;

  margin-top: 25px;

  color: #aaa;

  line-height: 1.7;
}

.shop-hero-side {
  text-align: right;

  max-width: 200px;
}

.shop-hero-side span {
  font-size: 11px;

  color: #777;
}

.shop-hero-side p {
  margin-top: 20px;

  font-size: 13px;

  letter-spacing: 1px;

  line-height: 1.6;
}

/* =========================
   CATEGORY SECTION
========================= */

.category-section {
  padding: 35px 8%;

  border-bottom: 1px solid #ddd;

  background: #fff;
}

.category-list {
  display: flex;

  align-items: center;

  gap: 15px;

  overflow-x: auto;
}

.category-btn {
  border: 1px solid #ddd;

  background: transparent;

  padding: 12px 20px;

  white-space: nowrap;

  font-size: 10px;

  letter-spacing: 1px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.category-btn:hover,
.category-btn.active {
  background: #111;

  color: white;

  border-color: #111;
}

/* =========================
   TOOLBAR
========================= */

.shop-toolbar {
  padding: 40px 8%;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.product-count {
  font-size: 11px;

  letter-spacing: 1.5px;

  font-weight: 700;
}

.shop-tools {
  display: flex;

  gap: 15px;
}

.shop-tools select {
  border: 1px solid #ddd;

  padding: 12px 15px;

  background: white;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  cursor: pointer;
}

.filter-button {
  background: #111;

  color: white;

  padding: 12px 18px;

  border: none;

  font-size: 10px;

  letter-spacing: 1px;

  font-weight: 700;

  cursor: pointer;
}

/* =========================
   PRODUCTS
========================= */

.shop-products {
  padding: 0 8% 100px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.shop-product {
  position: relative;
}

.product-image {
  height: 400px;

  position: relative;

  overflow: hidden;

  background: #eee;
}

.product-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.shop-product:hover .product-image img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;

  top: 15px;

  left: 15px;

  padding: 7px 10px;

  background: white;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;
}

.product-heart {
  position: absolute;

  top: 15px;

  right: 15px;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: white;

  border: none;

  cursor: pointer;

  font-size: 16px;

  transition: 0.3s;
}

.product-heart:hover {
  transform: scale(1.1);
}

.product-heart.active {
  background: #111;

  color: white;
}

.product-info {
  padding-top: 16px;
}

.product-category {
  font-size: 9px;

  color: #888;

  letter-spacing: 1px;

  font-weight: 700;
}

.product-info h3 {
  margin-top: 7px;

  font-size: 16px;

  font-weight: 600;
}

.product-bottom {
  margin-top: 12px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.product-price {
  font-size: 16px;

  font-weight: 700;
}

.quick-add {
  padding: 10px 13px;

  background: #111;

  color: white;

  border: none;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;

  cursor: pointer;

  transition: 0.3s;
}

.quick-add:hover {
  background: #333;

  transform: translateY(-2px);
}

/* =========================
   EMPTY
========================= */

.shop-empty {
  display: none;

  text-align: center;

  padding: 100px 20px;
}

.shop-empty i {
  font-size: 45px;
}

.shop-empty h2 {
  margin-top: 20px;
}

.shop-empty p {
  margin-top: 10px;

  color: #777;
}

/* =========================
   NEWSLETTER
========================= */

.shop-newsletter {
  padding: 100px 8%;

  text-align: center;

  background: #d8ff3f;
}

.shop-newsletter .section-tag {
  justify-content: center;
}

.shop-newsletter h2 {
  font-size: clamp(40px, 6vw, 80px);

  letter-spacing: -4px;
}

.shop-newsletter h2 span {
  display: block;

  font-family: "Playfair Display", serif;

  font-style: italic;

  font-weight: 500;
}

.shop-newsletter > p {
  margin-top: 20px;

  color: #444;
}

.newsletter-form {
  max-width: 600px;

  margin: 35px auto 0;

  display: flex;
}

.newsletter-form input {
  flex: 1;

  padding: 18px;

  border: 1px solid #111;

  background: white;

  font-size: 12px;
}

.newsletter-form button {
  padding: 18px 25px;

  border: none;

  background: #111;

  color: white;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  cursor: pointer;
}

/* =========================
   NAV ACTIVE
========================= */

.nav-active {
  font-weight: 700 !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .shop-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .shop-hero {
    padding: 60px 6%;

    min-height: 380px;
  }

  .shop-hero-side {
    display: none;
  }

  .shop-toolbar {
    padding: 30px 6%;
  }

  .shop-products {
    padding: 0 6% 80px;

    grid-template-columns: repeat(2, 1fr);
  }

  .product-image {
    height: 350px;
  }
}

@media (max-width: 550px) {
  .shop-toolbar {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .shop-tools {
    width: 100%;
  }

  .shop-tools select {
    flex: 1;
  }

  .shop-products {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 450px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
