:root {
  --navy: #16284c;
  --navy-dark: #0f1d38;
  --teal: #2bb6c9;
  --bg-soft: #f6f5f3;
  --text-dark: #1c2333;
  --text-muted: #6b7280;
  --border-soft: #e7e6e2;
}

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

body {
  font-family: "Tajawal", sans-serif;
  color: var(--text-dark);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}

/* ===== Top utility bar ===== */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
}
.topbar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
      justify-content: center;

}
.topbar-right svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 992px) {
  .topbar-inner {
    display: flex;
    flex-direction: column;
  }
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
header.is-sticky {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.icon-btn svg {
  width: 21px;
  height: 21px;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav.custom-main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 500;
  color: #2b3245;
}
nav.custom-main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
  padding-right: 10px;
}
nav.custom-main-nav a:hover {
  color: var(--navy);
}
nav.custom-main-nav a.active {
  color: var(--navy);
  font-weight: 700;
}
nav.custom-main-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -2px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-image {
  width: 150px;
  height: 50px;
}
.brand-image img {
  width: 100%;
  height: 100%;
}
.brand-en {
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--navy);
}
.brand-ar {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
  transition: 0.3s;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block !important;
  }
  .custom-main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100vh;
    padding-top: 20px;
    background: #fff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .custom-main-nav.active {
    transform: translateX(0);
    height: 100%;
  }
  .custom-main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .custom-main-nav li {
    width: 100%;
  }
  .custom-main-nav li a {
    padding-left: 10px;
  }
  .custom-main-nav a {
    display: block;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
  }
  .header-icons {
    width: 100%;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .header-inner {
    padding: 14px 16px;
  }

  .header-icons {
    gap: 12px;
  }
  .header-icons .icon-btn[aria-label="بحث"],
  .header-icons .icon-btn[aria-label="الحساب"] {
    display: none;
  }

  .icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .brand-en {
    font-size: 16px;
  }

  .brand-ar {
    font-size: 11px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .header-inner {
    gap: 8px;
  }

  .header-icons {
    gap: 10px;
  }

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

  .cart-count {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .brand-en {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .brand-ar {
    font-size: 10px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }
}
/* ===== Hero ===== */
.hero-section {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* fade so text on the right stays readable, photo stays visible on the left */
  background: linear-gradient(
    to left,
    rgba(246, 245, 243, 0.97) 0%,
    rgba(246, 245, 243, 0.92) 30%,
    rgba(246, 245, 243, 0.55) 50%,
    rgba(246, 245, 243, 0.05) 68%,
    rgba(246, 245, 243, 0) 100%
  );
}
.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: flex;
  justify-content: flex-start;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 480px;
}
.hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.32;
  color: var(--navy);
}
.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 430px;
}
.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.cta-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}
.cta-btn svg {
  width: 16px;
  height: 16px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.tabby-tamara {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tabby-tamara img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero-section {
    width: 100%;
    min-height: 600px;
  }
  .hero-section::before {
    background: rgba(246, 245, 243, 0.411);
  }
  .hero-bg {
    object-position: center;
  }

  .hero-wrap {
    justify-content: center;
    align-items: flex-end;
    padding: 32px 20px 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
    gap: 18px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 100%;
  }

  .cta-btn {
    padding: 14px 26px;
    font-size: 15px;
  }
  .hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .tabby-tamara {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .tabby-tamara img {
    height: 40px;
  }
}
@media (max-width: 480px) {
  .hero-section {
    min-height: 520px;
  }

  .hero-wrap {
    padding: 24px 16px 32px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
  }

  .tabby-tamara {
    width: 100%;
  }

  .tabby-tamara img {
    width: 200px;
    height: auto;
  }
}

/* ===== Features strip ===== */
.features {
  max-width: 1280px;
  margin: 30px auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
}
.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 26px;
  border-right: 1px solid var(--border-soft);
}
.feature-item:last-child {
  border-right: none;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eef3fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature-text h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 12.5px;
  color: var(--text-muted);
}
/* ===== Responsive ===== */

/* ===== Section heading ===== */
.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
/* ===== Shop by category ===== */
.categories {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 8px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.category-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 22px;
  box-shadow: 0 10px 28px -16px rgba(22, 40, 76, 0.22);
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* .category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0) 55%
  );
  z-index: 1;
} */
.category-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--navy);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px -6px rgba(22, 40, 76, 0.5);
}
.category-icon svg {
  width: 26px;
  height: 26px;
}
.category-name {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 6px 22px;
  border-radius: 20px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.category-count {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  padding: 3px 16px;
  border-radius: 14px;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
}
/* ===== Best sellers ===== */
.bestsellers {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 64px;
}
.bestsellers-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.product-card:hover {
  box-shadow: 0 14px 30px -18px rgba(22, 40, 76, 0.3);
  transform: translateY(-2px);
}
.product-photo {
  width: 100%;
  aspect-ratio: 4/2.6;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--bg-soft);
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.product-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.price-now {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.price-old {
  font-size: 13px;
  color: #b7bcc5;
  text-decoration: line-through;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-circle svg {
  width: 16px;
  height: 16px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--text-dark);
  font-weight: 600;
}
.rating svg {
  width: 14px;
  height: 14px;
  color: #f5a524;
}
.rating span.count {
  color: var(--text-muted);
  font-weight: 400;
}

.view-all-wrap {
  text-align: center;
  margin-top: 32px;
}
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-soft);
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.2s ease;
}
.view-all-btn:hover {
  background: var(--bg-soft);
}
.view-all-btn svg {
  width: 15px;
  height: 15px;
}

