/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #111;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  background: red;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

/* =========================
   HEADER
========================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.logo img {
  height: 60px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 15px;
  border-top: 1px solid #eee;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

/* =========================
   HERO SLIDER (CLS SAFE)
========================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 260px;
  }
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .6s ease;
}

.slide.active {
  opacity: 1;
}

/* Mobile tighter height */
@media (max-width: 768px) {
  .hero-slider {
    aspect-ratio: 4 / 5;
  }

  .hero-content {
    right: 16px;
    bottom: 20px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content h2 {
    font-size: 16px;
  }
}

.btn-primary {
  background: red;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: .4;
  cursor: pointer;
}

.slider-dots span.active {
  opacity: 1;
}

/* =========================
   SECTION TITLES
========================= */
.section-title,
#categoryTitle,
.category-title, 
.featured-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 40px auto 30px;
}

.section-title::after,
#categoryTitle::after,
.category-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #000;
  margin: 12px auto 0;
}

/* =========================
   ABOUT US
========================= */
.about-us {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about-us img {
  max-width: 300px;
  margin: 20px auto;
  display: block;
}

.about-us p {
  line-height: 1.7;
  margin-top: 10px;
}

/* =========================
   CATEGORIES
========================= */
.categories {
  background: red;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.category-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.category img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.category span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* =========================
   PRODUCT GRID (GLOBAL)
========================= */
.product-grid {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   PRODUCT CARD
========================= */
.product-card {
  border: 1px solid #eee;
  padding: 12px;
  text-align: center;
  background: #fff;
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-card h3 {
  color: #111;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 6px;
}


.product-card .price {
  color: #000;
  font-weight: 700;
  font-size: 15px;
}
/* =========================
   PRODUCT BADGES
========================= */

.product-card {
  position: relative;
}

/* Badge base */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
}

/* Types */
.badge-new {
  background: #e60023; /* brand red */
}

.badge-bestseller {
  background: #000;
}

/* Multiple badges stack */
.product-badge + .product-badge {
  top: 42px;
}

/* =========================
   VIEW MORE BUTTON (PREMIUM)
========================= */

.view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 40px auto 0;
  padding: 14px 38px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;

  background: #fff;
  color: #000;

  border: 2px solid #000;
  border-radius: 40px;

  cursor: pointer;
  transition: all .25s ease;
}

/* Hover */
.view-more:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

/* Disabled / hidden state */
.view-more.hidden {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .view-more {
    width: 90%;
    max-width: 320px;
  }
}
.view-more.hidden {
  display: none;
}

.view-more {
  display: flex;
  margin: 40px auto 0;
}

/* =========================
   NEW ARRIVAL / FEATURED TABS
========================= */
.tabs,
.featured-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tab,
.featured-tab {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  color: #888;
  padding-bottom: 6px;
}

.tab.active,
.featured-tab.active {
  color: #000;
  border-bottom: 2px solid #000;
}
/* Tabs */
.featured-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.featured-tab {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding-bottom: 6px;
  color: #888;
}

.featured-tab.active {
  color: #000;
  border-bottom: 2px solid #000;
}

/* Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.featured-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.featured-card h3 {
  color: #111;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 6px;
}
.featured-price {
  color: #000;
  font-weight: 700;
  font-size: 15px;
}

.featured-price del {
  color: #999;
  margin-left: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-card img {
    height: 280px;
  }
}
.featured-cta {
  text-align: center;
}
/* =========================
   FEATURED PRODUCT TEXT FIX
   (THIS WAS MISSING)
========================= */

.featured-card a {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.featured-card a:hover h3 {
  text-decoration: underline;
}
.featured-card .quick-add-btn {
  margin-top: 12px;
  width: 100%;
}


/* =========================
   CART DRAWER
========================= */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,.2);
  padding: 20px;
  transition: right .3s ease;
  z-index: 9999;
}

.cart-drawer.open {
  right: 0;
}

.checkout-btn {
  display: inline-block;
  padding: 12px 30px;
  background: red;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
}

/* =========================
   NEWSLETTER
========================= */
.newsletter {
  background: red;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter input {
  padding: 15px;
  width: 250px;
  border: none;
}

.newsletter button {
  padding: 15px 30px;
  border: none;
  background: #fff;
  color: red;
  font-weight: bold;
  cursor: pointer;
}

#newsletterMsg {
  margin-top: 15px;
  font-weight: bold;
}


/* =========================
   PAYMENT / TRUST
========================= */
.payment-trust {
  padding: 80px 20px;
  text-align: center;
}

.payment-logos {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.payment-logos img {
  height: 100px;
}

.trust-badges {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.trust-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Payment logos */
.trust-payments {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.trust-payments img {
  height: 40px;
  object-fit: contain;
}

/* Guarantee seals */
.trust-seals {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.trust-seals img {
  height: 100px;
}

/* Feature grid */
.trust-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.trust-item i {
  font-size: 28px;
  margin-bottom: 10px;
}

.trust-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 14px;
  color: #777;
}

/* Mobile */
@media (max-width: 768px) {
  .trust-features {
    grid-template-columns: 1fr;
  }

  .trust-seals img {
    height: 160px;
  }
}

/* =========================
   TRUST BADGES MOBILE
========================= */

.trust-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .trust-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* =========================
   FOOTER
========================= */
.footer {
  background: red;
  color: #fff;
  padding: 60px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin: 8px 0;
}

.footer .copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}

/* =========================
   PRODUCT PAGE LAYOUT
========================= */

.product-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.product-layout img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

.product-info h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.product-info .price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-info label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-info input[type="number"] {
  width: 80px;
  padding: 8px;
  margin-bottom: 20px;
}

.product-info .add-cart-btn {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
margin-top: 20px;

}

.product-info .add-cart-btn:hover {
  background: #333;
}

.paypal-box {
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-layout img {
    max-height: 380px;
  }
}
/* =========================
   CHECKOUT
========================= */

.checkout-page {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.checkout-summary {
  margin: 30px 0;
  font-size: 18px;
}

.paypal-box {
  margin-top: 20px;
}
/* DEBUG — FORCE CART ICON VISIBILITY */
.header-right i {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-size: 22px !important;
  color: #000 !important;
  cursor: pointer;
}
.cart-count {
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  margin-left: 6px;
  line-height: 1;
}
.size-options {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.size-btn {
  padding: 8px 14px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #fff;
}

.size-btn.active {
  border-color: #000;
  background: #000;
  color: #fff;
}

.size-btn.disabled {
  opacity: .4;
  cursor: not-allowed;
}

.stock-notice {
  font-size: 13px;
  margin-top: 6px;
  color: red;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.qty-control input {
  width: 60px;
  text-align: center;
  padding: 8px;
  font-size: 16px;
}

.cart-drawer {
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform: translateX(100%);
  opacity: 0;
}

.cart-drawer.open {
  transform: translateX(0);
  opacity: 1;
}


.cart-drawer {
  transform: translateX(100%);
  transition: transform .35s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer {
  position: fixed;
  right: -100%;
  top: 0;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: right 0.35s ease;
}

.cart-drawer.open {
  right: 0;
}

.qty-box,
.checkout-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn,
.checkout-qty button {
   width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}

.qty-btn:hover,
.checkout-qty button:hover {
  background: #000;
  color: #fff;
}

.qty-box input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 16px;
}

.checkout-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.checkout-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.checkout-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}

.checkout-qty button:hover {
  background: #000;
  color: #fff;
}

.remove-item-btn {
  background: none;
  border: none;
  color: #c00;
  font-size: 13px;
  cursor: pointer;
  margin-top: 6px;
}

.remove-item-btn:hover {
  text-decoration: underline;
}
.shipping-form {
  display: grid;
  gap: 10px;
}

.shipping-form input {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.shipping-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shipping-form input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.shipping-row {
  display: flex;
  gap: 10px;
}

.shipping-row input {
  flex: 1;
}

/* Mobile safety */
@media (max-width: 600px) {
  .shipping-row {
    flex-direction: column;
  }
}
/* ===============================
   CHECKOUT – SHIPPING FORM
=============================== */

.checkout-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
}

.shipping-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.shipping-form input,
.shipping-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 4px;
}

.shipping-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .shipping-row {
    grid-template-columns: 1fr;
  }
}

=======================================
/*==========pages==========*/
/* ===============================
   POLICY PAGES (Shipping, Refund, etc)
================================ */

.policy-page {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
}

.policy-page h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 700;
}

.policy-page h3 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.policy-page p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-page li {
  line-height: 1.8;
  font-size: 15px;
}

/* TABLE */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  font-size: 14px;
}

.policy-table th,
.policy-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.policy-table th {
  background: #f5f5f5;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .policy-page h1 {
    font-size: 26px;
  }
}
body {
  margin: 0;
  padding: 0;
}

