.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  z-index: 999;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}

.nav-menu {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.nav-item:hover {
  color: #9ca3af;
}

.nav-icons {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.cart-badge {
  position: relative;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background-color: #9ca3af;
  color: #ffffff;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  font-size: 20px;
}


.breadcrumbs {
  margin-top: 80px;
  padding: 20px 0;
  font-size: 14px;
  color: #6b7280;
}

.breadcrumbs a {
  color: #6b7280;
}

.breadcrumbs a:hover {
  color: #9ca3af;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f3f4f6;
}

.page-title {
  font-size: 24px;
  font-weight: 600;
}

.filter-controls {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 14px;
}

.filter-btn {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-btn:hover {
  border-color: #9ca3af;
  color: #9ca3af;
}

.filter-panel {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  padding: 30px;
  transition: right 0.3s ease;
  z-index: 9998;
}

.filter-panel.active {
  right: 0;
}

.panel-title {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-panel {
  cursor: pointer;
  font-size: 20px;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333333;
}

.size-options, .color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-option {
  padding: 5px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-option:hover, .size-option.selected {
  border-color: #9ca3af;
  color: #9ca3af;
}

.color-option {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}

.color-option.selected {
  border-color: #9ca3af;
}

.price-range {
  width: 100%;
  margin-top: 10px;
}

.apply-filters {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(100% - 60px);
  padding: 12px;
  background-color: #9ca3af;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.apply-filters:hover {
  background-color: #7c8491;
}

.products {
  padding: 20px 0 60px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #9ca3af;
  color: #ffffff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 2px;
}

.product-info {
  padding: 15px;
}

.product-name {
  font-size: 16px;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
}

.page-btn:hover, .page-btn.active {
  background-color: #9ca3af;
  color: #ffffff;
  border-color: #9ca3af;
}

.footer {
  background-color: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid #f3f4f6;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333333;
}

.footer-links {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: #9ca3af;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 18px;
  color: #6b7280;
}

.social-icons a:hover {
  color: #9ca3af;
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}
