.shop-hero {
  width: 100%;
  padding: 18px 0 20px;
  background: #fafafa;
  border-bottom: 1px solid #ececec;
}

.shop-hero-content {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.shop-hero-content h1 {
  font-size: 42px;
  font-weight: 600;
  color: #222;
  margin-bottom: 14px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  color: #777;
}

.breadcrumb a {
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #000;
}

.shop-search {
  width: 100%;
  padding: 45px 0;
}

.search-form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search-box {
  width: 550px;
  max-width: 90%;
  height: 48px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 15px;
}

.search-box i {
  font-size: 16px;
  color: #777;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #444;
}

.search-box input::placeholder {
  color: #999;
}

.clear-search {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #777;
  border-radius: 50%;
  transition: 0.3s;
}

.clear-search:hover {
  background: #f3f3f3;
  color: #111;
}

.shop-container {
  width: 90%;
  max-width: 1400px;
  margin: 20px auto 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 45px;
}

.shop-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 30px;
}

.shop-sidebar h2 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

.filter-group {
  margin-bottom: 28px;
}

.filter-group h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 14px;
}

.filter-group details summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 14px;
}

.filter-group details summary::-webkit-details-marker {
  display: none;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  cursor: pointer;
}

.filter-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.filter-btn {
  width: 100%;
  height: 46px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover {
  background: #333;
}

.shop-products {
  width: 100%;
}

.shop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.shop-top p {
  font-size: 15px;
  color: #555;
}

.sort-form select {
  width: 220px;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
  cursor: pointer;
  background: #fff;
}

@media (max-width: 992px) {
  .shop-container {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .shop-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .sort-form {
    width: 100%;
  }

  .sort-form select {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .shop-hero {
    padding: 55px 0 30px;
  }

  .shop-hero-content h1 {
    font-size: 34px;
  }

  .search-box {
    width: 100%;
  }

  .shop-sidebar {
    padding: 22px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.35s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1/1.25;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.wishlist-btn i {
  font-size: 18px;
  color: #444;
  transition: 0.3s;
}

.wishlist-btn:hover {
  background: #111;
}

.wishlist-btn:hover i {
  color: #fff;
}

.wishlist-btn.active {
  background: #111;
}

.wishlist-btn.active i {
  color: #ff4f6d;
}

.product-content {
  padding: 22px;
}

.product-brand {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 14px;
  line-height: 1.5;
  min-height: 54px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars i {
  color: #f6b400;
  font-size: 15px;
}

.rating-number {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.sale-price {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.original-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.cart-btn {
  width: 100%;
  height: 48px;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #2f2f2f;
}

.empty-products {
  width: 100%;
  padding: 100px 20px;
  text-align: center;
  grid-column: 1/-1;
}

.empty-products img {
  width: 180px;
  margin-bottom: 25px;
}

.empty-products h3 {
  font-size: 28px;
  color: #222;
  margin-bottom: 12px;
}

.empty-products p {
  font-size: 15px;
  color: #777;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-content {
    padding: 20px;
  }

  .wishlist-btn {
    width: 38px;
    height: 38px;
    top: 14px;
    right: 14px;
  }

  .wishlist-btn i {
    font-size: 16px;
  }

  .product-name {
    font-size: 17px;
  }

  .sale-price {
    font-size: 20px;
  }
}

.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 70px 0 20px;
}

.page-btn {
  min-width: 46px;
  height: 46px;
  padding: 0 16px;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;

  border: 1px solid #d8d8d8;
  background: #ffffff;
  color: #222;

  font-size: 15px;
  font-weight: 500;

  border-radius: 6px;

  transition: all 0.25s ease;
}

.page-btn:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-btn.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-btn i {
  font-size: 13px;
}

.offer-banner {
  width: 90%;
  max-width: 1400px;
  margin: 80px auto;
  background: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.offer-content {
  padding: 70px;
}

.offer-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #111;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-content h2 {
  font-size: 42px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin-bottom: 20px;
}

.offer-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 520px;
}

.offer-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 170px;
  height: 50px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.offer-btn:hover {
  background: #333;
}

.offer-image {
  height: 100%;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.features-section {
  width: 100%;
  padding: 60px 5%;
  margin-bottom: 40px;
}

.feature-box {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 24px;
  color: #111;
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .offer-content {
    padding: 50px;
  }

  .offer-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .offer-banner {
    grid-template-columns: 1fr;
  }

  .offer-image {
    order: -1;
    height: 350px;
  }

  .feature-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-pagination {
    gap: 8px;
    flex-wrap: wrap;
  }

  .page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .offer-content {
    padding: 35px 25px;
  }

  .offer-content h2 {
    font-size: 30px;
  }

  .offer-content p {
    font-size: 14px;
  }

  .offer-btn {
    width: 150px;
    height: 46px;
    font-size: 15px;
  }

  .feature-box {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 20px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .feature-text h3 {
    font-size: 18px;
  }

  .feature-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .offer-image {
    height: 260px;
  }

  .offer-content h2 {
    font-size: 26px;
  }
}

.product-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 10px 0 6px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1.4;
}

.product-size {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  background: #f5f5f5;
  padding: 4px 4px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 36px;
}