/* PAGE WRAPPER */
.policy-page {
  max-width: 820px;
  margin: 100px auto;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border-radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
}

/* TITLE */
.policy-page h1 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
}

/* SECTIONS */
.policy-page h3 {
  margin-top: 35px;
  font-size: 20px;
  font-weight: 600;
}

/* TEXT */
.policy-page p,
.policy-page li {
  font-size: 15px;
  line-height: 1.9;
}

/* LISTS */
.policy-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* TABLE */
.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
}

.policy-page th,
.policy-page td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.policy-page th {
  background: #f5f5f5;
}

/* MOBILE */
@media (max-width: 768px) {
  .policy-page {
    margin: 60px 16px;
    padding: 24px;
  }

  .policy-page h1 {
    font-size: 26px;
  }
}

/* ===============================
   HEADER LAYOUT
================================ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #fff;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 48px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===============================
   DESKTOP NAV
================================ */
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 0;
  background: #fff;
}

.desktop-nav a {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

/* ===============================
   MOBILE MENU
================================ */
.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: left 0.3s ease;
  z-index: 9999;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  text-decoration: none;

}

.mobile-nav.active {
  left: 0;
}

.menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===============================
   MOBILE ONLY
================================ */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===============================
   DESKTOP ONLY
================================ */
@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }
}

