/* Shop Page Styles */

/* Shop Section */
.shop-section {
  padding: 40px 0 80px 0;
  background-color: #ffffff;
}

.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.breadcrumb-link {
  color: #d2342c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #a02822;
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #999;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

/* Page Header */
.page-header {
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  font-family: "Georgia", "Times New Roman", serif;
}

.page-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

/* Products Header */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.products-count {
  font-size: 14px;
  color: #666;
}

.products-sort {
  position: relative;
}

.sort-select {
  padding: 8px 35px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  min-width: 160px;
}

.sort-select:focus {
  outline: none;
  border-color: #d2342c;
  box-shadow: 0 0 0 2px rgba(210, 52, 44, 0.1);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Shop Product Card */
.shop-product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
}

.shop-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Shop Product Image */
.shop-product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f8f8f8;
  position: relative;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Shop Product Info */
.shop-product-info {
  padding: 20px;
  text-align: center;
}

.shop-product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-product-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d2342c;
  margin: 0 0 15px 0;
}

/* Add to Basket Button */
.shop-add-to-basket-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-add-to-basket-btn:hover {
  background-color: #d2342c;
  transform: translateY(-1px);
}

.shop-add-to-basket-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .shop-container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-title {
    font-size: 2rem;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .sort-select {
    min-width: 140px;
  }

  .shop-product-image {
    height: 200px;
  }

  .shop-product-info {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .page-description {
    font-size: 1rem;
  }

  .shop-product-image {
    height: 250px;
  }

  .breadcrumb-nav {
    font-size: 13px;
  }

  .shop-container {
    padding: 0 10px;
  }
}

/* Loading State */
.products-grid.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Empty State */
.products-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.products-empty h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.products-empty p {
  font-size: 1rem;
  line-height: 1.6;
}