/* ===== Benefits strip (dark) ===== */
.benefits-dark {
  background: var(--navy);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 15px;
}
.benefits-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.benefit-icon {
  flex-shrink: 0;
  color: #fff;
  margin-top: 2px;
}
.benefit-icon svg {
  width: 51px;
  height: 37px;
}
.benefit-text {
  text-align: end;
}
.benefit-text h3 {
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 5px;
}
.benefit-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefit-item {
    border-right: none;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .benefits-dark {
    width: calc(100% - 24px);
    border-radius: 12px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }

  .benefit-item {
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 20px;
  }

  .benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .benefit-icon svg {
    width: 42px;
    height: auto;
  }

  .benefit-text {
    text-align: start;
  }

  .benefit-text h3 {
    font-size: 15px;
  }

  .benefit-text p {
    font-size: 13px;
  }
}

/* ===== Trust / testimonials ===== */
.trust {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 64px;
}
.trust-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.stat-box {
  flex: 0 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
}
.stat-box .stat-icon {
  color: var(--navy);
}
.stat-box .stat-icon svg {
  width: 26px;
  height: 26px;
}
.stat-box .stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.stat-box .stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-card {
  flex: 1;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars {
  display: flex;
  gap: 3px;
}
.stars svg {
  width: 15px;
  height: 15px;
  color: #f5a524;
}
.testimonial-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-dark);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa1ad;
  flex-shrink: 0;
}
.author-avatar svg {
  width: 18px;
  height: 18px;
}
.author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== Newsletter bar ===== */
.newsletter {
  padding: 30px 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 15px;
}
.newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-text {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  flex-shrink: 0;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--navy);
  padding: 5px;
  flex: 1;
  max-width: 560px;
  min-width: 280px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 13.5px;
  padding: 10px 14px;
  color: var(--text-dark);
  background: transparent;
}
.newsletter-form input::placeholder {
  color: #9aa1ad;
}
.newsletter-btn {
  background: var(--navy-dark);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .newsletter-text {
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .newsletter {
    width: calc(100% - 24px);
    padding: 24px 16px;
    border-radius: 12px;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .newsletter-text {
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: auto;
    max-width: 100%;
    padding: 12px;
  }

  .newsletter-form input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
  }

  .newsletter-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }
}
/* ===== Footer ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 50px;
}
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-brand .brand-en {
  color: #fff;
}
.footer-about {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease;
}
.footer-social a:hover {
  background: var(--teal);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: #fff;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.footer-contact li svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--teal);
}

.footer-payments {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-payments span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom-links a:hover {
  color: #fff;
}
@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item {
    border-bottom: 1px solid var(--border-soft);
  }
  .feature-item:nth-child(2n) {
    border-right: none;
  }
  .feature-text {
    width: 100%;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-row {
    flex-wrap: wrap;
  }
  .stat-box {
    flex: 0 0 calc(33.33% - 11px);
  }
  .testimonial-card {
    flex: 0 0 100%;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    flex: 0 0 calc(50% - 8px);
  }
  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand .brand {
    justify-content: center;
  }
  .footer-about {
    margin: 0 auto 20px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-payments {
    justify-content: center;
  }
  .footer-contact li {
    justify-content: center;
  }
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

.s-cart-summary-count {
  background: var(--navy);
}
.s-cart-summary-icon svg {
  fill: var(--navy);
}
.s-cart-summary-total {
  color: var(--navy);
}
.nav-mobile {
  display: none;
}

.s-breadcrumb-wrapper {
  display: none;
}
.s-infinite-scroll-status {
  display: none;
}