/* ===================================
   Shop Page Styles
   =================================== */

/* Container Width Override for Shop Page */
.shop-content .container {
  max-width: 1140px;
}

/* Banner Section */
.shop-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.shop-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.shop-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.shop-banner__title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

/* Shop Content */
.shop-content {
  padding: 60px 0;
}

/* Sidebar */
.shop-sidebar {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.shop-sidebar__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
  text-transform: uppercase;
}

.shop-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-categories__item {
  margin-bottom: 12px;
}

.shop-categories__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #ffffff;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.shop-categories__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.shop-categories__icon svg {
  width: 16px;
  height: 16px;
}

.shop-categories__name {
  flex: 1;
}

.shop-categories__count {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 400;
}

.shop-categories__link:hover,
.shop-categories__link.active {
  background: #dc4d28;
  color: #ffffff;
  transform: translateX(5px);
}

/* Subcategories */
.shop-categories--subcategories {
  margin-top: 6px;
  padding-left: 0;
  list-style: none;
}

.shop-categories__item--level-1 {
  margin-bottom: 6px;
}

.shop-categories__item--level-1 .shop-categories__link {
  padding: 10px 12px 10px 35px;
  font-size: 13px;
  background: linear-gradient(90deg, #fef5f1 0%, #ffffff 100%);
  border-left: 3px solid #dc4d28;
  border-radius: 0 6px 6px 0;
  position: relative;
  margin-left: 10px;
}

.shop-categories__item--level-1 .shop-categories__link::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #dc4d28;
  border-radius: 50%;
}

.shop-categories__item--level-1 .shop-categories__link .shop-categories__icon {
  display: none;
}

