@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #e62e04;
  --bg-button: #222;
  --color-button: #fff;
  --color-primary-rgb: 230, 46, 4;
  --primary-red: #e62e04;
  --dark-red: #c41e00;
  --green-trust: #28a745;
  --light-green: #e8f5e9;
  --text-main: #333;
  --text-light: #666;
  --bg-gray: #f5f5f5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: var(--text-main);
}

.manti-container {
  width: 100%;
  /* max-width: 1440px; */
  margin: 0 auto;
  position: relative;
}

/* Top Info Bar */
.top-info-bar {
  background-color: #242424;
  color: #fff;
  display: block;
  padding: 8px 0;
  font-size: 12px;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item a {
  color: #fff;
  text-decoration: underline;
}

/* Main Header */
.main-header {
  background-color: var(--primary-red);
  color: #fff;
  padding: 15px 40px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  background: #fff;
  color: #0047ab;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.categories.is-open svg {
  transform: rotate(180deg);
}

.categories svg {
  transition: transform 0.2s ease;
}

.search-bar {
  flex-grow: 1;
  display: flex;
  position: relative;
}

.categories-panel {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.categories-panel.is-open {
  display: block;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0 22px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  gap: 8px;
}

.category-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item.is-active .category-icon {
  background: #f6d500;
}

.category-label {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  max-width: 90px;
  line-height: 1.1;
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.search-bar input {
  width: 100%;
  padding: 10px 45px 10px 20px;
  border-radius: 25px;
  border: none;
  outline: none;
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}

.lang-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.lang-top {
  font-size: 14px;
  font-weight: 600;
}

.lang-bottom {
  font-size: 16px;
  font-weight: 900;
}

.manti-toggler {
  border: none;
  padding: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.flash-sale {
  padding: 34px 0;
  background: #fde7e6;
}

.flash-sale-inner {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 90px;
}

.flash-title {
  font-weight: 700;
  color: #222;
  font-size: 18px;
}

.flash-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 2px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  color: #111;
}

.flash-code {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  color: #222;
  font-size: 12px;
  text-align: right;
}

.flash-btn {
  background: #222;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 576px) {
  #mantix-coupon-section.flash-sale {
    padding: 20px 0;
  }
  #mantix-coupon-section .flash-sale-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    min-height: auto;
    text-align: center;
  }
  #mantix-coupon-section .flash-title {
    font-size: 16px;
  }
  #mantix-coupon-section .flash-timer {
    font-size: 24px;
    letter-spacing: 1px;
  }
  #mantix-coupon-section .flash-code {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
  #mantix-coupon-section .flash-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  .categories-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .category-icon {
    width: 56px;
    height: 56px;
  }
  .nav-link{
    font-size: 12px !important;
    padding:5px 0px 10px !important;
  }
  .best-tabs{
    gap: 10px !important;
  }
}

.best-selling {
  padding: 22px 0 28px;
  background: #fff;
}

.best-selling.is-collapsed .best-grid > .col:nth-child(n + 11) {
  display: none;
}

.best-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.best-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--primary-red);
}

.best-tab.is-active::after, .best-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%; 
  transform: translateX(-50%); 
  width: 50%; 
  height: 3px; 
  border-radius:2px 2px 0 0;
  background-color: var(--primary-red); 
}
.best-tab.is-active,.best-tab.active,.best-tab.is-active:hover, .best-tab.active:hover{
  color: var(--primary-red);
}
.best-header--tabs {
  justify-content: center;
  flex-direction: row;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.best-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
}

.best-tabs .nav-item {
  margin: 0;
}

.best-tabs .nav-link {
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
}

.best-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  padding: 10px 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  position: relative;
  border-radius: 0;
  transition: color 0.2s ease;
}

.best-tab .best-tab-icon {
  font-size: 1em;
  color: inherit;
  transition: color 0.2s ease;
}

.best-tab .best-tab-label {
  color: inherit;
}

.best-tab.is-active .best-tab-icon,
.best-tab.active .best-tab-icon {
  color: var(--primary-red);
}
.best-tab:hover:not(.active) {
  color: #555;
}

.best-tab:hover:not(.active) .best-tab-icon {
  color: #555;
}

.best-tab-content .tab-pane {
  display: none;
}

.best-tab-content .tab-pane.active {
  display: block;
}

.best-card {
  position: relative;
}

.best-img {
  background: #f1f1f1;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.best-body {
  padding: 10px 12px 12px;
}

.best-ribbon {
  position: absolute;
  top: 10px;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 0 8px 8px 0;
  z-index: 2;
}

.best-seller {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #6f2dbd;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-top: 8px;
}

.best-name {
  font-size: 11px;
  color: #9e9e9e;
  line-height: 1.2;
  height: 28px;
  overflow: hidden;
}

.best-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.best-old {
  color: #999;
  text-decoration: line-through;
  font-size: 11px;
}

.best-new {
  color: #111;
  font-weight: 900;
  font-size: 13px;
}

.best-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.best-stars {
  color: #f59f00;
  font-size: 18px;
}

.best-cart {
  width: 44px;
  height: 30px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.best-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.seemore-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}
