@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");

:root {
  --brand-dark: #1c1d22;
  --brand-gold: #e5a906;
  --brand-gold-soft: #f6cf63;
  --surface: #ffffff;
  --surface-soft: #f8f8f9;
  --text-main: #1f2229;
  --text-muted: #636974;
  --border: #e7e9ee;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background: var(--surface-soft);
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(245, 248, 253, 0.94);
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-card {
  width: min(360px, calc(100% - 2rem));
  padding: 1.2rem 1rem 1rem;
  border-radius: 1rem;
  border: 1px solid #dde5f1;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(16, 27, 45, 0.15);
  text-align: center;
}

.site-loader-cart {
  width: 78px;
  height: 42px;
  margin: 0 auto 0.7rem;
  border: 3px solid #2a3c58;
  border-radius: 0.65rem;
  border-right-width: 7px;
  position: relative;
  animation: loaderCartBounce 0.9s ease-in-out infinite;
}

.site-loader-cart::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -12px;
  width: 18px;
  height: 12px;
  border: 3px solid #2a3c58;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.site-loader-wheel {
  position: absolute;
  bottom: -12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2a3c58;
}

.site-loader-wheel:first-child {
  left: 10px;
}

.site-loader-wheel:last-child {
  right: 10px;
}

.site-loader-brand {
  margin: 0 0 0.18rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #1b2c45;
}

.site-loader-text {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #5f6e86;
}

.site-loader-progress {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: #e8edf6;
  overflow: hidden;
}

.site-loader-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f6bc34 0%, #e3a600 100%);
  transform-origin: left;
  animation: loaderProgressPulse 1.2s ease-in-out infinite;
}

@keyframes loaderCartBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes loaderProgressPulse {
  0% { transform: scaleX(0.35); opacity: 0.75; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.35); opacity: 0.75; }
}

.top-header-strip {
  background: #121826;
  color: #dfe5f2;
  border-bottom: 1px solid #20283a;
}

.top-header-wrap {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-social-links a {
  text-decoration: none;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  border: 1px solid #3a445a;
  color: #f0f4ff;
  font-size: 0.66rem;
  font-weight: 600;
  display: inline-grid;
  place-items: center;
}

.top-offer-text {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.flash-text {
  margin-left: 0.45rem;
  color: #ffcf53;
  font-weight: 700;
  animation: flashPulse 1s ease-in-out infinite;
}

@keyframes flashPulse {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255, 208, 85, 0.2);
  }
  50% {
    opacity: 0.45;
    text-shadow: 0 0 12px rgba(255, 208, 85, 0.75);
  }
}

.top-quick-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.top-quick-menu a {
  text-decoration: none;
  color: #dfe5f2;
  font-size: 0.74rem;
}

.container {
  width: min(1440px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1.2rem;
}

.logo {
  height: 46px;
  width: auto;
}

.header-search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #e3e8ee;
  border-radius: 0.45rem;
  background: #fff;
  overflow: hidden;
  max-width: 560px;
  min-height: 50px;
}

.header-category-select,
.header-search-input,
.header-search-btn {
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
}

