/* ============================================================
   SEARCH PAGE — SECTION WRAPPER
   ============================================================ */
.hnvshop-section {
  padding: 2rem 0 3rem;
  /* margin-top: 100px; */
}

.hnvshop-section .container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.hnvshop-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 13px;
  color: #6b6b63;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  padding: 0;
}

.hnvshop-section .breadcrumb-item+.breadcrumb-item::before {
  content: '>';
  color: #aaa9a0;
  margin-right: 6px;
}

.hnvshop-section .breadcrumb-item a {
  color: #6b6b63;
  text-decoration: none;
}

.hnvshop-section .breadcrumb-item a:hover {
  color: #185FA5;
}

.hnvshop-section .breadcrumb-item.active {
  color: #1a1a1a;
  font-weight: 500;
}

/* ============================================================
   LAYOUT: SIDEBAR + MAIN
   ============================================================ */
.hnvshop-wrapper {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hnvshop-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.hnvshop-sidebar {
  background: #ffffff;
  border: 1px solid #e2e2da;
  border-radius: 14px;
  padding: 1.25rem;
  position: sticky;
  top: 1.25rem;
}

@media (max-width: 900px) {
  .hnvshop-sidebar {
    display: none !important;
  }
}

.hnvshop-filter-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #6b6b63;
  margin-bottom: .85rem;
}

.hnvshop-filter-group {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e2da;
}

.hnvshop-filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Category accordion */
.hnvshop-category {
  margin-bottom: .85rem;
}

.hnvshop-category-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  padding: 3px 0;
  user-select: none;
}

.hnvshop-category-parent:hover {
  color: #c96b3c;
}

.hnvshop-category-parent .cat-arrow {
  font-size: 12px;
  color: #aaa9a0;
  transition: transform .2s;
}

.hnvshop-category-parent.open .cat-arrow {
  transform: rotate(180deg);
}

.hnvshop-category-children {
  padding-left: 2px;
  margin-top: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
}

.hnvshop-category-children.open {
  display: flex;
}

.hnvshop-category-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b6b63;
  cursor: pointer;
  padding: 3px 0;
}

.hnvshop-category-child:hover {
  color: #1a1a1a;
}

.hnvshop-category-child input[type="checkbox"] {
  accent-color: #c96b3c;
  width: 13px;
  height: 13px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Search input in sidebar */
.hnvshop-search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e2e2da;
  border-radius: 8px;
  font-size: 13px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color .15s;
}

.hnvshop-search-input:focus {
  border-color: #c96b3c;
}

.hnvshop-search-input::placeholder {
  color: #aaa9a0;
}

.hnvshop-search-btn {
  width: 100%;
  padding: 9px;
  border: none;
  border-radius: 8px;
  background: #185FA5;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: background .15s;
}

.hnvshop-search-btn:hover {
  background: #0C447C;
}

.hnvshop-check-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b6b63;
  margin-top: 6px;
  cursor: pointer;
}

.hnvshop-check-row input {
  accent-color: #c96b3c;
  cursor: pointer;
}

.hnvshop-cat-select {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #e2e2da;
  border-radius: 8px;
  font-size: 13px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  margin-top: 8px;
  cursor: pointer;
}

.hnvshop-cat-select:focus {
  border-color: #c96b3c;
}

/* ============================================================
   MOBILE BAR
   ============================================================ */
.hnvshop-mobile-bar {
  display: none;
  gap: 8px;
  margin-bottom: 1rem;
  position: relative;
}

@media (max-width: 900px) {
  .hnvshop-mobile-bar {
    display: flex;
  }
}

.hnvshop-mobile-btn {
  flex: 1;
  padding: 9px;
  border: 1px solid #e2e2da;
  border-radius: 10px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .15s, border-color .15s;
  position: relative;
}

.hnvshop-mobile-btn:hover {
  background: #f0f0eb;
}

.hnvshop-mobile-btn.active {
  background: #fdf0ea;
  border-color: #c96b3c;
  color: #c96b3c;
}

/* ============================================================
   SORT DROPDOWN
   ============================================================ */