.shop-categories__item--level-1 .shop-categories__link:hover {
  background: linear-gradient(90deg, #dc4d28 0%, #f5744d 100%);
  color: #ffffff;
  transform: translateX(8px);
}

.shop-categories__item--level-1 .shop-categories__link:hover::before {
  background: #ffffff;
}

.shop-categories__item--level-2 {
  margin-bottom: 6px;
}

.shop-categories__item--level-2 .shop-categories__link {
  padding: 8px 12px 8px 50px;
  font-size: 12px;
  background: #f9f9f9;
  border-left: 2px solid #f5a085;
  border-radius: 0 6px 6px 0;
  margin-left: 20px;
  position: relative;
}

.shop-categories__item--level-2 .shop-categories__link::before {
  content: "→";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5a085;
  font-size: 10px;
}

.shop-categories__item--level-2 .shop-categories__link .shop-categories__icon {
  display: none;
}

.shop-categories__item--level-2 .shop-categories__link:hover {
  background: linear-gradient(90deg, #f5a085 0%, #dc4d28 100%);
  color: #ffffff;
  transform: translateX(8px);
}

.shop-categories__item--level-2 .shop-categories__link:hover::before {
  color: #ffffff;
}

/* Origins Filter */
.shop-origins {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-origins__item {
  margin-bottom: 12px;
}

.shop-origins__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #ffffff;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid #e8e8e8;
}

.shop-origins__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #dc4d28;
}

.shop-origins__icon svg {
  width: 16px;
  height: 16px;
}

.shop-origins__name {
  flex: 1;
}

.shop-origins__count {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 400;
}

.shop-origins__link:hover,
.shop-origins__link.active {
  background: linear-gradient(135deg, #dc4d28 0%, #ff6b47 100%);
  color: #ffffff;
  border-color: #dc4d28;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(220, 77, 40, 0.25);
}

.shop-origins__link:hover .shop-origins__icon,
.shop-origins__link.active .shop-origins__icon {
  color: #ffffff;
}

/* Filters & Sort */
.shop-filters {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #fde9e3;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.shop-filters__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-start;
}

.shop-filters__section {
  flex: 1;
  min-width: 280px;
}

.shop-filters__heading {
  font-size: 15px;
  font-weight: 700;
  color: #dc4d28;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-filters__heading::before {
  content: "";
  width: 4px;
  height: 18px;
  background: #dc4d28;
  border-radius: 2px;
}

.shop-filters__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.shop-filter,
.shop-sort {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.shop-filter__label,
.shop-sort__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.shop-filter__select,
.shop-sort__select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.shop-filter__select:hover,
.shop-sort__select:hover {
  border-color: #dc4d28;
  box-shadow: 0 0 0 3px rgba(220, 77, 40, 0.1);
}

.shop-filter__select:focus,
.shop-sort__select:focus {
  outline: none;
  border-color: #dc4d28;
  box-shadow: 0 0 0 4px rgba(220, 77, 40, 0.15);
}

.shop-filter__select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.5;
  border-color: #e0e0e0;
}

/* Five Equal Columns Layout for Shop Filters */
.shop-filters__wrapper--five-columns {
  flex-direction: column;
  gap: 0;
}

.shop-filters__controls--five-columns {
  display: flex;
  gap: 15px;
  align-items: stretch;
  width: 100%;
}

.shop-filter--equal {
  flex: 1;
  min-width: 0; /* Allow equal distribution */
  margin-bottom: 0;
}

/* Ensure all selects have same height and styling */
.shop-filter--equal .shop-filter__select,
.shop-filter--equal .shop-sort__select {
  width: 100%;
  height: 50px; /* Fixed height for consistency */
}

/* Responsive adjustments for five columns layout */
@media (max-width: 1200px) {
  .shop-filters__controls--five-columns {
    gap: 12px;
  }
}

@media (max-width: 992px) {
  .shop-filters__controls--five-columns {
    flex-wrap: wrap;
  }

  .shop-filter--equal {
    flex: 1 1 calc(33.333% - 8px);
    min-width: calc(33.333% - 8px);
  }
}

@media (max-width: 768px) {
  .shop-filters__controls--five-columns {
    flex-wrap: wrap;
    gap: 10px;
  }

  .shop-filter--equal {
    flex: 1 1 calc(50% - 5px);
    min-width: calc(50% - 5px);
  }
}

@media (max-width: 576px) {
  .shop-filters__controls--five-columns {
    flex-direction: column;
    gap: 10px;
  }

  .shop-filter--equal {
    flex: 1;
    min-width: 100%;
  }
}

/* Single Row Layout (Legacy - kept for compatibility) */
.shop-filters__wrapper--single-row {
  flex-direction: column;
  gap: 0;
}

.shop-filters__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.shop-filters__column {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.shop-filters__column--filters {
  flex: 3;
}

.shop-filters__column--sort {
  flex: 1;
}

.shop-filters__controls--single-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.shop-filter--inline,
.shop-sort--inline {
  flex: 1;
  min-width: 150px;
  margin-bottom: 0;
}

.shop-filter--inline.shop-filter--inline,
.shop-sort--inline.shop-sort--inline {
  min-width: 140px;
}

/* Active Filters */
.shop-filters__active {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px dashed #e0e0e0;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.shop-filters__active-label {
  font-weight: 700;
  color: #555;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-filters__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #fde9e3 0%, #fdd4c6 100%);
  color: #dc4d28;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #f5a085;
  transition: all 0.3s ease;
}

.filter-tag:hover {
  background: linear-gradient(135deg, #fdd4c6 0%, #f5a085 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 77, 40, 0.2);
}

.filter-tag__remove {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  color: #dc4d28;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  line-height: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 700;
}

.filter-tag__remove:hover {
  background: #ffffff;
  transform: rotate(90deg);
  color: #d32f2f;
}

.shop-filters__clear {
  padding: 10px 20px;
  background: #dc4d28;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(220, 77, 40, 0.3);
}

.shop-filters__clear:hover {
  background: #b83d20;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 77, 40, 0.4);
}

.shop-filters__clear:active {
  transform: translateY(0);
}

/* Product Section */
.product-section {
  margin-bottom: 50px;
}

.product-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #dc4d28;
}

.product-section__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
  text-transform: uppercase;
}

.product-section__toggle {
  background: #dc4d28;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-section__toggle:hover {
  background: #b83d1f;
}

.product-section__toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.product-section__toggle[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.product-section__toggle[aria-expanded="false"] svg {
  transform: rotate(0deg);
}

.product-section__content {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.product-section__content.collapsed {
  max-height: 0;
  opacity: 0;
}

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

/* Desktop: 5 columns for large screens */
@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

/* Product Card - Modern Design */
.product-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #dc4d28;
}

/* Image Wrapper */
.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-card__image-link {
  display: block;
  text-decoration: none;
}

.product-card__image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

/* Discount Badge - Top Left */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.badge-percent {
  display: inline-block;
  background: #dc4d28;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(255, 71, 87, 0.3);
  letter-spacing: 0.5px;
}

/* Brand Logo - Top Right */
.product-card__brand {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 50px;
  max-height: 50px;
}

.product-card__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Content */
.product-card__content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Title */
.product-card__title-link {
  text-decoration: none;
  color: inherit;
}

.product-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #2d3436;
  margin: 0;
  line-height: 1.4;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.product-card__title-link:hover .product-card__title {
  color: #dc4d28;
}

/* Pricing */
.product-card__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.price-sale {
  font-size: 17px;
  font-weight: 700;
  color: #dc4d28;
  line-height: 1;
  white-space: nowrap;
}

.price-regular {
  font-size: 13px;
  font-weight: 500;
  color: #95a5a6;
  text-decoration: line-through;
  line-height: 1;
  white-space: nowrap;
}

.price-current,
.price-variable {
  font-size: 17px;
  font-weight: 700;
  color: #2d3436;
  line-height: 1;
  white-space: nowrap;
}

/* Packaging Specification */
.product-card__packaging {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #636e72;
  font-size: 13px;
  font-weight: 500;
}

.product-card__packaging svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Product Origin */
.product-card__origin {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
  border: 1px solid #fde9e3;
  border-radius: 8px;
  color: #dc4d28;
  font-size: 13px;
  font-weight: 500;
}

.product-card__origin svg {
  flex-shrink: 0;
  stroke: #dc4d28;
}

/* Add to Cart Button */
.product-card__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #DC4D28;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  box-shadow: 0 4px 12px rgba(220, 77, 40, 0.2);
}

.product-card__add-to-cart:hover {
  background: #b83d1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 77, 40, 0.3);
}

/* Select Options Button for Variable Products */
.product-card__select-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #DC4D28;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  box-shadow: 0 4px 12px rgba(220, 77, 40, 0.2);
  text-decoration: none;
}

.product-card__select-options:hover {
  background: #b83d1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 77, 40, 0.3);
  text-decoration: none;
  color: #ffffff;
}

.product-card__add-to-cart:active {
  transform: translateY(0);
}

.product-card__add-to-cart svg {
  flex-shrink: 0;
}

/* Product Section Footer */
.product-section__footer {
  text-align: center;
  margin-top: 30px;
}

.product-section__view-all {
  display: inline-block;
  padding: 12px 30px;
  background: #ffffff;
  border: 2px solid #dc4d28;
  color: #dc4d28;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-section__view-all:hover {
  background: #dc4d28;
  color: #ffffff;
}

/* No Products */
.shop-no-products {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.shop-no-products p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .shop-banner__title {
    font-size: 36px;
  }

  .product-section__title {
    font-size: 24px;
  }

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

@media (max-width: 767px) {
  .shop-banner {
    min-height: 200px;
  }

  .shop-banner__title {
    font-size: 28px;
  }

  /* Hide sidebar on mobile */
  .shop-content .col-lg-3.col-md-4 {
    display: none;
  }

  /* Make main content full width on mobile */
  .shop-content .col-lg-9.col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .shop-filters__wrapper {
    flex-direction: column;
    gap: 20px;
  }

  /* Filter Tags Mobile */
  .shop-filters__active {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .shop-filters__active-label {
    font-size: 13px;
    width: 100%;
  }

  .shop-filters__tags {
    width: 100%;
    gap: 8px;
  }

  .filter-tag {
    font-size: 12px;
    padding: 6px 10px;
    gap: 6px;
  }

  .filter-tag__remove {
    width: 18px;
    height: 18px;
  }

  .filter-tag__remove svg {
    width: 10px;
    height: 10px;
  }

  .shop-filters__clear {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Product grid - 2 columns on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-section__title {
    font-size: 20px;
  }

  /* Add to cart button - hide text, show only icon */

  .product-card__add-to-cart .button-text {
    display: none;
    padding: 10px;
  }
  .price-regular {
    display: none;
  }
}

@media (max-width: 575px) {
  /* Keep 2 columns even on very small screens */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ===================================
   Pagination Styles
   =================================== */

.shop-pagination {
  margin-top: 50px;
}

.shop-pagination .page-numbers {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-pagination .page-numbers li {
  display: inline-block;
}

.shop-pagination a.page-numbers,
.shop-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.shop-pagination a.page-numbers:hover {
  background: #dc4d28;
  border-color: #dc4d28;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 77, 40, 0.25);
}

.shop-pagination span.page-numbers.current {
  background: linear-gradient(135deg, #dc4d28 0%, #ff6b47 100%);
  border-color: #dc4d28;
  color: #ffffff;
  font-weight: 700;
}

.shop-pagination .prev,
.shop-pagination .next {
  padding: 8px 16px;
}

.shop-pagination a.prev:hover,
.shop-pagination a.next:hover {
  padding-left: 20px;
  padding-right: 20px;
}

/* No Products Message */
.shop-no-products {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e8e8e8;
  border-radius: 12px;
}

.shop-no-products h3 {
  color: #666;
  margin-bottom: 10px;
  font-size: 24px;
}

.shop-no-products p {
  color: #999;
  font-size: 16px;
  margin-bottom: 20px;
}

.shop-no-products a {
  display: inline-block;
  padding: 12px 24px;
  background: #dc4d28;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.shop-no-products a:hover {
  background: #b83d1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 77, 40, 0.3);
}

/* ===================================
   Shop Product Search
   =================================== */

.shop-search {
  margin-bottom: 30px;
}

.shop-search__wrapper {
  position: relative;
  width: 100%;
}

.shop-search__input {
  width: 100%;
  padding: 14px 100px 14px 20px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

.shop-search__input:focus {
  border-color: #dc4d28;
  box-shadow: 0 0 0 3px rgba(220, 77, 40, 0.1);
}

.shop-search__input::placeholder {
  color: #999;
}

.shop-search__button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #dc4d28;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.shop-search__button:hover {
  background: #b83d1f;
  transform: translateY(-50%) scale(1.05);
}

.shop-search__button svg {
  width: 20px;
  height: 20px;
}

.shop-search__clear {
  position: absolute;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.shop-search__clear:hover {
  opacity: 1;
  background: #e0e0e0;
}

.shop-search__clear svg {
  width: 16px;
  height: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .shop-search__wrapper {
    max-width: 100%;
  }

  .shop-search__input {
    padding: 12px 90px 12px 16px;
    font-size: 14px;
  }

  .shop-search__button {
    width: 40px;
    height: 40px;
  }

  .shop-search__button svg {
    width: 18px;
    height: 18px;
  }

  .shop-search__clear {
    right: 50px;
    width: 28px;
    height: 28px;
  }
}