.header-category-select {
  height: 50px;
  padding: 0 2.1rem 0 1.05rem;
  background: #fff;
  color: #4f5662;
  border-right: 1px solid #dfe4ea;
  min-width: 170px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #707989 50%),
    linear-gradient(135deg, #707989 50%, transparent 50%);
  background-position: calc(100% - 17px) 26px, calc(100% - 12px) 26px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.header-search-input {
  width: 100%;
  height: 50px;
  padding: 0 1rem;
  color: #525a67;
}

.header-search-input::placeholder {
  color: #a4aab5;
  font-style: italic;
  opacity: 1;
}

.header-search-input:focus,
.header-category-select:focus {
  outline: none;
}

.header-search-btn {
  width: 72px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3a70e;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.header-search-btn svg {
  width: 20px;
  height: 20px;
}

.header-search-btn svg path {
  stroke: currentColor;
}

.header-right-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin-right: 0.4rem;
}

.header-call small {
  display: block;
  color: #757b88;
  line-height: 1;
  font-size: 0.72rem;
}

.header-call p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.phone-icon {
  width: 1.8rem;
  height: 1.8rem;
  /* border: 1px solid var(--border); */
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  color: #232938;
}

.header-icon-btn {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #222838;
  font-size: 0.78rem;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}

.header-bottom-row {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 65;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.header-bottom-wrap {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.shop-category-btn {
  text-decoration: none;
  background: #f5a700;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.66rem 1rem;
  border-radius: 0.12rem;
  white-space: nowrap;
}

.header-menu {
  flex: 1;
  position: relative;
}

.header-menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  overflow: visible;
  margin-bottom: 0;
  /* padding: 0.35rem;
  border: 1px solid #e8ecf4;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06); */
}

.menu-item {
  position: relative;
  flex: 0 0 auto;
}

.menu-link {
  text-decoration: none;
  color: #2b3040;
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 600;
  padding: 0.48rem 0.72rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f5a700, #ffcc52);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu-link:hover,
.menu-item:hover > .menu-link,
.menu-item:focus-within > .menu-link {
  background: #f3f6fb;
  color: #0f1829;
  transform: translateY(-1px);
}

.menu-link:hover::after,
.menu-item:hover > .menu-link::after,
.menu-item:focus-within > .menu-link::after {
  transform: scaleX(1);
}

.menu-link.active {
  background: #10192a;
  color: #fff;
}

.menu-arrow {
  font-size: 0.7rem;
  color: #7a8292;
  transition: transform 0.2s ease, color 0.2s ease;
}

.menu-item.open .menu-arrow,
.menu-item:hover .menu-arrow,
.menu-item:focus-within .menu-arrow {
  transform: rotate(180deg);
  color: #2f3a50;
}

.menu-badge {
  padding: 0.1rem 0.34rem;
  border-radius: 999px;
  background: #ffe9bf;
  color: #8f4f00;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.menu-badge.alt {
  background: #e6f5ec;
  color: #0f7a3a;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e5e9f1;
  border-radius: 0.75rem;
  box-shadow: 0 14px 34px rgba(17, 25, 41, 0.14);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.dropdown-panel a {
  display: block;
  text-decoration: none;
  color: #2e3443;
  padding: 0.45rem 0.55rem;
  border-radius: 0.45rem;
  font-size: 0.82rem;
}

.dropdown-panel a:hover {
  background: #f4f7fc;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(900px, 92vw);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e5e9f1;
  border-radius: 0.85rem;
  box-shadow: 0 16px 38px rgba(17, 25, 41, 0.14);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.15fr;
  gap: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.mega-col h4 {
  font-size: 0.86rem;
  margin-bottom: 0.45rem;
  color: #1d2638;
}

.mega-col a {
  display: block;
  text-decoration: none;
  color: #596275;
  font-size: 0.8rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-col a:hover {
  color: #111b2f;
  transform: translateX(2px);
}

.mega-promo {
  background: linear-gradient(145deg, #111d34, #1f2e4e);
  border-radius: 0.7rem;
  color: #fff;
  padding: 0.8rem;
}

.mega-promo p {
  font-size: 0.72rem;
  opacity: 0.85;
  margin-bottom: 0.22rem;
}

.mega-promo h5 {
  font-size: 0.92rem;
  line-height: 1.3;
}

.mega-promo strong {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
  color: #ffcc50;
}

.mega-promo a {
  display: inline-block;
  margin-top: 0.6rem;
  text-decoration: none;
  color: #0f1a2d;
  background: #fff;
  border-radius: 0.45rem;
  padding: 0.35rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.open .dropdown-panel,
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-cta-btn {
  text-decoration: none;
  flex: 0 0 auto;
  padding: 0.52rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid #101a2b;
  background: #101a2b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(15, 26, 43, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 26, 43, 0.24);
}

.mobile-menu-btn {
  display: none;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #d8deea;
  border-radius: 0.55rem;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  cursor: pointer;
  position: relative;
  z-index: 240;
}

.mobile-menu-btn span {
  width: 1rem;
  height: 2px;
  border-radius: 2px;
  background: #172235;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.mobile-search-toggle {
  display: none;
}

.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

body.mobile-menu-open {
  overflow: hidden;
}

.cart-btn {
  background: transparent;
  color: #222838;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}

.cart-icon svg {
  /* width: 1.06rem;
  height: 1.06rem; */
  fill: none;
  stroke: #2a3040;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  min-width: 0.88rem;
  height: 0.88rem;
  border-radius: 999px;
  background: #f04444;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  position: absolute;
  top: -0.08rem;
  right: -0.1rem;
  border: 1px solid #fff;
}

.hero {
  padding: 1.5rem 0 1.5rem;
  background: linear-gradient(130deg, #ffffff 40%, #fff6df 100%);
}

.selected-carousel {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 25, 40, 0.16);
}

.selected-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.selected-slide {
  flex: 0 0 100%;
  min-height: 540px;
  padding: 2rem 2.1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.selected-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.selected-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 22, 0.75) 0%, rgba(8, 12, 22, 0.42) 42%, rgba(8, 12, 22, 0.08) 100%);
}

.selected-slide-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  max-width: min(56ch, 64%);
}

.selected-slide h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0;
}

.selected-slide p {
  max-width: 58ch;
  margin: 0;
  color: rgba(245, 248, 255, 0.92);
  @media (max-width: 768px) {
    display: none;
  }
}

.selected-slide .btn-primary {
  padding: 0.58rem 0.95rem;
  font-size: 0.88rem;
  border-radius: 0.5rem;
  width: fit-content;
}

.selected-kicker {
  display: inline-flex;
  width: fit-content;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slide-one {
  background: linear-gradient(135deg, #111f3f, #264b8d);
}

.slide-two {
  background: linear-gradient(135deg, #45120a, #cf5e20);
}

.slide-three {
  background: linear-gradient(135deg, #123724, #1c9a60);
}

.selected-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.selected-dot {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.selected-dot.is-active {
  width: 1.35rem;
  background: #ffd166;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: center;
}

.eyebrow {
  color: var(--brand-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.8rem;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin: 0.55rem 0;
}

h1 span {
  color: var(--brand-gold);
}

.hero-text {
  color: var(--text-muted);
  max-width: 58ch;
  margin-bottom: 1.2rem;
}

.btn-primary {
  display: inline-block;
  border: none;
  text-decoration: none;
  background: var(--brand-gold);
  color: var(--brand-dark);
  padding: 0.78rem 1.2rem;
  border-radius: 0.6rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary:hover {
  background: #f2bc2e;
}

.products-section {
  padding: 2.8rem 0 4.4rem;
  background: radial-gradient(circle at 0% 0%, #f3f8ff 0%, transparent 35%),
    radial-gradient(circle at 100% 100%, #fff6e8 0%, transparent 32%);
}

h2 span{
  color: var(--brand-gold);
  font-weight: 600;
}

.top-categories {
  padding: 4rem 0 2rem;
  position: relative;
}

.top-categories .section-head {
  text-align: start;
  margin-bottom: 1.35rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid #e3e8f2;
  border-radius: 1rem;
  padding: 1rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.78rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(16, 26, 44, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #f5b304 0%, #ffd774 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: #d1d9e7;
  box-shadow: 0 14px 28px rgba(15, 26, 43, 0.12);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.82rem;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #f5f8ff, #eef3ff);
  border: 1px solid #dde4f0;
  flex: 0 0 auto;
}

.category-icon img {
  width: 1.25rem;
  height: 1.25rem;
}

.category-content h3 {
  margin: 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: #172237;
  line-height: 1.25;
}

.category-card:nth-child(2) .category-icon {
  background: linear-gradient(160deg, #fff3e8, #ffe6d2);
}

.category-card:nth-child(3) .category-icon {
  background: linear-gradient(160deg, #eef9f0, #ddf4e3);
}

.category-card:nth-child(4) .category-icon {
  background: linear-gradient(160deg, #f0f7ff, #e0edff);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head p {
  color: var(--text-muted);
  max-width: 52ch;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.1rem;
}

.product-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e3eaf4;
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: 0 12px 28px rgba(17, 34, 68, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #cfdae9;
  box-shadow: 0 18px 38px rgba(17, 34, 68, 0.12);
}

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4a5d7a;
  background: #edf3ff;
  border: 1px solid #dbe6fa;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}

.product-fav-btn {
  border: 1px solid #d8e1ef;
  background: #fff;
  color: #778298;
  border-radius: 999px;
  width: 1.95rem;
  height: 1.95rem;
  font-size: 1rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
}

.product-title {
  margin: 0;
  font-size: 1rem;
  color: #142238;
  line-height: 1.35;
}

.product-image {
  height: 180px;
  border-radius: 0.85rem;
  background: linear-gradient(140deg, var(--swatch, #eff4ff), #ffffff 64%);
  border: 1px solid #dce5f2;
  display: flex;
  place-items: center;
  overflow: hidden;
  color: #17253c;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: #f6b600;
  font-size: 0.88rem;
}

.rating-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: #5f697a;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
}

.price-stack {
  display: grid;
  gap: 0.12rem;
}

.price {
  font-size: 1.06rem;
  font-weight: 800;
  color: #0f1f38;
}

.product-old-price {
  font-size: 0.8rem;
  color: #8f97a8;
  text-decoration: line-through;
}

.product-discount {
  font-size: 0.76rem;
  font-weight: 700;
  color: #1d8d5e;
  background: #e8f7ef;
  border: 1px solid #d2efdf;
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  white-space: nowrap;
}

.add-btn {
  border: 1px solid #0e7ea0;
  background: linear-gradient(180deg, #1390b6 0%, #0f7fa2 100%);
  color: #fff;
  padding: 0.6rem 0.88rem;
  border-radius: 0.62rem;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: 100%;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.add-btn:hover {
  border-color: #0b6785;
  background: linear-gradient(180deg, #0f84a7 0%, #0b6785 100%);
}

.about {
  padding: 4rem 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(88, 144, 255, 0.2) 0%, transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 178, 71, 0.22) 0%, transparent 32%),
    linear-gradient(145deg, #f4f7ff 0%, #eef2ff 48%, #f8f3ea 100%);
  border-top: 1px solid #dbe4f4;
  border-bottom: 1px solid #dbe4f4;
  position: relative;
  overflow: hidden;
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.about::before {
  width: 260px;
  height: 260px;
  top: -110px;
  right: 9%;
  background: radial-gradient(circle, rgba(124, 162, 255, 0.32), rgba(124, 162, 255, 0));
}

.about::after {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: 6%;
  background: radial-gradient(circle, rgba(255, 188, 86, 0.3), rgba(255, 188, 86, 0));
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: stretch;
}

.about-content {
  background: #fff;
  border: 1px solid #e2e9f4;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 14px 28px rgba(18, 32, 55, 0.08);
}

.about-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2353ad;
  background: #edf4ff;
  border: 1px solid #dce8ff;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.about-content h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: #14233b;
}

.about-content h2 span {
  color: #edab10;
}

.about-lead {
  margin-top: 0.7rem;
  color: #5d697d;
  max-width: 58ch;
  line-height: 1.62;
}

.about-points {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
  padding: 0;
}

.about-points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.about-point-icon {
  width: 1.42rem;
  height: 1.42rem;
  border-radius: 50%;
  background: #e8fff3;
  color: #20a45d;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-points li strong {
  color: #1a2a44;
  font-size: 0.95rem;
}

.about-points li p {
  margin-top: 0.2rem;
  color: #68758a;
  font-size: 0.87rem;
  line-height: 1.55;
}

.about-panel {
  background: linear-gradient(155deg, #121c31 0%, #1f3f7a 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 1.45rem;
  box-shadow: 0 14px 30px rgba(13, 26, 51, 0.26);
  display: flex;
  flex-direction: column;
}

.about-panel h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.about-panel p {
  margin-top: 0.55rem;
  color: rgba(234, 242, 255, 0.9);
}

.about-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.about-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  padding: 0.6rem 0.45rem;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: 1.06rem;
}

.about-stat span {
  display: block;
  margin-top: 0.16rem;
  font-size: 0.72rem;
  color: rgba(228, 236, 252, 0.9);
}

.about-cta {
  margin-top: 1rem;
  align-self: flex-start;
  background: #f2b31a;
  color: #15243d;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0.55rem;
  padding: 0.56rem 0.9rem;
  font-size: 0.88rem;
}

.about-cta:hover {
  background: #ffc53e;
}

.coupon-newsletter {
  position: relative;
  background: #eceae8;
  min-height: 230px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.coupon-newsletter-wrap {
  position: relative;
  z-index: 2;
}

.coupon-newsletter-content {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
}

.coupon-newsletter-content h2 {
  font-size: clamp(1.6rem, 2.9vw, 2.45rem);
  line-height: 1.18;
  color: #21242f;
  font-weight: 700;
}

.coupon-newsletter-content h2 span {
  color: #f0b318;
}

.coupon-newsletter-content p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #4f5662;
}

.coupon-subscribe-form {
  margin-top: 1.4rem;
  background: #fff;
  border-radius: 0.56rem;
  padding: 0.32rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
}

.coupon-subscribe-form input {
  border: none;
  width: 100%;
  padding: 0.9rem 0.7rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: #2f3440;
}

.coupon-subscribe-form input::placeholder {
  color: #b0b5bf;
}

.coupon-subscribe-form input:focus {
  outline: none;
}

.coupon-subscribe-form button {
  border: none;
  background: #f1b00a;
  color: #fff;
  border-radius: 0.44rem;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  height: 2.7rem;
  padding: 0 1.3rem;
  cursor: pointer;
}

.coupon-feedback {
  min-height: 1.2rem;
  margin-top: 0.55rem;
  font-size: 0.86rem;
  color: #667083;
}

.coupon-feedback.is-success {
  color: #1e8d54;
}

.coupon-feedback.is-error {
  color: #ca3d39;
}

.coupon-decor {
  position: absolute;
  bottom: 0;
  width: 176px;
  height: 176px;
}

.coupon-decor-left {
  left: -14px;
  background:
    radial-gradient(circle at 44% 18%, #2a2c33 10px, transparent 11px),
    radial-gradient(circle at 34% 22%, #d5b892 36px, transparent 37px),
    radial-gradient(circle at 60% 26%, #ddaf4f 40px, transparent 41px),
    radial-gradient(circle at 48% 56%, #c9943f 54px, transparent 55px),
    radial-gradient(circle at 53% 86%, #172036 100px, transparent 101px);
  filter: saturate(1.05);
}

.coupon-decor-right {
  right: -14px;
  background:
    radial-gradient(circle at 60% 84%, #7b7b7b 58px, transparent 59px),
    radial-gradient(circle at 50% 64%, #f0d193 36px, transparent 37px),
    radial-gradient(circle at 35% 76%, #ffcc46 30px, transparent 31px),
    radial-gradient(circle at 64% 65%, #9a86b8 28px, transparent 29px),
    radial-gradient(circle at 70% 48%, #8b8d92 31px, transparent 32px);
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: min(500px, 96vw);
  height: 100vh;
  background: var(--surface);
  box-shadow: -12px 0 38px rgba(0, 0, 0, 0.16);
  z-index: 220;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-drawer.open {
  transform: translateX(0);
}

body.cart-open {
  overflow: hidden;
}

.cart-header,
.cart-footer {
  padding: .75rem 1.05rem;
  border-bottom: 1px solid var(--border);
}

.cart-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
  display: grid;
  gap: 0.95rem;
  background: #fff;
}

.icon-btn {
  border: none;
  background: transparent;
  border-radius: 50%;
  /* width: 2rem;
  height: 2rem; */
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 0.7;
  color: #121827;
}

.cart-close-btn {
  display: inline-grid;
  place-items: center;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: auto;
}

.cart-header h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
}

.cart-items {
  padding: 0 1.05rem;
  overflow-y: auto;
  /* display: grid; */
  gap: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eceef2;
}

.delete-btn {
  width: 2.3rem;
  height: 2.3rem;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  color: #1f2a3d;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.delete-btn svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-item-media {
  width: 92px;
  height: 92px;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  color: #8a90a0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cart-item-content strong {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
}

.cart-item-rating {
  font-size: 0.95rem;
  letter-spacing: 0.06rem;
  margin-top: 0.45rem;
}

.stars-filled {
  color: #ffab00;
}

.stars-empty {
  color: #c6ccd7;
}

.cart-item-price {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.new-price {
  color: #1d8d3a;
  font-size: 1.1rem;
  font-weight: 500;
}

.old-price {
  color: #5f6777;
  font-size: 1rem;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.cart-item-actions {
  width: 126px;
  height: 42px;
  background: #f4f5f7;
  border-radius: 0.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr;
  align-items: center;
  justify-items: center;
}

.cart-item-qty {
  font-size: 1.15rem;
  color: #1a2231;
}

.qty-minus-btn,
.qty-plus-btn {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  color: #1f2a3d;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.shipping-hint {
  font-size: 1rem;
  color: #202838;
  line-height: 1.35;
}

.shipping-progress-wrap {
  position: relative;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.shipping-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #eceef1;
  overflow: hidden;
}

.shipping-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: repeating-linear-gradient(
    -55deg,
    #f5a000 0px,
    #f5a000 8px,
    #ffbe4b 8px,
    #ffbe4b 16px
  );
}

.shipping-progress-icon {
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: #f59f00;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  border: 2px solid #fff;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-subtotal-row p,
.cart-subtotal-row strong {
  font-size: 2.05rem;
}

.cart-tax-text {
  color: #4f5768;
  font-size: 1rem;
}

.cart-tax-text a {
  color: inherit;
  text-decoration-color: currentColor;
}

.cart-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding-top: 0.5rem;
}

.checkout-btn,
.view-cart-btn {
  height: 54px;
  border-radius: 0.42rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
}

.checkout-btn {
  border: 1px solid #101a2a;
  background: #101a2a;
  color: #fff;
}

.view-cart-btn {
  border: 1px solid #1f2636;
  background: #fff;
  color: #1a2233;
}

.cart-empty {
  padding: 1.4rem 0;
  color: #697184;
  font-size: 1rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 16, 0.45);
  z-index: 90;
}

.site-footer {
  /* margin-top: 1.2rem; */
  background: #f2f3f5;
  border-top: 1px solid #e3e5ea;
  color: #454c59;
}

.footer-main {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
  gap: 2.2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: #1f2633;
  font-size: 1.14rem;
  font-weight: 600;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
  color: #565f6e;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #1f2633;
}

.footer-contact-list {
  display: grid;
  gap: 0.72rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #565f6e;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-contact-list li a,
.footer-contact-list li span {
  color: inherit;
  text-decoration: none;
}

.footer-icon {
  color: #4f5869;
  display: inline-flex;
  margin-top: 0.1rem;
}

.footer-social {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-social p {
  margin: 0;
  color: #545d6c;
  font-size: 0.9rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social-links a {
  width: 1.38rem;
  height: 1.38rem;
  /* border-radius: 50%;
  border: 1px solid #c6ccd7; */
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  color: #4b5463;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-app p {
  margin: 0 0 0.4rem;
  color: #5f6776;
  font-size: 0.88rem;
}

.app-badges {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.app-badge {
  min-width: 128px;
  border-radius: 0.4rem;
  background: #151b27;
  color: #fff;
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  line-height: 1.1;
  display: grid;
  gap: 0.1rem;
}

.app-badge small {
  font-size: 0.57rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.app-badge strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #e2e5eb;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0 1.15rem;
}

.footer-logo-link {
  display: inline-flex;
}

.footer-logo {
  height: 34px;
  width: auto;
}

.footer-payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-payments span {
  background: #fff;
  border: 1px solid #dde1e9;
  border-radius: 0.3rem;
  min-height: 1.8rem;
  padding: 0.32rem 0.58rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: #4d5665;
}

.footer-scroll-top {
  width: 2rem;
  height: 2rem;
  border-radius: 0.22rem;
  text-decoration: none;
  display: inline-grid;
  place-items: center;
  background: #1e2633;
  color: #fff;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.offer-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 19, 29, 0.6);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.offer-popup {
  width: min(980px, 100%);
  background: #fff;
  border-radius: 0.7rem;
  position: relative;
  overflow: hidden;
}

.offer-close-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0.45rem;
  background: #151922;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.offer-popup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

.offer-left {
  padding: 4rem 3.5rem 2rem;
}

.offer-top-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.offer-left h2 {
  margin-top: 0.4rem;
  font-size: 2.55rem;
  line-height: 1.05;
}

.offer-code {
  margin-top: 1.35rem;
  font-size: 4.4rem;
  line-height: 1;
  color: #f0a400;
  letter-spacing: 0.03em;
}

.offer-subtext {
  margin-top: 1rem;
  color: #6f7480;
  font-size: 1.7rem;
}

.offer-timer {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.offer-timer span {
  width: 3rem;
  height: 3rem;
  background: #141922;
  color: #fff;
  border-radius: 0.45rem;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  font-weight: 600;
}

.offer-timer .offer-colon {
  width: auto;
  height: auto;
  background: transparent;
  color: #1a1f2a;
}

.offer-expire-text {
  margin-top: 1rem;
  color: #6f7480;
  font-size: 1.7rem;
}

.offer-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-panel {
    padding: 1.25rem;
  }

  .coupon-decor {
    opacity: 0.6;
    transform: scale(0.88);
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: 94%;
  }

  .top-social-links,
  .top-quick-menu {
    display: none;
  }

  .top-header-wrap {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.45rem 0;
    justify-items: center;
  }

  .top-offer-text {
    text-align: center;
  }

  .header-top-row {
    min-height: auto;
    gap: 0.6rem;
    padding: 0.7rem 0;
    flex-wrap: wrap;
  }

  .mobile-menu-btn {
    display: inline-flex;
    order: 1;
  }

  .coupon-newsletter {
    min-height: 195px;
  }

  .coupon-newsletter-content {
    max-width: 100%;
  }

  .coupon-newsletter-content h2 {
    font-size: 1.5rem;
  }

  .coupon-newsletter-content p {
    font-size: 0.9rem;
  }

  .coupon-decor {
    opacity: 0.45;
    transform: scale(0.73);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .logo-link {
    order: 2;
  }

  .logo {
    height: 40px;
  }

  .header-search-wrap {
    order: 4;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    display: flex;
    border: 1px solid #d8dde6;
    border-radius: 1rem;
    background: #e7ebf0;
    overflow: hidden;
    margin-top: 0.35rem;
  }

  .header-search-input {
    padding: 0.82rem 1.05rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2f3b;
    background: transparent;
  }

  .header-search-input::placeholder {
    color: #7b808a;
    opacity: 1;
  }

  .header-search-btn {
    width: 52px;
    height: 50px;
    background: transparent;
    color: #1e2433;
  }

  .header-category-select {
    display: none;
  }

  .mobile-search-toggle {
    display: none;
  }

  .header-right-tools {
    margin-left: auto;
    order: 3;
  }

  .header-call {
    display: none;
  }

  .header-bottom-wrap {
    min-height: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0rem 0;
    /* display: none; */
  }

  .header-menu {
    width: 100%;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    z-index: 220;
    padding: 0 0.65rem;
  }

  .header-menu.mobile-open {
    display: block;
  }

  .shop-category-btn {
    font-size: 0.8rem;
    padding: 0.58rem 0.7rem;
  }

  .header-menu-list {
    gap: 0.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0.45rem;
    border-radius: 0.72rem;
    display: grid;
    grid-template-columns: 1fr;
    height:auto !important;
    max-height: calc(100dvh - 145px);
    min-height: 0;
    background: #ffffff;
  }

  .menu-link {
    font-size: 0.82rem;
    padding: 0.58rem 0.7rem;
    width: 100%;
    justify-content: space-between;
  }

  .menu-badge {
    display: none;
  }

  .menu-cta-btn {
    display: none;
  }

  .dropdown-panel,
  .mega-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 0.3rem;
    box-shadow: none;
    border: 1px solid #e5e9f1;
    border-radius: 0.6rem;
    transform: none;
    transition: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .menu-item.open > .dropdown-panel,
  .menu-item.open > .mega-menu {
    display: block;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    padding: 0.7rem;
    gap: 0.65rem;
  }

  .hero {
    padding: 1rem 0;
  }

  .selected-slide {
    min-height: 300px;
    padding: 1.5rem 1.3rem;
  }

  .selected-slide-content {
    max-width: 66%;
  }

  .filters {
    padding: 1rem 0;
  }

  .filter-wrap {
    flex-direction: column;
  }

  .products-section {
    padding: 1.6rem 0 2.4rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-card {
    padding: 0.75rem;
  }

  .product-image {
    height: 112px;
  }

  .about {
    padding: 1.6rem 0;
  }

  .about-content,
  .about-panel {
    padding: 1.1rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    border-radius: 0;
  }

  .cart-item {
    grid-template-columns: 78px 1fr auto;
    gap: 0.7rem;
  }

  .cart-item-media {
    width: 78px;
    height: 78px;
  }

  .cart-item-content strong {
    font-size: 0.98rem;
  }

  .cart-item-actions {
    width: 112px;
  }

  .shipping-hint,
  .cart-tax-text {
    font-size: 0.92rem;
  }

  .cart-subtotal-row p,
  .cart-subtotal-row strong {
    font-size: 1.6rem;
  }

  .offer-popup-content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .offer-left {
    padding: 3rem 1.2rem 1.4rem;
  }

  .offer-left h2 {
    font-size: 1.65rem;
  }

  .offer-code {
    font-size: 2.45rem;
  }

  .offer-subtext,
  .offer-expire-text {
    font-size: 1rem;
  }

  .offer-timer span {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.15rem;
  }

  .offer-right {
    max-height: 240px;
  }
}

@media (max-width: 680px) {
  .coupon-newsletter {
    min-height: 170px;
  }

  .coupon-subscribe-form {
    margin-top: 1rem;
  }

  .coupon-subscribe-form button {
    height: 2.45rem;
    padding: 0 1rem;
    font-size: 0.84rem;
  }

  .coupon-decor {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .top-offer-text {
    font-size: 0.7rem;
    white-space: normal;
    text-align: center;
  }

  .top-quick-menu a {
    font-size: 0.68rem;
  }

  .logo {
    height: 36px;
  }

  .header-category-select {
    min-width: 100px;
    font-size: 0.75rem;
  }

  .header-search-input {
    font-size: 0.95rem;
  }

  .header-search-btn {
    width: 40px;
    height: 40px;
  }

  .shop-category-btn {
    display: none;
  }

  .hero-text {
    font-size: 0.92rem;
  }

  .selected-slide {
    min-height: 250px;
  }

  .selected-slide-image {
    width: 100%;
    opacity: 0.3;
  }

  .selected-slide-content {
    max-width: 100%;
  }

  .section-head p {
    font-size: 0.86rem;
  }

  .category-card {
    padding: 0.78rem 0.72rem;
    gap: 0.6rem;
  }

  .category-content h3 {
    font-size: 0.88rem;
  }

  .cart-count {
    min-width: 0.85rem;
    height: 0.85rem;
    font-size: 0.58rem;
  }

  .cart-header h3 {
    font-size: 1.45rem;
  }

  .checkout-btn,
  .view-cart-btn {
    height: 50px;
    font-size: 0.97rem;
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .header-icon-btn {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* features css */

.features_item.purple {
  background: #fff2da;
}

.features_item.green {
  background: #DCF6FB;
}

.features_item.orange {
  background: #EAF9E8;
}

.features_item {
  padding: 0;
        margin-left: 35px;
  background: #D9F5F3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  position: relative;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.features_item .icon {
  width: 70px;
  height: 70px;
  left: -35px;
  background: #00BBAE;
    padding: 10px;
    position: absolute;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: all 0.3s 0s ease-out;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
}

.features_item.purple .icon {
  background: #ffa500;
}

.features_item.orange .icon {
  background: #71D863;
}

.features_item.green .icon {
  background: #16C4E3;
}

.features_item .text {
  padding: 35px 20px 35px 55px;
  width: 100%;
}

.features_item .text p {
 margin-bottom: 0;
}

.features_item .text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1c1d22;
}

/* login page css */

.login-page-main {
  padding: 2.2rem 0 3.2rem;
}

.auth-section {
  padding: 0.8rem 0 1.2rem;
}

.password-box{
  display: flex;
  /* flex-direction: column; */
  gap: 10px;
}

.password-box div{
  width: 100%;
}

.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.auth-promo-card,
.auth-form-card {
  border-radius: 1.25rem;
  border: 1px solid #d8e0ee;
  box-shadow: 0 20px 45px rgba(15, 25, 40, 0.08);
}

.auth-promo-card {
  padding: 2.2rem 2rem;
  background: linear-gradient(145deg, #1f314d 0%, #16233a 55%, #101826 100%);
  color: #eef3ff;
}

.auth-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd87a;
}

.auth-promo-card h1 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.28;
  color: #ffffff;
}

.auth-promo-card p {
  margin: 0;
  color: #d2ddef;
  line-height: 1.72;
  font-size: 0.95rem;
}

.auth-promo-card ul {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.auth-promo-card li {
  position: relative;
  padding-left: 1.45rem;
  color: #f2f6ff;
  font-size: 0.88rem;
}

.auth-promo-card li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd872, #e4a500);
  position: absolute;
  left: 0;
  top: 0.48rem;
}

.auth-form-card {
  padding: 2.15rem 1.85rem 1.85rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
}

.auth-form-card h2 {
  margin: 0;
  color: #101f33;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
}

.auth-form-subtitle {
  margin: 0.5rem 0 1.35rem;
  color: #64748d;
  font-size: 0.92rem;
}

.auth-form {
  display: grid;
  gap: 0.88rem;
}

.auth-form label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #20304a;
}

.auth-form input[type="email"],
.auth-form input[type="text"],
.auth-form input[type="number"],
.auth-form input[type="tel"],
.auth-form input[type="password"] {
  width: 100%;
  height: 48px;
  border: 1px solid #d7dfed;
  border-radius: 0.86rem;
  padding: 0 0.95rem;
  background: #f6f8fd;
  color: #122136;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.auth-form input::placeholder {
  color: #95a2b8;
}

.auth-form input:focus {
  outline: none;
  border-color: #d4a11f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(229, 169, 6, 0.14);
  transform: translateY(-1px);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 4.6rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.42rem;
  transform: translateY(-50%);
  border: 0;
  background: #e9eef7;
  color: #2d4058;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.password-toggle:hover {
  background: #dde6f4;
}

.password-toggle .eye-icon {
  display: inline-flex;
  line-height: 0;
}

.password-toggle .eye-close {
  display: none;
}

.password-toggle.is-password-visible .eye-open {
  display: none;
}

.password-toggle.is-password-visible .eye-close {
  display: inline-flex;
}

.auth-meta-row {
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.remember-me {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #5c6980;
}

.remember-me input {
  accent-color: #d59f0a;
}

.forgot-password {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: #9f7400;
  transition: color 0.18s ease;
}

.forgot-password:hover {
  color: #805d00;
  text-decoration: underline;
}

.auth-submit-btn {
  margin-top: 0.45rem;
  border: 0;
  height: 48px;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, #f5be32 0%, #e3a400 100%);
  color: #1a2230;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(229, 169, 6, 0.34);
  filter: saturate(1.03);
}

.auth-feedback {
  min-height: 1.1rem;
  font-size: 0.8rem;
  color: #4f5e76;
}

.auth-signup-text {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.84rem;
  color: #5f6d84;
}

.auth-signup-link {
  margin-left: 0.25rem;
  color: #9f7400;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}

.auth-signup-link:hover {
  color: #7d5a00;
  text-decoration: underline;
}

.forgot-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(13, 21, 34, 0.62);
  backdrop-filter: blur(3px);
}

.forgot-popup {
  width: min(460px, 100%);
  background: #ffffff;
  border: 1px solid #d8e0ee;
  border-radius: 1rem;
  box-shadow: 0 24px 50px rgba(15, 24, 40, 0.24);
  padding: 1.3rem 1.15rem 1.2rem;
  position: relative;
}

.forgot-popup-close-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  border-radius: 999px;
  background: #eef2f8;
  color: #344760;
  font-size: 0.82rem;
  cursor: pointer;
}

.forgot-popup-close-btn:hover {
  background: #e2e8f3;
}

.forgot-popup h3 {
  margin: 0 0 0.35rem;
  color: #132237;
  font-size: 1.15rem;
}

.forgot-popup p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: #5f6d84;
}

.forgot-popup-form {
  display: grid;
  gap: 0.55rem;
}

.forgot-popup-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #20304a;
}

.forgot-popup-form input {
  width: 100%;
  height: 44px;
  border: 1px solid #d7dfed;
  border-radius: 0.72rem;
  padding: 0 0.85rem;
  background: #f7f9fe;
  color: #122136;
}

.forgot-popup-form input:focus {
  outline: none;
  border-color: #d4a11f;
  box-shadow: 0 0 0 4px rgba(229, 169, 6, 0.14);
  background: #ffffff;
}

.forgot-popup-form button {
  margin-top: 0.2rem;
  border: 0;
  height: 44px;
  border-radius: 0.74rem;
  background: linear-gradient(180deg, #f5be32 0%, #e3a400 100%);
  color: #1a2230;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 768px) {
  .auth-promo-card {
    display: none;
  }
}

@media (max-width: 992px) {
  .auth-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .login-page-main {
    padding: 1.45rem 0 2.2rem;
  }

  .auth-promo-card,
  .auth-form-card {
    padding: 1.25rem 1rem;
    border-radius: 1rem;
  }

  .auth-promo-card h1 {
    font-size: 1.35rem;
  }

  .auth-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.product-title a {
  color: inherit;
  text-decoration: none;
}

.product-title a:hover {
  color: #0f7fa2;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.55rem;
}

.view-btn {
  border: 1px solid #d3deec;
  background: #ffffff;
  color: #1a2a41;
  border-radius: 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.88rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.view-btn:hover {
  background: #f7faff;
  border-color: #c0d0e0;
}

.product-page-header {
  border-bottom: 1px solid #e4e9f2;
}

.product-detail-page-main {
  background: #f7f9fd;
  min-height: calc(100vh - 90px);
  font-size: 0.95rem;
}

.product-detail-top {
  padding: 1.45rem 0 1rem;
}

.product-detail-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr) 280px;
  gap: 1.15rem;
  align-items: start;
}

.pd-gallery {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.85rem;
}

.pd-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.pd-thumb {
  border: 1px solid #d5deeb;
  border-radius: 0.6rem;
  padding: 0;
  overflow: hidden;
  height: 64px;
  background: #fff;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumb.is-active {
  border-color: #e8b11f;
  box-shadow: 0 0 0 3px rgba(232, 177, 31, 0.16);
}

.pd-main-image-wrap {
  background: #fff;
  border: 1px solid #dde6f2;
  border-radius: 0.9rem;
  min-height: 360px;
  overflow: hidden;
}

.pd-main-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.pd-summary {
  background: #fff;
  border: 1px solid #dde6f2;
  border-radius: 0.9rem;
  padding: 1rem;
}

.pd-breadcrumb-mini {
  margin: 0;
  color: #8692a7;
  font-size: 0.78rem;
}

.pd-summary h1 {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
  font-size: 1.72rem;
  line-height: 1.2;
}

.pd-stock-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.pd-in-stock {
  background: #e9f8ef;
  color: #177645;
  border: 1px solid #caecd9;
  border-radius: 999px;
  padding: 0.22rem 0.56rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.pd-price-row {
  margin: 0.75rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.62rem;
}

.pd-price-row strong {
  font-size: 1.56rem;
  color: #151f31;
}

.pd-short-desc {
  color: #6a7587;
  font-size: 0.93rem;
  line-height: 1.55;
}

.pd-option-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.pd-option-row > span {
  font-weight: 700;
  color: #1f2b41;
  font-size: 0.92rem;
}

.pd-color-list,
.pd-size-list {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pd-color {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #d1daea;
  background: var(--c, #efefef);
}

.pd-color.is-active {
  box-shadow: 0 0 0 3px rgba(232, 177, 31, 0.2);
  border-color: #d59d00;
}

.pd-size {
  border: 1px solid #d2dbe9;
  background: #fff;
  min-width: 38px;
  height: 30px;
  border-radius: 0.45rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.pd-size.is-active {
  border-color: #e0ad2a;
  background: #fff7db;
  color: #9b6400;
}

.pd-action-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.pd-action-links a {
  text-decoration: none;
  color: #6f7a8f;
  font-size: 0.84rem;
}

.pd-cart-row {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
}

.pd-cart-row .add-btn {
  width: auto;
  min-width: 170px;
}

.pd-meta-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
  color: #6d7788;
  font-size: 0.9rem;
}

.pd-side-info {
  background: #fff;
  border: 1px solid #dde6f2;
  border-radius: 0.9rem;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.pd-side-info ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.42rem;
  color: #505f75;
  font-size: 0.9rem;
}

.pd-warranty-box,
.pd-chat-box {
  border: 1px solid #e4ebf6;
  border-radius: 0.7rem;
  padding: 0.75rem;
  background: #f8fbff;
}

.pd-warranty-box h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.pd-warranty-box p,
.pd-chat-box p {
  margin: 0.2rem 0;
  color: #5e6a7d;
  font-size: 0.88rem;
}

.product-detail-body-section {
  padding: 0.35rem 0 1.5rem;
}

.product-detail-body-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1rem;
  align-items: start;
}

.pd-tabs-wrap {
  background: #fff;
  border: 1px solid #dde6f2;
  border-radius: 0.9rem;
  padding: 1rem;
}

.pd-tabs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0.35rem;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, #f8faff 0%, #f3f7ff 100%);
  border: 1px solid #e4ebf7;
}

.pd-tab {
  border: 1px solid transparent;
  background: transparent;
  color: #526078;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-weight: 700;
  font-size: 0.86rem;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pd-tab:hover {
  background: #ffffff;
  color: #233252;
  border-color: #dbe5f4;
}

.pd-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 107, 228, 0.18);
}

.pd-tab.is-active {
  border-color: #efbf45;
  background: #ffffff;
  color: #8d5f00;
  box-shadow: 0 7px 16px rgba(22, 44, 86, 0.1);
  transform: translateY(-1px);
}

.pd-tab-panel {
  display: none;
  color: #4d596d;
  font-size: 0.92rem;
  line-height: 1.65;
  background: #fbfdff;
  border: 1px solid #e5ecf7;
  border-radius: 0.8rem;
  padding: 0.9rem;
}

.pd-tab-panel.is-active {
  display: block;
}

.pd-tab-panel h3,
.pd-tab-panel h4 {
  color: #1a2439;
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.pd-side-rating-card {
  background: #eaf1ff;
  border: 1px solid #d3e0fa;
  border-radius: 0.8rem;
  padding: 0.9rem;
  color: #30425f;
}

.pd-side-rating-card p {
  margin: 0.45rem 0;
  font-size: 0.9rem;
}

.pd-side-rating-card a {
  color: #9b6d00;
  font-weight: 700;
  text-decoration: none;
}

.pd-not-found {
  grid-column: 1 / -1;
  text-align: center;
  background: #fff;
  border: 1px solid #dde6f2;
  border-radius: 1rem;
  padding: 2rem 1rem;
}

@media (max-width: 1080px) {
  .product-detail-top-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-body-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pd-gallery {
    grid-template-columns: 1fr;
  }

  .pd-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .pd-thumb {
    height: 54px;
  }

  .pd-summary h1 {
    font-size: 1.35rem;
  }

  .pd-cart-row {
    flex-direction: column;
  }

  .product-card-actions {
    grid-template-columns: 1fr;
  }
}