.hnvshop-sort-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 220px;
  background: #ffffff;
  border: 1px solid #e2e2da;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  z-index: 300;
  overflow: hidden;
  animation: dropIn .18s ease;
}

.hnvshop-sort-dropdown.open {
  display: block;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hnvshop-sort-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 13px;
  color: #1a1a1a;
  cursor: pointer;
  transition: background .12s;
  border-bottom: 1px solid #e2e2da;
}

.hnvshop-sort-option:last-child {
  border-bottom: none;
}

.hnvshop-sort-option:hover {
  background: #fdf0ea;
  color: #c96b3c;
}

.hnvshop-sort-option.selected {
  color: #c96b3c;
  font-weight: 600;
}

.hnvshop-sort-option .sort-tick {
  display: none;
  font-size: 12px;
  color: #c96b3c;
}

.hnvshop-sort-option.selected .sort-tick {
  display: block;
}

/* ============================================================
   FILTER MODAL (bottom sheet on mobile)
   ============================================================ */
.hnvshop-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 400;
  animation: fadeIn .2s ease;
}

.hnvshop-filter-overlay.open {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hnvshop-filter-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 14px 14px 0 0;
  z-index: 401;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.hnvshop-filter-modal.open {
  transform: translateY(0);
}

.hnvshop-modal-handle {
  width: 36px;
  height: 4px;
  background: #e2e2da;
  border-radius: 99px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.hnvshop-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #e2e2da;
  flex-shrink: 0;
}

.hnvshop-modal-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.hnvshop-modal-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e2e2da;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #6b6b63;
}

.hnvshop-modal-close:hover {
  background: #f0f0eb;
}

.hnvshop-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 16px;
  -webkit-overflow-scrolling: touch;
}

.hnvshop-modal-footer {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid #e2e2da;
  flex-shrink: 0;
  background: #ffffff;
}

.hnvshop-modal-footer button {
  flex: 1;
  padding: 11px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}

.hnvshop-modal-btn-clear {
  border: 1px solid #e2e2da;
  background: #ffffff;
  color: #1a1a1a;
}

.hnvshop-modal-btn-clear:hover {
  background: #f0f0eb;
}

.hnvshop-modal-btn-apply {
  border: none;
  background: #185FA5;
  color: #fff;
}

.hnvshop-modal-btn-apply:hover {
  background: #0C447C;
}

/* ============================================================
   PRODUCT AREA
   ============================================================ */
.hnvshop-product-area {
  min-width: 0;
}

/* Banner */
.banner-container-product-category {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: #E6F1FB;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-container-product-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-container-product-category .banner-fallback {
  padding: 1rem;
}

.banner-container-product-category .banner-fallback h2 {
  font-size: 20px;
  font-weight: 600;
  color: #0C447C;
}

