:root {
  --card-w: 220px;
  --card-h: 290px;
  --accent-red: #c81b20;
  --price-red: #c81b20;
  --muted: #222;
  --bg: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #f1f1f1;
  --bg-card: #ffffff;
  --text-primary: #000000;
  --text-secondary: #666666;
  --border-color: #e5e7eb;
  --header-bg: rgb(255, 188, 43);
  --shadow: rgba(0, 0, 0, 0.1);
}

body.dark-mode {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-card: #252525;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --border-color: #404040;
  --header-bg: rgb(180, 130, 20);
  --shadow: rgba(0, 0, 0, 0.3);
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  /* background-image: url('../imges/worldCup01.jpg'); */
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; */
  color: var(--text-primary);
  /* transition: background-color 0.3s, color 0.3s; */
  background-color: var(--bg-secondary);
}

.header-shock {
  background-color: var(--header-bg);
  width: 100%;
  height: auto;
  padding: 20px 0px 20px 0px;
  position: sticky;
  top: 0;
  z-index: 11;
}

.header-shock.basket {
  padding: 5px;
}

/* .header-shock .container {
  display: flex;
  align-items: center;
  gap: 20px;
} */

.header-shock .search-content {
  position: relative;
}

.header-shock .search-input {
  padding: 12px 120px 12px 16px;
  /* border: 1px solid #e5e7eb; */
  border-radius: 3px;
  font-size: 16px;
  border: none;
  background-color: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.header-shock .search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  box-shadow: none;
}

.serch-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 20px;
  background-color: #3794ff;
  color: white;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.serch-button:hover {
  background-color: #1d4ed8;
}

.header-shock .basket {
  width: 80px;
  height: 40px;
  /* background-color: rgb(255, 255, 255); */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: white;
}

.header-shock .basket.hidden {
  visibility: hidden;
}

.header-shock .baner-icon {
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
}

.header-shock .back-step-header {
  display: none;
}

.baner-content {
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(78, 78, 78, 0.1);
}

.baner-content .content-menu-all {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  overflow-x: auto;
  width: 100%;
}

.baner-content .content-menu-all .menu-all {
  width: 100%;
  display: grid;
  /* grid-template-columns: repeat(6, 1fr); */
  grid-template-columns: 100px 100px 100px;
  height: 80px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.content-menu-all .menu-all .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.content-menu-all .menu-all .menu-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* gap: 10px; */
  color: #707070;
  width: 55px;
  height: 55px;
}

.content-menu-all .menu-all .menu-item .text-icon {
  font-size: 0.8rem;
  text-align: center;
  color: #5a5a5a;
}

/* .menu-all .menu-item i {
  font-size: 2rem;
  color: #1884ff;
} */

.item-presentation {
  /* background-color: rgb(255, 255, 255); */
  margin-bottom: 20px;
}

.item-presentation .container,
.brand-list .container,
.list-item-all-main .container {
  background-color: rgb(255, 255, 255);
}

.item-presentation .container {
  display: flex;
  justify-content: space-between;
}

.list-item-all-main.search-page .container {
  background-color: unset;
}

/* Filter Toggle Button - Hidden on desktop */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-toggle-btn:hover {
  background-color: #2563eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.filter-toggle-btn:active {
  transform: scale(0.98);
}

/* Filter Overlay - Hidden by default */
.filter-overlay {
  display: none;
}

/* Close button - Hidden on desktop */
.close-filter-btn {
  display: none;
}

.title-content {
  width: 100%;
  /* padding: 30px; */
  height: 60px;
  padding: 0 15px 0 15px;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  justify-content: space-between;
}

.title-content .icon {
  color: #fd8b09;
}

.title-content .more-all {
  font-size: 0.9rem;
  color: #3794ff;
  cursor: pointer;
}

/* View All Products Button */
.view-all-products-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  /* background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); */
  background-color: #e2e2e2;
  color: rgb(136, 136, 136);
  border: none;
  /* border-radius: 12px; */
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); */
  min-width: 500px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.view-all-products-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.view-all-products-btn:active {
  transform: translateY(0);
}