/* ===============================
   NAV – DESKTOP
================================ */

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 0;
  background: #fff;
}

.nav a {
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* ===============================
   NAV – MOBILE DRAWER
================================ */

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 260px;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    z-index: 2000;
    transition: left 0.3s ease;
  }

  .nav.active {
    left: 0;
  }

  .menu-close {
    background: none;
    border: none;
    font-size: 22px;
    align-self: flex-end;
    margin-bottom: 20px;
    cursor: pointer;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Hide hamburger on desktop */
@media (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }
}
/* Hide mobile close button on desktop */
.menu-close {
  display: none;
}

/* Show close button ONLY on mobile */
@media (max-width: 768px) {
  .menu-close {
    display: block;
  }
}

====================================
.color-options {
  margin: 12px 0;
}

.color-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-btn {
  padding: 8px 14px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.color-btn.active {
  border-color: #000;
  background: #000;
  color: #fff;
}
================================
./* PRODUCT DESCRIPTION */
================================

/* ===============================
   PRODUCT DETAILS (TABS) — CENTERED
================================ */

/* Wrapper below product */
.product-details {
  width: 100%;
  margin: 60px auto 0;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

/* Tabs container */
.product-tabs {
  width: 100%;
  max-width: 900px; /* center width */
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

/* ===============================
   TAB BUTTONS
================================ */

.tab-buttons {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 24px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  position: relative;
}

.tab-btn.active {
  color: #000;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #000;
}

/* ===============================
   TAB CONTENT
================================ */

.tab-content {
  display: none;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

.tab-content.active {
  display: block;
}

/* Limit content width inside tabs */
#tab-desc,
#tab-shipping,
#tab-reviews {
  max-width: 700px;
}

/* ===============================
   DESCRIPTION IMAGE FIX
================================ */

/* Images inside description/tabs only */
.tab-content img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 420px;      /* 🔑 control image size */
  display: block;
  margin: 16px auto;
  object-fit: contain;
  border-radius: 6px;
}

/* Lists inside description */
#tab-desc ul {
  padding-left: 18px;
}

#tab-desc li {
  margin-bottom: 6px;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
  .product-details {
    margin-top: 40px;
  }

  .product-tabs {
    max-width: 100%;
  }

  .tab-buttons {
    gap: 16px;
    font-size: 13px;
  }

  .tab-content img {
    max-height: 280px;
  }
}
==================================
STICKY ADD TO CART (MOBILE ONLY)
=================================
@media (max-width: 768px) {
  .add-cart-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px;
    border-radius: 0;
  }

  body {
    padding-bottom: 70px;
  }
}
====================================
/* ===============================
   REVIEWS
================================ */
.review-item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}

.review-stars {
  color: #f5a623;
  font-size: 14px;
  margin: 4px 0;
}

.review-item p {
  margin: 6px 0;
  font-size: 14px;
}

.review-item small {
  color: #777;
}
=======================================

/* Header layout fix */
.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 20px;
}

/* Menu button stays left */
.menu-toggle {
  justify-self: start;
}

/* Logo perfectly centered */
.logo {
  justify-self: center;
  text-align: center;
}

.logo img {
  max-height: 42px;
}

/* Cart + currency stay right */
.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* NAV FIX */
.nav {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}

.nav a {
  pointer-events: auto;
}
/* Mobile nav default hidden */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 10000;
  }

  .nav.active {
    left: 0;
  }
}
@media (min-width: 769px) {
  .nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 24px;
    height: auto;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }
}