.banner-container-product-category .banner-fallback p {
  font-size: 12px;
  color: #185FA5;
  margin-top: 3px;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.hnvshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

@media (max-width: 480px) {
  .hnvshop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.hnvshop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hnvshop-pagination .pagination {
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.hnvshop-pagination .page-item .page-link {
  min-width: 34px;
  height: 34px;
  border: 1px solid #e2e2da;
  border-radius: 6px;
  background: #ffffff;
  color: #6b6b63;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
  padding: 0 8px;
  text-decoration: none;
}

.hnvshop-pagination .page-item .page-link:hover {
  background: #f0f0eb;
  color: #1a1a1a;
}

.hnvshop-pagination .page-item.active .page-link {
  background: #c96b3c;
  color: #fff;
  border-color: #c96b3c;
}

/* ============================================================
   SIDEBAR HEADER ROW
   ============================================================ */
.hnvshop-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hnvshop-filter-header .hnvshop-filter-title {
  margin-bottom: 0;
}

.hnvshop-clear-all-btn {
  font-size: 11px;
  font-weight: 500;
  color: #E24B4A;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none;
  align-items: center;
  gap: 3px;
  transition: opacity .15s;
}

.hnvshop-clear-all-btn:hover {
  opacity: .75;
}

.hnvshop-clear-all-btn.visible {
  display: flex;
}

/* ============================================================
   ACTIVE FILTER PILLS
   ============================================================ */
.hnvshop-active-bar {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: .85rem;
}

.hnvshop-active-bar.visible {
  display: flex;
}

.hnvshop-active-label {
  font-size: 12px;
  color: #6b6b63;
  white-space: nowrap;
}

.hnvshop-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #185FA5;
  background: #d0e8ff;
  border: 1px solid #b5d4f4;
  border-radius: 99px;
  padding: 3px 10px;
  white-space: nowrap;
  cursor: default;
  animation: pillIn .18s ease;
}

@keyframes pillIn {
  from {
    opacity: 0;
    transform: scale(.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hnvshop-filter-pill button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  color: #185FA5;
  font-size: 11px;
  display: flex;
  align-items: center;
  opacity: .7;
  margin-left: 1px;
}

.hnvshop-filter-pill button:hover {
  opacity: 1;
}

.hnvshop-pill-clearall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #E24B4A;
  background: #fef0f0;
  border: 1px solid #f5c1c1;
  border-radius: 99px;
  padding: 3px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}

.hnvshop-pill-clearall:hover {
  background: #fde0e0;
}

/* ============================================================
   MOBILE FILTER BADGE
   ============================================================ */
.hnvshop-filter-badge {
  display: none;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: #E24B4A;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

.hnvshop-filter-badge.visible {
  display: inline-flex;
}

/* TOOLBAR */
.hnvshop-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1.1rem;
  gap: 10px;
  flex-wrap: wrap;
}

.hnvshop-toolbar .form-select.w-auto {
  padding: 6px 36px 6px 12px;
  border: 1px solid #e2e2da;
  border-radius: 6px;
  font-size: 13px;
  background-color: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.hnvshop-toolbar .form-select.w-auto:focus {
  background-color: #fdf0ea;
  border-color: #c96b3c;
  color: #c96b3c;
}

@media (max-width: 900px) {
  .hnvshop-toolbar {
    display: none;
  }
}

/* Compare button styled */
.hnvshop-compare-btn {
  padding: 6px 14px;
  border: 1px solid #e2e2da;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, border-color .15s;
}

.hnvshop-compare-btn:hover {
  background: #f0f0eb;
  border-color: #c96b3c;
  color: #c96b3c;
}

/* View toggle */
.hnvshop-view-toggle {
  display: flex;
  gap: 4px;
}

.hnvshop-view-toggle button {
  width: 34px;
  height: 34px;
  border: 1px solid #e2e2da;
  border-radius: 6px;
  background: #fff;
  color: #6b6b63;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background .15s, color .15s;
}

.hnvshop-view-toggle button:hover,
.hnvshop-view-toggle button.active {
  background: #fdf0ea;
  color: #c96b3c;
  border-color: #c96b3c;
}

/* Results text */
.hnvshop-results {
  font-size: 12px;
  color: #6b6b63;
  margin-top: 1.5rem;
  text-align: center;
}

/* No results */
.hnvshop-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b6b63;
  font-size: 14px;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.hnvshop-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(2px);
}

.hnvshop-loader-overlay.visible {
  display: flex;
}

.hnvshop-loader-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #e2e2da;
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.hnvshop-loader-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #d0e8ff;
  border-top-color: #185FA5;
  border-radius: 50%;
  animation: hnvshopSpin .7s linear infinite;
}

@keyframes hnvshopSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   SEARCH TEMPLATE OVERRIDES
   ============================================================ */
.hnvshop-page-heading {
  margin-bottom: 1rem;
}

.hnvshop-page-heading h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.hnvshop-page-heading p {
  margin: 4px 0 0;
  color: #6b6b63;
  font-size: 13px;
}

.hnvshop-native-select {
  display: none;
}

.hnvshop-sidebar #column-left,
#modalFilterBody [id^="column-left"] {
  display: block !important;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

.hnvshop-sidebar #column-left>*,
#modalFilterBody [id^="column-left"]>* {
  margin-top: 1rem;
}

.hnvshop-category-parent {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
}

.hnvshop-category-child input[type="radio"],
.hnvshop-category-child input[type="checkbox"] {
  accent-color: #c96b3c;
  width: 13px;
  height: 13px;
  cursor: pointer;
  flex-shrink: 0;
}

.hnvshop-category-all {
  margin-bottom: .65rem;
  color: #1a1a1a;
  font-weight: 500;
}

.hnvshop-category-grandchild {
  padding-left: 18px;
}

.hnvshop-mobile-sort {
  flex: 1;
  position: relative;
}

#sortChevron {
  font-size: 10px;
  margin-left: auto;
  color: #aaa9a0;
  transition: transform .2s;
}