.btn-primary,.seemore-btn{
  background: var(--bg-button) !important; 
  color: var(--color-button) !important;
}
.best-selling.is-expanded .seemore-btn svg {
  transform: rotate(180deg);
}

.seemore-btn svg {
  transition: transform 0.2s ease;
}

.best-selling-page .best-header {
  justify-content: space-between;
}

.best-selling-page .best-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.best-selling-page .best-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.best-selling-page .best-filter-label {
  font-size: 12px;
  font-weight: 700;
  color: #6b6b6b;
  margin: 0;
  white-space: nowrap;
}

.best-selling-page .best-filter-select {
  min-width: 190px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
}

@media (max-width: 576px) {
  .trust-bar,.trust-items,.trust-item{
    display: block !important;
    text-align: center;
  }
  .product-grid.row{
    display: block !important;
  }
  .row-cols-2 > *{
    width: 100% !important;
  }
  .best-selling-page .best-header {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .best-selling-page .best-filter {
    width: 100%;
    justify-content: flex-start;
  }
  .trust-section{
    display: none;
  }
}

.profile-page {
  padding: 22px 0 38px;
  background: #fff;
}

.profile-page .manti-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #8a8a8a;
  margin: 6px 0 16px;
}

.profile-page .manti-breadcrumb a {
  color: #8a8a8a;
  text-decoration: none;
}

.profile-page .manti-breadcrumb a:hover {
  color: #111;
}

.profile-page .manti-breadcrumb-sep {
  color: #bdbdbd;
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0;
}

.profile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.profile-nav-link .profile-nav-ico {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.profile-nav-link:hover {
  background: #f5f5f5;
}

.profile-nav-link.is-active {
  background: #f6f6f6;
  color: #111;
  position: relative;
}

.profile-nav-link.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: #111;
  border-radius: 999px;
}

.profile-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 16px 18px;
  margin-bottom: 14px;
}

.profile-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
}

.profile-card-title {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.profile-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #7a7a7a;
  text-decoration: none;
}

.profile-card-action:hover {
  color: #111;
}

.profile-card-body {
  padding-top: 12px;
}

.profile-row {
  font-size: 12px;
  color: #5a5a5a;
  padding: 7px 0;
}

.profile-key {
  font-weight: 800;
  color: #111;
}

.profile-val {
  color: #707070;
}

@media (max-width: 992px) {
  .profile-sidebar {
    padding: 0;
  }

  .profile-nav-link {
    border-radius: 12px;
  }
}

.orders-page {
  padding: 22px 0 42px;
  background: #fff;
}

.orders-page .manti-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #8a8a8a;
  margin: 6px 0 14px;
}

.orders-page .manti-breadcrumb a {
  color: #8a8a8a;
  text-decoration: none;
}

.orders-page .manti-breadcrumb a:hover {
  color: #111;
}

.orders-page .manti-breadcrumb-sep {
  color: #bdbdbd;
}

.orders-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.orders-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.orders-tab {
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #333;
}

.orders-tab.is-active {
  border-color: #111;
  color: #111;
}

.orders-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  min-width: 280px;
}

.orders-search input {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 12px;
}

.orders-search-btn {
  border: 0;
  background: transparent;
  padding: 0;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.orders-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff7bf;
  border: 1px solid #f4e38a;
  color: #6b5a1f;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 14px 16px;
}

.order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-id {
  font-size: 11px;
  font-weight: 800;
  color: #111;
}

.order-date {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 2px;
}

.order-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid transparent;
}

.order-badge.is-delivered {
  background: #d9fbe2;
  color: #167a2b;
  border-color: #b8f3c6;
}

.order-badge.is-shipped {
  background: #dbe7ff;
  color: #2457c6;
  border-color: #c6d7ff;
}

.order-badge.is-processing {
  background: #fff2cc;
  color: #7a5c00;
  border-color: #ffe39c;
}

.order-body {
  padding: 14px 0 10px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f3f3f3;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-title {
  font-size: 12px;
  font-weight: 800;
  color: #111;
}

.order-meta {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 2px;
}

.order-price {
  font-size: 12px;
  font-weight: 900;
  color: #111;
  margin-top: 2px;
}

.order-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #111;
  border-radius: 10px;
  height: 36px;
  font-size: 12px;
  font-weight: 800;
}

.order-btn.is-primary {
  background: #222;
  color: #fff;
  border-color: #222;
}

.order-btn.is-danger {
  color: #d11a2a;
  border-color: rgba(209, 26, 42, 0.35);
}

@media (max-width: 992px) {
  .orders-search {
    min-width: 100%;
  }

  .order-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .order-actions {
    grid-template-columns: 1fr;
  }
}

.order-details-page {
  padding: 22px 0 42px;
  background: #fff;
}

.order-details-page .manti-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #8a8a8a;
  margin: 6px 0 14px;
}

.order-details-page .manti-breadcrumb a {
  color: #8a8a8a;
  text-decoration: none;
}

.order-details-page .manti-breadcrumb a:hover {
  color: #111;
}