.view-all-products-btn i {
  transition: transform 0.3s ease;
}

.view-all-products-btn:hover i {
  transform: translateX(4px);
}

.item-presentation .list-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 15px;
  padding: 10px 10px 10px 10px;
  width: 880px;
  overflow-x: auto;
}

.item-presentation .list-item .item-box {
  width: 200px;
  padding: 0;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin-left: 10px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.item-presentation .list-item .item-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.list-item .item-box .content-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.list-item .item-box .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.list-item .item-box:hover .content-image img {
  transform: scale(1.05);
}

.list-item .item-box .ribbon-pro {
  position: absolute;
  top: 10px;
  left: -10px;
  background-color: #ff4757;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(-45deg);
}

.list-item .item-box .item-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  padding: 10px 12px 5px;
  min-height: 45px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.item-name .hl-text-title {
  background-color: #0b89ff;
  padding: 1px 4px;
  color: #fff;
  border-radius: 3px;
}

.item-name .hl-text-title.hidden {
  display: none;
}

.item-name .hl-text-title.red {
  background-color: #ff1c3a;
}
.item-name .hl-text-title.blue {
  background-color: #107fff;
}
.item-name .hl-text-title.green {
  background-color: #00d13f;
}
.item-name .hl-text-title.orage {
  background-color: #ffa218;
}

/* .list-item .item-box .item-price {
  width: 100%;
  background: linear-gradient(135deg, #dc143c 0%, #ff0000 100%);
  color: white;
  padding: 12px 15px;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
} */

.list-item .item-box .item-price .price {
  font-size: 1.4rem;
}

.brand-list {
  /* background-color: rgb(255, 255, 255); */
  /* margin-bottom: 10px; */
  margin-bottom: 20px;
}

.brand-list .container {
  background-color: rgb(255, 255, 255);
}

.brand-list .list-brand {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: minmax(100px, 1fr);
  /* gap: 15px; */
  /* padding: 15px; */
  overflow-x: auto;
}

.brand-list .list-brand .brand-item {
  border: 1px solid #e5e7eb;
  /* border-radius: 6px; */
  padding: 15px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-list .list-brand .brand-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.brand-list .list-brand .brand-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand-list .list-brand .brand-item .text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.list-item-all-main {
  margin-bottom: 20px;
}

.list-item-all-main .list-item-all {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  justify-content: flex-start;
  align-content: flex-start;
}

.list-item-all-main.search-page .list-item-all {
  padding: 15px 0;
}

.list-item-all-main .list-item-all .item-box {
  width: 220px;
  height: 320px;
  flex-grow: 0;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  /* padding: 10px; */
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.list-item-all-main.search-page .list-item-all .item-box {
  width: 220px;
  height: 320px;
}

.list-item-all-main .list-item-all .item-box:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.list-item-all-main .list-item-all .item-box .content-img {
  width: 100%;
  height: 150px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.list-item-all-main .list-item-all .item-box .content-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.list-item-all-main .list-item-all .item-box .content-img .icon-discount {
  position: absolute;
  top: 0px;
  right: 0px;
  background: linear-gradient(135deg, #ffb700 0%, #ff8c00 100%);
  color: white;
  padding: 3px 6px;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 0 0 0 8px;
  box-shadow: 0 4px 12px rgba(255, 183, 0, 0.4);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  /* animation: pulse-discount 2s ease-in-out infinite; */
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.list-item-all-main
  .list-item-all
  .item-box
  .content-img
  .icon-discount.hidden {
  display: none;
}

/* @keyframes pulse-discount {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255, 183, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 183, 0, 0.6);
  }
} */

.list-item-all-main .list-item-all .item-box .detail-tem {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.list-item-all-main .list-item-all .item-box .detail-tem .item-name {
  font-size: 0.7rem;
  color: #353535;
  margin-bottom: 5px;
  height: 50px;
  overflow: hidden;
}

.list-item-all-main .list-item-all .item-box .btn-action {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.list-item-all-main .list-item-all .item-box .btn-action .item-price {
  color: #ffa600;
}

.list-item-all-main .list-item-all .item-box .btn-action .btn-add-cart {
  width: 60px;
  padding: 10px;
  background-color: #0c7eff;
  /* border: 1px solid #3794ff; */
  /* color: #3794ff; */
  /* border: none; */
  color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  /* font-size: 0.9rem; */
  transition: background-color 0.3s;
  font-size: 0.7rem;
}

.list-item-all-main .list-item-all .item-box .btn-action .btn-add-cart:hover {
  background-color: #cee7ff;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 30px 15px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  background-color: white;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-btn:hover:not(:disabled) {
  background-color: #3794ff;
  color: white;
  border-color: #3794ff;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 5px;
  align-items: center;
}

.page-num {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  background-color: white;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.page-num:hover {
  background-color: #3794ff;
  color: white;
  border-color: #3794ff;
}

.page-num.active {
  background-color: #3794ff;
  color: white;
  border-color: #3794ff;
  font-weight: 600;
}

.dots {
  color: #888;
  padding: 0 5px;
}

.ribbon {
  position: absolute;
  right: var(--right, 10px);
  top: var(--top, -3px);
  filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.5));
}

.ribbon > .content {
  color: white;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 400;
  background: var(--color, #2ca7d8)
    linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.25) 100%);
  padding: 8px 2px 4px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
  width: var(--width, 32px);
  min-height: var(--height, 36px);
  transition: clip-path 1s, padding 1s, background 1s;
}

.ribbon.down > .content {
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 8px),
    50% 100%,
    0 calc(100% - 8px)
  );
}

.keyword-search {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

.keyword-search .container {
  padding: 15px;
}

.keyword-search .cover-content-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.keyword-search .cover-content-search > span {
  font-size: 16px;
  color: #374151;
  font-weight: 500;
}

.cover-content-search strong {
  font-size: 18px;
  color: #3b82f6;
  font-weight: 600;
}

.cover-content-search .content-sort {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.cover-content-search .content-sort span {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
}

.cover-content-search .content-sort select {
  min-width: 200px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.cover-content-search .content-sort select:hover {
  border-color: #3b82f6;
}

.cover-content-search .content-sort select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cover-content-search .content-sort select:hover {
  border-color: #ffbc2b;
}

.cover-content-search .content-sort select:focus {
  outline: none;
  border-color: #ffbc2b;
  box-shadow: 0 0 0 3px rgba(255, 188, 43, 0.1);
}

.cover-content-search .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff3e0;
  color: #ff9800;
  border-radius: 8px;
  font-size: 18px;
}

.filterbrand-page-header .cover-content-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 15px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Support */
body.dark-mode .header-shock {
  background-color: var(--header-bg);
}

body.dark-mode .item-box,
body.dark-mode .card-product,
body.dark-mode .brand-item {
  background-color: var(--bg-card);
  border-color: var(--border-color);
  box-shadow: 0 2px 4px var(--shadow);
}

body.dark-mode .item-name,
body.dark-mode .item-price,
body.dark-mode .detail-tem {
  color: var(--text-primary);
}

body.dark-mode .search-input {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-color);
}

body.dark-mode .btn-add-cart {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

body.dark-mode .btn-add-cart:hover {
  background-color: var(--bg-secondary);
}

body.dark-mode .cover-content-search .content-sort span {
  color: #e0e0e0;
}

body.dark-mode .cover-content-search .content-sort select {
  background-color: #2d2d2d;
  border-color: #3a3a3a;
  color: #e0e0e0;
}

body.dark-mode .cover-content-search .content-sort select:hover,
body.dark-mode .cover-content-search .content-sort select:focus {
  border-color: #ffbc2b;
}

body.dark-mode .filterbrand-page-header .cover-content-search {
  background-color: #2d2d2d;
}

body.dark-mode .cover-content-search .icon {
  background-color: #3a2a00;
  color: #ffb74d;
}

@media (max-width: 768px) {
  .filterbrand-page-header .cover-content-search {
    flex-direction: column;
    gap: 15px;
  }

  .cover-content-search .content-sort {
    width: 100%;
  }

  .cover-content-search .content-sort select {
    flex: 1;
    min-width: auto;
  }
}

@media (max-width: 1280px) {
  .list-item-all-main .list-item-all .item-box {
    width: calc(20% - 12px);
  }
}

@media (max-width: 1024px) {
  .header-shock .baner-icon {
    display: none;
  }

  .list-item-all-main .list-item-all .item-box {
    width: calc(25% - 11.25px);
  }
}

@media (max-width: 768px) {
  .list-item-all-main .list-item-all .item-box {
    width: calc(33.333% - 10px);
  }
}

@media (max-width: 600px) {
  .container {
    width: 100%;
  }
  .header-shock {
    padding: 10px;
  }
  .header-shock .search-input {
    font-size: 0.8rem;
  }
  .header-shock .basket {
    width: 40px;
    /* background-color: rgb(255, 255, 255); */
  }
  .baner-content img {
    display: none;
  }

  .list-item-all-main .list-item-all {
    gap: 10px;
    padding: 10px;
  }

  .list-item-all-main .list-item-all .item-box {
    width: calc(50% - 5px);
  }

  .list-item-all-main .list-item-all .item-box .content-img {
    height: 120px;
  }

  .pagination {
    padding: 20px 10px;
    gap: 5px;
  }

  .page-btn,
  .page-num {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 0.85rem;
  }

  .page-numbers .page-num:nth-child(n + 4):nth-last-child(n + 3) {
    display: none;
  }
  .brand-list {
    display: none;
  }
}

@media (max-width: 400px) {
  .list-item-all-main .list-item-all .item-box {
    width: 100%;
  }
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ee4d2d;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  min-width: 18px;
  text-align: center;
}

.basket {
  position: relative;
  cursor: pointer;
  /* transition: transform 0.2s; */
}

.basket:hover {
  /* transform: scale(1.1); */
}

/* Page Transitions */
[v-cloak] {
  display: none;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.card-product {
  position: relative;
  width: var(--card-w);
  height: var(--card-h);
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  /* box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12); */
  padding: 16px 16px 0 16px;
}

/* radial rays behind the shoe */
.card-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 250deg,
    rgba(0, 0, 0, 0.06) 0deg 1.6deg,
    transparent 1.6deg 4.8deg
  );
  opacity: 0.27;
  transform: scale(1.4) translateY(-6%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(
    circle at 50% 40%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0) 72%
  );
}

/* logo top center */
.logo {
  position: relative;
  z-index: 5;
  display: block;
  margin: 6px auto 6px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.2);
}

/* shoe area */
.shoe-wrap {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 66%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.shoe {
  width: 78%;
  max-width: 300px;
  transform: rotate(-12deg) translateY(-6%);
  transition: transform 0.35s ease;
  filter: drop-shadow(0 18px 28px rgba(2, 6, 23, 0.18))
    drop-shadow(0 6px 10px rgba(2, 6, 23, 0.08));
}

/* bottom info area */
.bottom-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 8;
}

/* product text (left) */
.product-info {
  color: #111;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 6px;
}
.product-info .line {
  /* font-size: 12px; */
  font-weight: 500;
  letter-spacing: 0.2px;
  font-size: 0.6rem;
}
/* .product-info .model {
  font-weight: 800;
  font-size: 11.5px;
  color: #111;
}
.product-info .sku {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
} */

/* price badge (right) */
.price-badge {
  background: linear-gradient(180deg, #e23a37 0%, var(--price-red) 100%);
  color: #fff;
  border-radius: 10px;
  min-width: 70px;
  padding: 9px 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0px;
  box-shadow: 0 6px 14px rgba(200, 27, 32, 0.25);
}

/* price number big */
.price-number {
  font-family: "Montserrat", "Roboto", sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  line-height: 1;
  /* margin-right: 6px; */
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

/* currency small block on the right */
.price-currency {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
  padding-left: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  margin-left: 6px;
}

.filterbrand-page-header .container {
  /* background-color: rgb(255, 255, 255); */
  /* padding: 15px; */
  margin: 20px auto;
}

.filterbrand-page-header .content-logo-brand {
  background-color: #ffffff;
  width: 100%;
  height: 120px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filterbrand-page-header .content-logo-brand img {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
}
.filterbrand-page-header .content-logo-brand .brand-name {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-left: 15px;
}

/* Back Button */
.content-back-btn {
  /* background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.content-back-btn button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.content-back-btn button:hover {
  color: #ffbc2b;
}

.content-back-btn button i {
  font-size: 18px;
}

/* Letter Key Navigation */
.letter-key {
  background-color: #ffffff;
  padding: 20px 0;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.letter-key .container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.letter-key .list-letter {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  list-style: none;
  padding: 0 10px;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  flex: 1;
}

.letter-key .list-letter::-webkit-scrollbar {
  display: none;
}

.letter-key .list-letter {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.letter-key .scroll-btn {
  width: 45px;
  height: 45px;
  background-color: #ffbc2b;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 150;
  position: relative;
  pointer-events: auto;
}

.letter-key .scroll-btn:hover {
  background-color: #e6a824;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.letter-key .scroll-btn:active {
  transform: scale(0.95);
}

.letter-key .letter-item {
  transition: all 0.3s ease;
}

.letter-key .letter-item span {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #f5f5f5;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.letter-key .letter-item span:hover {
  background-color: #ffbc2b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.letter-key .letter-item span:active {
  transform: translateY(0);
}

.letter-key .letter-item span.active {
  background-color: #ffbc2b;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Brand List Container */
.brand-list-container {
  padding: 20px 0;
  min-height: 500px;
}

.letter-section {
  margin-bottom: 50px;
  padding: 20px 0;
}

.letter-header {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ffbc2b;
  display: inline-block;
  min-width: 80px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  padding: 10px 0;
}

.brand-item {
  background-color: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 4px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  border-color: #ffbc2b;
}

.brand-item img {
  max-width: 140px;
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.brand-item:hover img {
  transform: scale(1.02);
}

.brand-item span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* Dark Mode Support */
body.dark-mode .letter-key {
  background-color: #2d2d2d;
}

body.dark-mode .letter-key .letter-item span {
  background-color: #3a3a3a;
  color: #e0e0e0;
}

body.dark-mode .letter-key .letter-item span:hover {
  background-color: #ffbc2b;
  color: #fff;
}

body.dark-mode .letter-header {
  color: #e0e0e0;
  border-bottom-color: #ffbc2b;
}

body.dark-mode .brand-item {
  background-color: #2d2d2d;
  border-color: #3a3a3a;
  color: #e0e0e0;
}

body.dark-mode .brand-item:hover {
  border-color: #ffbc2b;
}

body.dark-mode .brand-item span {
  color: #e0e0e0;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s;
  border-radius: 50%;
}

.theme-toggle-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(20deg);
}

body.dark-mode .theme-toggle-btn {
  color: #fbbf24;
}

/* small responsive tweak */
@media (max-width: 420px) {
  .card {
    transform: scale(0.95);
  }
  .price-number {
    font-size: 24px;
  }
}

.loaddingconntent-isshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313131ee;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loaddingconntent-isshow.hidden {
  display: none;
}
/* HTML: <div class="loader"></div> */
/* From Uiverse.io by SelfMadeSystem */
.absolute {
  position: absolute;
}

.inline-block {
  display: inline-block;
}

.loaders-container {
  display: flex;
  margin: 0.25em 0;
}

.w-2 {
  width: 0.5em;
}

.dash {
  animation: dashArray 2s ease-in-out infinite, dashOffset 2s linear infinite;
}

.spin {
  animation: spinDashArray 2s ease-in-out infinite, spin 8s ease-in-out infinite,
    dashOffset 2s linear infinite;
  transform-origin: center;
}

@keyframes dashArray {
  0% {
    stroke-dasharray: 0 1 359 0;
  }

  50% {
    stroke-dasharray: 0 359 1 0;
  }

  100% {
    stroke-dasharray: 359 1 0 0;
  }
}

@keyframes spinDashArray {
  0% {
    stroke-dasharray: 270 90;
  }

  50% {
    stroke-dasharray: 0 360;
  }

  100% {
    stroke-dasharray: 270 90;
  }
}

@keyframes dashOffset {
  0% {
    stroke-dashoffset: 365;
  }

  100% {
    stroke-dashoffset: 5;
  }
}

@keyframes spin {
  0% {
    rotate: 0deg;
  }

  12.5%,
  25% {
    rotate: 270deg;
  }

  37.5%,
  50% {
    rotate: 540deg;
  }

  62.5%,
  75% {
    rotate: 810deg;
  }

  87.5%,
  100% {
    rotate: 1080deg;
  }
}

/* Banner Slider */
.banner-slider-container {
  position: relative;
  width: 375px;
  max-width: 375px;
  margin: 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 550px;
}

.banner-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner-slider .slide.active {
  opacity: 1;
}

.banner-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background-color: rgba(255, 255, 255, 1);
  width: 30px;
  border-radius: 6px;
}

.slider-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Dark Mode Support for Slider */
body.dark-mode .banner-slider-container {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1280px) {
  /* .brand-list-container .container,
  .letter-key .container {
    width: 100% !important;
    padding: 0 20px;
  } */
  .item-presentation .list-item {
    display: none;
  }
  .banner-slider-container {
    width: 100%;
    max-width: 100%;
  }

  .banner-slider {
    height: 1200px;
  }
  .baner-content .content-menu-all .menu-all { 
    grid-template-columns: auto auto auto;
    justify-content: unset;
    align-items: unset;
  }
}

@media (max-width: 768px) {
  .letter-key .list-letter {
    gap: 8px;
  }

  .letter-key .letter-item span {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }

  .letter-header {
    font-size: 2rem;
  }

  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .brand-item {
    padding: 20px 15px;
    min-height: 150px;
  }

  .brand-item img {
    max-width: 100px;
    max-height: 60px;
  }

  .brand-item span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .letter-key .list-letter {
    gap: 5px;
  }

  .letter-key .letter-item span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brand-item {
    padding: 15px 10px;
    min-height: 130px;
  }

  .brand-item img {
    max-width: 80px;
    max-height: 50px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .banner-slider {
    height: 728px;
    
  }

  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
  }

  .slider-dots .dot.active {
    width: 20px;
  }
  .header-shock .back-step-header {
    display: flex;
    width: 40px;
    justify-content: center;
  }
  .content-back-btn {
    display: none;
  }
  .banner-slider-container {
    /* width: 400px;
    max-width: 400px; */
  }

  /* Search Page Responsive */
  .list-item-all-main.search-page .container {
    width: 100% !important;
    padding: 0 10px;
  }

  .list-item-all-main.search-page .list-item-all {
    justify-content: center;
  }

  .list-item-all-main.search-page .list-item-all .item-box {
    width: calc(50% - 5px);
    height: auto;
  }

  .keyword-search .container {
    width: 100% !important;
    padding: 12px;
  }

  .keyword-search .cover-content-search {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }

  .keyword-search .cover-content-search > span {
    width: 100%;
    order: 1;
  }

  .filter-toggle-btn {
    order: 2;
  }

  .keyword-search .content-sort {
    order: 3;
    flex: 1;
    min-width: 0;
    margin-left: 0;
  }

  .keyword-search .content-sort select {
    width: 100%;
  }

  /* Filter Toggle Button - Show on mobile */
  .filter-toggle-btn {
    display: flex !important;
  }

  /* Filter Sidebar - Mobile Popup */
  .list-item-all-main.search-page .filter-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    overflow-y: auto;
    border-radius: 0;
    transition: left 0.3s ease;
  }

  .list-item-all-main.search-page .filter-sidebar.active {
    left: 0;
  }

  /* Filter Overlay */
  .filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .filter-overlay.active {
    display: block;
  }

  /* Close button */
  .close-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f3f4f6;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #374151;
  }

  .close-filter-btn:hover {
    background-color: #e5e7eb;
  }
}

@media (max-width: 480px) {
  .banner-slider {
    /* height: 120px; */
  }

  /* Search Page Mobile */
  .list-item-all-main.search-page .list-item-all .item-box {
    width: calc(50% - 5px);
  }
}