.hnvshop-sort-option {
  width: 100%;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: #fff;
  text-align: left;
}

#modalFilterCount {
  font-size: 12px;
  font-weight: 400;
  color: #6b6b63;
}

.hnvshop-active-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.hnvshop-toolbar {
  justify-content: space-between;
}

.hnvshop-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hnvshop-product-area #product-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0;
}

.hnvshop-product-area #product-list.product-list {
  display: block !important;
}

.hnvshop-product-cell {
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.hnvshop-product-area #product-list.product-list .hnvshop-product-cell {
  margin-bottom: 1rem !important;
}

.hnvshop-product-area .product-thumb {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e2e2da;
  border-radius: 8px;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.hnvshop-product-area .product-thumb:hover {
  transform: translateY(-2px);
  border-color: #d6cfc4;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.hnvshop-product-area .product-thumb .image {
  position: relative;
  aspect-ratio: 1 / 1;
  /* background: #f7f7f2; */
  overflow: hidden;
}

.hnvshop-product-area .product-thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}

.hnvshop-product-area .product-thumb:hover .image img {
  transform: scale(1.03);
}

.hnvshop-product-area .product-thumb .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hnvshop-product-area .product-thumb .description {
  padding: 12px 12px 8px;
}

.hnvshop-product-area .product-thumb h4 {
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.hnvshop-product-area .product-thumb h4 a {
  color: #1a1a1a;
  text-decoration: none;
}

.hnvshop-product-area .product-thumb h4 a:hover {
  color: #185FA5;
}

.hnvshop-product-area .product-thumb .description p {
  margin: 0 0 8px;
  color: #6b6b63;
  font-size: 12px;
  line-height: 1.4;
}

.hnvshop-product-area .product-thumb .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.hnvshop-product-area .product-thumb .price-new {
  color: #185FA5;
  font-size: 15px;
  font-weight: 700;
}

.hnvshop-product-area .product-thumb .price-old {
  color: #aaa9a0;
  font-size: 12px;
  text-decoration: line-through;
}

.hnvshop-product-area .product-thumb .price-tax {
  flex-basis: 100%;
  color: #6b6b63;
  font-size: 11px;
}

.hnvshop-product-area .product-thumb .rating {
  margin-top: 6px;
  color: #f5a623;
  font-size: 11px;
}

.hnvshop-product-area .product-thumb form {
  margin-top: auto;
}

.hnvshop-product-area .product-thumb .button {
  display: grid;
  grid-template-columns: 1fr 38px 38px;
  gap: 6px;
  padding: 0 12px 12px;
}

.hnvshop-product-area .product-thumb .button button {
  height: 36px;
  border: 1px solid #e2e2da;
  border-radius: 6px;
  background: #fff;
  color: #1a1a1a;
  transition: background .15s, color .15s, border-color .15s;
}

.hnvshop-product-area .product-thumb .button button:first-child {
  border-color: #185FA5;
  background: #185FA5;
  color: #fff;
}

.hnvshop-product-area .product-thumb .button button:hover {
  border-color: #c96b3c;
  background: #fdf0ea;
  color: #c96b3c;
}

.hnvshop-product-area .product-thumb .button button:first-child:hover {
  border-color: #0C447C;
  background: #0C447C;
  color: #fff;
}

.banner-container-product-category .banner-fallback {
  display: none;
}

@media (max-width: 900px) {
  .hnvshop-page-heading h1 {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .hnvshop-product-area #product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }

  .hnvshop-product-area .product-thumb .button {
    grid-template-columns: 1fr 34px 34px;
    gap: 5px;
  }
}