.order-details-page .manti-breadcrumb-sep {
  color: #bdbdbd;
}

.od-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.od-back {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
}

.od-title {
  font-size: 16px;
  font-weight: 900;
  color: #111;
}

.od-date {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 2px;
}

.od-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid transparent;
  margin-top: 8px;
  width: fit-content;
}

.od-badge.is-delivered {
  background: #d9fbe2;
  color: #167a2b;
  border-color: #b8f3c6;
}

.od-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.od-card-title {
  font-size: 12px;
  font-weight: 900;
  color: #111;
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 12px;
}

.od-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.od-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #f3f3f3;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.od-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.od-name {
  font-size: 12px;
  font-weight: 900;
  color: #111;
}

.od-meta {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 2px;
}

.od-price {
  font-size: 12px;
  font-weight: 900;
  color: #111;
  margin-top: 2px;
}

.od-ship-row,
.od-pay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  font-size: 12px;
}

.od-ship-row + .od-ship-row,
.od-pay-row + .od-pay-row {
  border-top: 1px solid #f0f0f0;
}

.od-k {
  color: #9a9a9a;
  font-size: 11px;
}

.od-v {
  color: #111;
  font-weight: 700;
  text-align: right;
}

.od-ship-split,
.od-pay-split {
  margin-top: 10px;
  border-top: 1px solid #f0f0f0;
  padding-top: 6px;
}

.od-total .od-k,
.od-total .od-v {
  color: #111;
  font-weight: 900;
}

.od-paid {
  color: #167a2b;
}

.od-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.od-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #111;
  border-radius: 10px;
  height: 40px;
  font-size: 12px;
  font-weight: 900;
}

.od-action-primary {
  background: #222;
  color: #fff;
  border-color: #222;
}

.od-action-review {
  background: #fffbe0;
  border-color: #f4d06f;
  color: #7a5c00;
}

.site-footer {
  background: #3e3e3e;
  color: rgba(255, 255, 255, 0.88);
  padding: 0;
}

.footer-top {
  padding: 44px 0 30px;
}

.footer-title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #1f6feb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.footer-logo-text {
  font-weight: 900;
  font-size: 22px;
  color: #1f1f1f;
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 10px;
  border-radius: 10px;
}

.footer-subtitle {
  font-weight: 800;
  color: #fff;
  font-size: 12px;
  margin-top: 6px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin: 8px 0 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, background 0.15s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.footer-accept {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.pay-banner {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

.pay-pill {
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 11px;
  color: #111;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.footer-links-bar {
  background: #6a6a6a;
}

.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px 0;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  background: #2b2b2b;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 12px;
  padding: 16px 12px;
}

@media (max-width: 680px) {
  .footer-top {
    padding: 32px 0 22px;
  }

  .footer-title {
    margin-bottom: 8px;
  }

  .footer-accept {
    margin-top: 16px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 14px;
  }
}

.product-details-page {
  background: #fff;
}

.pd-breadcrumb {
  background: #fff;
  padding: 12px 0;
}

.pd-crumbs {
  font-size: 12px;
  color: #7a7a7a;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.pd-crumbs a {
  color: #7a7a7a;
  text-decoration: none;
}

.pd-crumbs a:hover {
  text-decoration: underline;
}

.pd-top {
  padding: 10px 0 18px;
}

.pd-gallery {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 14px;
  position: relative;
}

.pd-gallery-media {
  display: flex;
  flex-direction: row;
  gap: 12px;
  position: relative;
}

.pd-main {
  background: #f3f3f3;
  border-radius: 12px;
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-nav {
  position: absolute;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.pd-prev {
  left: 10px;
}

.pd-next {
  right: 10px;
}

.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
  overflow-y: auto;
  max-height: 320px;
}

.pd-thumbs::-webkit-scrollbar {
  width: 4px;
  height: 0;
}

.pd-thumbs::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

.pd-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 auto;
}

.pd-thumb img,
.pd-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f3f3f3;
}

.pd-thumb.is-active {
  border-color: #111;
}

@media (max-width: 575.98px) {
  .pd-gallery-media {
    flex-direction: column;
  }
  .pd-thumbs {
    flex-direction: row;
    overflow-y: visible;
    overflow-x: auto;
    max-height: none;
  }
  .pd-thumb {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }
}

.pd-reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #777;
  font-size: 12px;
}

.pd-stars {
  color: #f59f00;
  letter-spacing: 0.5px;
  font-size: 18px;
  font-weight: 800;
}

.pd-reviews {
  margin-top: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.pd-review {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.pd-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 12px;
}

.pd-review-stars {
  color: #f59f00;
  margin-left: auto;
}

.pd-review-body {
  margin-top: 8px;
  color: #555;
  font-size: 12px;
  line-height: 1.35;
}

.pd-all-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 10px 12px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 12px;
}

.pd-details {
  margin-top: 14px;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.pd-details-title {
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.pd-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pd-detail {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: #666;
}

.pd-detail strong {
  color: #111;
}

.pd-info {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 16px;
}

.pd-title {
  font-weight: 800;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
}

.pd-tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.pd-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  background: #d61f12;
  color: #fff;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}

.pd-old {
  color: #999;
  text-decoration: line-through;
  font-size: 13px;
}

.pd-price {
  color: #111;
  font-weight: 900;
  font-size: 22px;
}

.pd-off {
  color: #d61f12;
  border: 1px solid #d61f12;
  font-weight: 900;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
}

.pd-colors {
  margin-top: 14px;
}

.pd-label {
  font-size: 12px;
  color: #666;
}

.pd-color-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pd-color {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  background: var(--c);
  cursor: pointer;
}

.pd-color.is-active {
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.pd-qty {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.pd-qty-label {
  font-size: 12px;
  color: #666;
}

.pd-qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.pd-qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.pd-qty-input {
  width: 54px;
  height: 34px;
  border: none;
  text-align: center;
  font-weight: 800;
  outline: none;
}

.pd-added {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #28a745;
  font-weight: 800;
  font-size: 12px;
  margin-left: auto;
}

.pd-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.pd-add-cart {
  flex: 1;
  border: none;
  border-radius: 999px;
  background: #222;
  color: #fff;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
}

.pd-heart {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pd-shipping {
  margin-top: 14px;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.pd-ship-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pd-ship-title {
  font-weight: 900;
  color: #111;
  font-size: 12px;
}

.pd-ship-sub {
  color: #777;
  font-size: 12px;
}

.pd-ship-credit {
  margin-left: auto;
  color: #28a745;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.pd-ship-meta {
  margin-top: 10px;
  color: #666;
  font-size: 12px;
  display: grid;
  gap: 4px;
}

.pd-related {
  padding: 22px 0 34px;
}

.pd-related-title {
  text-align: center;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
}

.pd-related-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.pd-related-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #f3f3f3;
  border-bottom: 1px solid #ececec;
}

.pd-related-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-related-body {
  padding: 10px 12px 12px;
}

.pd-related-name {
  font-size: 11px;
  color: #a3a3a3;
  line-height: 1.2;
  height: 28px;
  overflow: hidden;
}

.pd-related-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.pd-related-old {
  color: #999;
  text-decoration: line-through;
  font-size: 11px;
}

.pd-related-new {
  color: #111;
  font-weight: 800;
  font-size: 13px;
}

.pd-related-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.pd-related-stars {
  color: #ffc107;
  font-size: 12px;
}

.pd-related-cart {
  width: 36px;
  height: 30px;
  border: 1px solid #bdbdbd;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pd-related-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.pd-related-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #222;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}
/*
@media (max-width: 680px) {
  .pd-main {
    height: 260px;
  }
  .pd-nav {
    top: 130px;
  }
}
*/
.cart-page {
  background: #fff;
}

.cart-breadcrumb {
  padding: 12px 0;
}

.cart-crumbs {
  font-size: 12px;
  color: #7a7a7a;
  display: flex;
  gap: 8px;
  align-items: center;
}

.cart-crumbs a {
  color: #7a7a7a;
  text-decoration: none;
}

.cart-crumbs a:hover {
  text-decoration: underline;
}

.cart-section {
  padding: 6px 0 26px;
}

.cart-shipping-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fce7e6;
  border-radius: 8px;
  padding: 10px 12px;
  color: #333;
  font-size: 12px;
  margin-bottom: 16px;
}

.cart-empty {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fff;
}

.cart-empty-inner {
  padding: 28px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.cart-empty-title {
  font-weight: 900;
  font-size: 12px;
  color: #333;
}

.cart-empty-sub {
  font-size: 12px;
  color: #777;
}

.cart-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  min-width: 220px;
}

.cart-items {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 14px;
}

.cart-items-title {
  font-weight: 900;
  margin-bottom: 12px;
  color: #111;
}

.cart-item-row {
  display: flex;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.cart-item-img {
  width: 110px;
  height: 90px;
  background: #f3f3f3;
  border: 1px solid #ececec;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex: 0 0 auto;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-mid {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 800;
  font-size: 12px;
  color: #111;
  line-height: 1.25;
}

.cart-item-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #777;
}

.cart-item-qty {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 6px 10px;
}

.cart-qty-btn {
  border: none;
  background: transparent;
  font-weight: 900;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.cart-qty-val {
  font-weight: 900;
  color: #111;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.cart-item-price {
  font-weight: 900;
  color: #111;
}

.cart-remove {
  border: none;
  background: transparent;
  color: #d61f12;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.cart-picks {
  margin-top: 22px;
}

.cart-picks-title {
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.cart-summary {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.cart-summary-title {
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cart-summary-total {
  font-weight: 900;
  color: #111;
}

.cart-summary-note {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
  line-height: 1.35;
}

.cart-summary-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #222;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

.cart-policy {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.cart-policy-card {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.cart-policy-head {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-policy-title {
  font-weight: 900;
  color: #111;
}

.cart-policy-body {
  margin-top: 10px;
  color: #777;
  font-size: 12px;
  line-height: 1.35;
}

.cart-policy-sub {
  margin-top: 12px;
  font-weight: 900;
  color: #111;
  font-size: 12px;
}

.cart-policy-pay {
  margin-top: 10px;
}

.cart-pay {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

.cart-policy-link {
  display: inline-block;
  margin-top: 10px;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  font-size: 12px;
}

.cart-policy-link:hover {
  text-decoration: underline;
}

.cart-policy-list {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cart-policy-li {
  font-size: 12px;
  color: #555;
}

@media (max-width: 680px) {
  .cart-empty-btn {
    min-width: 0;
    width: 100%;
  }
  .cart-item-row {
    flex-direction: column;
  }
  .cart-item-right {
    align-items: flex-start;
  }
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #fff59d;
  color: #1f1f1f;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  z-index: 1000;
}

.back-to-top.is-visible {
  display: inline-flex;
}

.lang-selector,
.account,
.cart {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.account-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.welcome {
  opacity: 0.8;
}

.sign-in {
  font-weight: 600;
}

.cart-icon-wrapper {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff;
  color: var(--primary-red);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Banner */
.hero-banner {
  height: 280px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f6f6f6;
}

.mobile-nav-link:hover {
  background: #efefef;
}

.mobile-explore-tabs {
  display: none;
}

.hero-inner {
  display: none;
}

.hero-content {
  display: none;
}

.hero-kicker {
  font-weight: 700;
  font-size: 14px;
  opacity: 0.95;
  margin-bottom: 6px;
}

.hero-headline {
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 42px;
  line-height: 1.05;
}

.hero-highlight {
  color: #fff;
  text-decoration: none;
}

.hero-sub {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.hero-btn.hero-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.promo-strip {
  background: #eaf7ea;
  padding: 10px 0;
}

.promo-pill {
  background: #fff;
  border: 1px solid #cfe9d0;
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
  color: #1b5e20;
  width: 100%;
  justify-content: center;
}

.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
}

/* Trust Section */
.trust-section {
  padding: 20px 40px;
}

.trust-bar {
  background-color: var(--green-trust);
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trust-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-items {
  display: flex;
  gap: 30px;
  font-size: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.security-reminder {
  border: 1px solid #28a745;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--green-trust);
}

.reminder-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-more {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.view-more:hover{
  color: var(--text-light);
}
/* Deals Section */
.deals-section {
  padding: 20px 40px;
}

.deals-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.deal-title {
  display: contents;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  color: #333;
}

.deal-title.active {
  color: var(--primary-red);
}

.time-offer {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.product-grid.row {
  display: flex;
  grid-template-columns: none;
  gap: 0;
}

.product-card, .best-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover, .product-card:focus, .best-card:hover, .best-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-image {
 background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deals-section .product-image img {
  object-fit: contain;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deals-section .product-info {
  padding: 12px 5px 14px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  padding: 10px 12px 12px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.current-price {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 16px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 11px;
}

.discount-tag {
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
}

.timer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.progress-bar {
  flex-grow: 1;
  height: 4px;
  background: #e7e7e7;
  border-radius: 999px;
  position: relative;
  overflow: visible !important;
}
.progress {
  height: 100%;
  background: #333;
  border-radius: 999px;
  position: relative;
}

.progress::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #333;
  border-radius: 999px;
}
/* Center timer icon like screenshot */
.deals-section .progress-bar::before {
  content: "⏱";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}



 /* Flash sale cards - match the provided UI screenshot */
 .deals-section .product-card {
  border-radius: 14px;
  border-color: #f0f0f0;
  overflow: hidden;
}






.deals-section .price-row {
  gap: 10px;
  margin-bottom: 8px;
}

.deals-section .current-price {
  font-size: 18px;
  font-weight: 800;
}

.deals-section .old-price {
  font-size: 12px;
}

.deals-section .discount-tag {
  border-radius: 8px;
  font-weight: 700;
}

.deals-section .timer-row {
  gap: 10px;
  margin-bottom: 10px;
}




.deals-section .countdown {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.2px;
}

.deals-section .rating-row {
  gap: 8px;
}

/* RTL tweaks */
[dir="rtl"] .deals-section .price-row {
  justify-content: flex-start;
}







.countdown {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-count {
  color: #999;
  font-size: 12px;
}

.explore-section {
  padding: 18px 40px 40px;
}

.explore-header {
  text-align: center;
  margin: 8px 0 12px;
}

.explore-sale {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.cart-best-btn{
  border: 1px solid #ccc;
}
.explore-title {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.explore-chips-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 18px;
}

.explore-chips {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  overflow: hidden;
}

.explore-chip {
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #333;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  line-height: 1;
}

.explore-chip.is-active {
  border-color: #111;
  color: #111;
}

.explore-chips-next {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #cfcfcf;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.explore-grid.row {
  display: flex;
  grid-template-columns: none;
  gap: 0;
}

.explore-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.explore-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border-bottom: 1px solid #ececec;
}

.explore-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.explore-body {
  padding: 10px 12px 12px;
}

.explore-name {
  font-size: 11px;
  color: #a3a3a3;
  line-height: 1.2;
  height: 28px;
  overflow: hidden;
}

.explore-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.explore-old {
  color: #999;
  text-decoration: line-through;
  font-size: 11px;
}

.explore-new {
  color: #111;
  font-weight: 800;
  font-size: 13px;
}

.explore-badges {
  margin-top: 6px;
}

.explore-badge {
  display: inline-block;
  background: #5b2b86;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.explore-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.explore-stars {
  color: #ffc107;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.explore-cart {
  width: 36px;
  height: 30px;
  border: 1px solid #bdbdbd;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.explore-cart svg {
  stroke: #111;
}

.explore-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.explore-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #222;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}
    /* Interests category slider (pills) */
    .interests-cats {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 10px 2px 14px;
      margin: 6px 0 10px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .best-section {
      background: #fff;
    }
    .best-section .explore-header {
      text-align: center;
      margin-bottom: 16px;
    }
    .best-section.explore-sale {
      color: var(--primary-red, #c00);
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 6px;
      display: block;
    }
    .best-section .explore-title {
      font-weight: 800;
      font-size: 18px;
      letter-spacing: 0.2px;
      color: #111;
      text-transform: uppercase;
      margin: 0;
    }

    .interests-cats-wrap {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      margin: 12px 0 20px;
      max-width: 100%;
      overflow: hidden;
    }

    .interests-cats {
      display: flex;
      align-items: stretch;
      gap: 10px;
      overflow-x: auto;
      padding: 10px 12px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-behavior: smooth;
      flex: 1 1 auto;
      min-width: 0;
      justify-content: flex-start;
    }
    .interests-cats::-webkit-scrollbar { display: none; }

    .interests-cat {
      flex: 0 0 auto;
      border: 1px solid #d0d0d0;
      border-radius: 999px;
      padding: 10px 18px;
      min-height: 40px;
      min-width: 60px;
      max-width: 160px;
      background: #fff;
      color: #111;
      font-size: 13px;
      font-weight: 400;
      line-height: 1.3;
      white-space: normal;
      text-align: center;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: border-color .15s ease, color .15s ease;
      scroll-snap-align: start;
      text-decoration: none;
    }
    .interests-cat:hover {
      border-color: #999;
    }
    .interests-cat.is-active {
      background: #fff;
      border-color: #111;
      color: #111;
      font-weight: 500;
    }

    .interests-nav-btn {
      flex: 0 0 auto;
      width: 36px;
      height: 36px;
      min-width: 36px;
      border-radius: 999px;
      border: 1px solid #d8d8d8;
      background: #fff;
      color: #999;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      line-height: 1;
      padding: 0;
      cursor: pointer;
      user-select: none;
      transition: border-color .15s ease, color .15s ease;
    }
    .interests-nav-btn:hover {
      border-color: #bbb;
      color: #555;
    }
    .interests-nav-btn.is-left {
      margin-right: 4px;
    }
    .interests-nav-btn.is-right {
      margin-left: 4px;
      color: #aaa;
    }
    .interests-nav-btn.is-disabled {
      opacity: 0.3;
      pointer-events: none;
    }
    .interests-cats::-webkit-scrollbar { display: none; }

    .interests-cat {
      flex: 0 0 auto;
      border: 1px solid rgba(0,0,0,.12);
      border-radius: 999px;
      padding: 8px 14px;
      background: #fff;
      color: #111;
      font-size: 13px;
      line-height: 1;
      white-space: nowrap;
      transition: all .15s ease;
    }

    .interests-cat:hover {
      border-color: rgba(0,0,0,.25);
    }

    .interests-cat.is-active {
      background: #111;
      border-color: #111;
      color: #fff;
    }
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .top-info-bar {
    display: none;
  }

  .main-header {
    background: #fff;
    color: #111;
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    overflow-x: hidden;
  }

  .header-content {
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .nav-links {
    display: none;
  }

  .account,
  .cart {
    display: none;
  }

  .logo {
    flex: 0 0 auto;
    min-width: 0;
  }

  .logo-text {
    color: #111;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.2px;
    max-width: 78px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .search-bar {
    flex: 1 1 140px;
    min-width: 140px;
    width: clamp(140px, 42vw, 320px);
    max-width: 320px;
    margin-inline: 6px;
  }

  .user-actions {
    flex: 0 0 auto;
    gap: 8px;
    font-size: 12px;
    margin-inline-start: auto;
  }

  .search-bar input {
    background: #efefef;
    padding: 10px 14px;
    border-radius: 999px;
    border: 0;
    height: 40px;
    font-size: 14px;
  }

  .search-btn {
    display: none;
  }

  .manti-toggler {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #3a3a3a;
    border: 0;
    padding: 8px;
    background: transparent;
  }

  .lang-selector {
    color: #111;
    gap: 8px;
  }

  .lang-top {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }

  .lang-bottom {
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
  }

  .lang-caret {
    opacity: 0.95;
    transform: translateY(3px);
  }

  .manti-toggler:focus {
    outline: 2px solid rgba(0, 0, 0, 0.25);
    outline-offset: 2px;
  }

  .offcanvas {
    background: #fff;
  }

  .offcanvas-header {
    border-bottom: 1px solid #f0f0f0;
  }

  .offcanvas-header .logo-text {
    color: #111;
  }

  .mobile-explore-tabs {
    display: block;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    max-width: 100%;
    overflow-x: hidden;
  }

  .mobile-explore-tabs .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-explore-tabs .explore-chips-wrap {
    margin: 0;
    padding: 0;
    display: block;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-explore-tabs .explore-chips-wrap::-webkit-scrollbar {
    height: 0;
  }

  .mobile-explore-tabs .explore-chips {
    display: inline-flex;
    justify-content: flex-start;
    gap: 18px;
    padding: 0 14px;
    width: max-content;
  }

  .mobile-explore-tabs .explore-chip {
    padding: 12px 0 12px;
    font-size: 18px;
    font-weight: 500;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .mobile-explore-tabs .explore-chip.is-active::after {
    width: 64px;
    height: 5px;
    bottom: 2px;
  }

  .hero-banner {
    height: auto;
    background: #fff;
  }

  .hero-img {
    height: auto;
    object-fit: contain;
  }

  .trust-section,
  .deals-section {
    padding: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-section {
    padding: 16px;
  }

  .explore-section .explore-chips-wrap {
    display: none;
  }

  .explore-chips-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0;
    margin: 6px -16px 12px;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
  }

  .explore-chips-wrap::-webkit-scrollbar {
    display: none;
  }

  .explore-chips {
    overflow: visible;
    justify-content: flex-start;
    gap: 28px;
    padding: 0;
  }

  .explore-chips-next {
    display: none;
  }

  .explore-chip {
    border: none;
    background: transparent;
    padding: 18px 0 16px;
    border-radius: 0;
    font-size: 28px;
    font-weight: 500;
    color: #9b9b9b;
    position: relative;
    white-space: nowrap;
  }

  .explore-chip.is-active {
    color: #111;
  }

  .explore-chip.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4px;
    width: 96px;
    height: 6px;
    background: #111;
    border-radius: 999px;
  }

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

:root {
  --bg: #f4f6f8;
  --text: #1d242b;
  --muted: #6b7785;
  --line: #e6ebf0;
  --red: #e10600;
  --green: #2fb12f;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 1;
}

 .svg-icon {
  width: 18px;
  height: 18px;
  display: block;
 }

 .icon--red {
  color: #d10000;
 }

.topbar {
  background: #1f2328;
  color: #fff;
  font-size: 12px;
}

.topbar__inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}

.header {
  background: var(--red);
  color: #fff;
}

.header__inner {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 520px) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

 .header__left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
 }

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brandmark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1463ff;
  color: #fff;
  font-weight: 900;
}

.brandname {
  font-size: 20px;
  letter-spacing: 0.2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.navlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.95;
}

.navlink:hover {
  opacity: 1;
  text-decoration: underline;
}

.header__search {
  display: grid;
  grid-template-columns: 1fr auto;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  height: 40px;
}

.search__input {
  border: 0;
  outline: none;
  padding: 0 14px;
  font-size: 13px;
}

.search__btn {
  border: 0;
  background: transparent;
  color: #fff;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

 .search__btn svg {
  color: #fff;
  background: #23262b;
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 999px;
 }

.search__btn:active {
  transform: translateY(1px);
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 6px 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

 .action--chip {
  border-radius: 999px;
 }

 .action__stack {
  display: grid;
  line-height: 1.05;
 }

 .action__small {
  font-size: 10px;
  opacity: 0.85;
  font-weight: 800;
 }

 .action--welcome {
  gap: 8px;
 }

 .action--cart {
  gap: 6px;
 }

 .action__text {
  font-weight: 800;
 }

.action:hover {
  background: rgba(255, 255, 255, 0.10);
}

.hero {
  background: var(--red);
}

.hero__image {
  height: 242px;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center;
}

.infostrip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin: 14px 0 18px;
}

.infostrip__head {
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
}

.infostrip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 13px;
}

.infostrip__items {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  opacity: 0.95;
  flex-wrap: wrap;
}

.infostrip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.infostrip__note {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #167c1b;
  background: #f3fff3;
}

.infostrip__link {
  margin-left: auto;
  font-weight: 800;
  color: #0f6b14;
}

.deals {
  padding-bottom: 30px;
}

.deals__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 8px 0 12px;
}

.deals__title {
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #d10000;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.deals__title--right {
  justify-content: flex-end;
}

.deals__metaLabel {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06);
}

.card__img {
  height: 138px;
  background: #f6f7f9;
  display: grid;
  place-items: center;
 }

 .productImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.card__body {
  padding: 10px 10px 12px;
}

.priceRow {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  color: #d10000;
  font-weight: 900;
  font-size: 13px;
}

.was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 11px;
}

.off {
  margin-left: auto;
  border: 1px solid #ffd0d0;
  color: #d10000;
  background: #fff5f5;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 999px;
}

.meter {
  margin-top: 8px;
}

.meter__track {
  height: 4px;
  background: #e9edf2;
  border-radius: 999px;
  overflow: hidden;
}

.meter__fill {
  height: 100%;
  background: #111827;
  border-radius: 999px;
}

.meter__label {
  margin-top: 6px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
}

.ratingRow {
  margin-top: 8px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.5px;
  font-size: 12px;
}
.reviews {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
}

.timer {
  justify-self: end;
  font-size: 10px;
  font-weight: 900;
  color: #111827;
}

@media (max-width: 1100px) {
  .header__inner {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand actions"
      "nav nav"
      "search search";
  }

  .header__brand {
    grid-area: brand;
  }

  .header__actions {
    grid-area: actions;
  }

  .header__nav {
    grid-area: nav;
  }

  .header__search {
    grid-area: search;
  }

  .productGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar__right {
    display: none;
  }

  .hero__image {
    height: 170px;
  }

  .productGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================= */
/* Mantix – Product Details Page */
/* ============================= */
.product-single {
  background: #fff;
  padding: 10px 0 18px;
}

.product-single .product-single-default {
  padding: 0;
}

.product-single .product-single-default > .row {
  row-gap: 24px;
}

.product-single .product-single-gallery {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 14px;
  position: relative;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.product-single .product-single-slider2 {
  border-radius: 12px;
  overflow: hidden;
}

.product-single .product-single-slider2 .product-single-single-item {
  height: 320px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border-radius: 12px;
}

.product-single .product-single-slider2 .product-single-single-item figure,
.product-single .product-single-slider2 .product-single-single-item .ratio {
  width: 100%;
  height: 100%;
}

.product-single .product-single-slider2 img,
.product-single .product-single-slider2 video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-single .slider-thumbnails2 {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-single .slider-thumbnails2::-webkit-scrollbar {
  height: 0;
}

.product-single .slider-thumbnails2 .thumbnail-img {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: #fff;
  width: 70px;
  height: 56px;
  overflow: hidden;
  flex: 0 0 auto;
}

.product-single .slider-thumbnails2 .thumbnail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f3f3f3;
}

.product-single .slider-thumbnails2 .slick-current .thumbnail-img,
.product-single .slider-thumbnails2 .thumbnail-img.is-active {
  border-color: #111;
}

.product-single-details {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.product-single-details .product-title {
  font-weight: 800;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
}

.product-single-details .product-title .label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.product-single-details .rating-wrapper,
.product-single-details .rating-wrapper span {
  font-size: 12px;
  color: #777;
}

.product-single-details .product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.product-single-details .product-price .new-price-area,
.product-single-details .product-price .old-price-area {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.product-single-details .product-price .new-price {
  color: #111;
  font-weight: 900;
  font-size: 22px;
}

.product-single-details .product-price .old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 13px;
}

.product-single-details .discountoff {
  color: #d61f12;
  border: 1px solid #d61f12;
  font-weight: 900;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
}

.product-single-details .product-text {
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}

.product-single-details .sku-code {
  font-size: 12px;
  color: #666;
}

.product-action {
  margin-top: 12px;
}

.variant-selection-wrapper .variant-group h4 {
  font-size: 12px;
  color: #666;
  font-weight: 700;
}

.variant-selection-wrapper .selected-variant-value {
  font-size: 12px;
  color: #666;
}

.variant-thumbnail-wrapper {
  border-radius: 10px;
}

.variant-option-text {
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}

.variant-option-item.selected .variant-option-text,
.variant-option-item input:checked + .variant-option-text {
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.quantity-input {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.quantity-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quantity_field {
  width: 54px;
  height: 34px;
  border: none;
  text-align: center;
  font-weight: 800;
  outline: none;
}

.btn-icon-group.btn-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-icon-group .btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-sm.btn-primary.radius-md {
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  background: #222;
  border-color: #222;
}

.product-single-tab {
  padding-top: 22px;
}

.product-single-tab .nav-tabs {
  border: 0;
  gap: 8px;
}

.product-single-tab .nav-link {
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  background: #fff;
}

.product-single-tab .nav-link.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.product-single-tab .tab-content {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.tav-review .comment {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.tav-review .comment .comment-body {
  font-size: 12px;
  color: #555;
  line-height: 1.35;
}

.tav-review .comment .comment-meta {
  color: #666;
  font-size: 12px;
}

.tav-review .comment .comment-author {
  font-weight: 700;
}

.section-title.title-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-slider {
  padding-top: 6px;
}

.product-slider .product-default {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.product-slider .product-default .product-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #f3f3f3;
  border-bottom: 1px solid #ececec;
}

.product-slider .product-default .product-details {
  padding: 10px 12px 12px;
}

.product-slider .product-default .product-title {
  font-size: 11px;
  color: #a3a3a3;
  line-height: 1.2;
  height: 28px;
  overflow: hidden;
}

.product-slider .product-default .product-price {
  margin-top: 6px;
}

.product-slider .product-default .new-price {
  font-size: 13px;
  font-weight: 800;
}

.product-slider .product-default .old-price {
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
}

.product-slider .product-default .btn-icon-group {
  margin-top: 8px;
}

@media (max-width: 680px) {
  .product-single .product-single-slider2 .product-single-single-item {
    height: 260px;
  }
}
