

@import url("https://fonts.googleapis.com/css2?family=Integral+CF:wght@700&family=Satoshi:wght@400;500;600;700&display=swap");


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

:root {
  --black: #000;
  --white: #fff;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-500: #999;
  --gray-700: #3c3c3c;
  --red: #ff3333;
  --green: #00c12b;
  --heading: "Integral CF", "Arial Black", sans-serif;
  --body: "Satoshi", "Helvetica Neue", sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 62px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--black);
  background: var(--white);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: var(--body);
  cursor: pointer;
}


.top-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  padding: 12px 48px;
  position: relative;
}
.top-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}
.top-bar-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-100);
}
.nav-logo {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.nav-links li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  cursor: pointer;
}
.nav-links a {
  color: var(--black);
}
.nav-links a.active {
  font-weight: 700;
}
.nav-links li:hover > .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 200;
}
.dropdown li {
  padding: 10px 20px;
  font-size: 14px;
  display: block;
}
.dropdown li:hover {
  background: var(--gray-100);
}
.dropdown a {
  display: block;
  color: var(--black);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  width: 280px;
}
.search-bar i {
  color: var(--gray-500);
}
.search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  font-family: var(--body);
}
.cart-icon {
  position: relative;
  font-size: 22px;
  color: var(--black);
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-count.visible {
  display: flex;
}
.nav-icon {
  font-size: 22px;
  color: var(--black);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--black);
  align-items: center;
  justify-content: center;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
}
.nav-overlay.open {
  display: block;
}


.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px 0;
  background: var(--gray-100);
  min-height: 580px;
  overflow: hidden;
}
.hero-content {
  flex: 1;
  max-width: 550px;
  z-index: 1;
}
.hero-content h1 {
  font-family: var(--heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--heading);
  font-size: 40px;
  font-weight: 700;
}
.stat-label {
  font-size: 13px;
  color: var(--gray-500);
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(0, 0, 0, 0.15);
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hero-image img {
  max-height: 570px;
  max-width: 399%;
  object-fit: contain;
}


.hero-star {
  position: absolute;
  font-size: 36px;
  color: var(--black);
}


.brands-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--black);
  padding: 20px 60px;
  flex-wrap: wrap;
  gap: 16px;
}
.brands-bar img {
  height: 28px;
  width: auto;
  object-fit: contain;
  
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 16px 54px;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  opacity: 0.82;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 14px 54px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}


.section-title {
  font-family: var(--heading);
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.view-all-wrap {
  text-align: center;
  margin-top: 32px;
}


.products-section {
  padding: 64px 60px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  cursor: pointer;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
}

.card-img-wrap {
  position: relative;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.card-info {
  padding: 14px 4px 4px;
}
.card-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.card-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.card-rating .fas.fa-star,
.card-rating .fas.fa-star-half-alt {
  color: #ffc633;
}
.card-rating .far.fa-star {
  color: #ffc633;
  opacity: 0.35;
}
.reviews {
  font-size: 13px;
  color: var(--gray-500);
}

.card-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.price {
  font-size: 22px;
  font-weight: 700;
}
.old-price {
  font-size: 18px;
  color: var(--gray-500);
  text-decoration: line-through;
}
.discount-badge {
  background: #ffe5e5;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}


.style-section {
  padding: 40px 60px 64px;
}
.style-container {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.style-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.style-row {
  display: flex;
  gap: 16px;
  height: 220px;
}
.style-casual {
  flex: 1;
}
.style-formal {
  flex: 1.7;
}
.style-party {
  flex: 1.7;
}
.style-gym {
  flex: 1;
}

.style-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 100%;
}
.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s;
}
.style-card:hover img {
  transform: scale(1.04);
}



.testimonials-section {
  padding: 64px 60px;
}
.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.testimonials-header .section-title {
  margin-bottom: 0;
  text-align: left;
}

.testimonial-arrows {
  display: flex;
  gap: 12px;
}
.testimonial-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  user-select: none;
}
.testimonial-arrows button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.testimonials-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  scroll-snap-align: start;
}
.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.t-stars .fas.fa-star,
.t-stars .fas.fa-star-half-alt {
  color: #ffc633;
  font-size: 18px;
}
.t-stars .far.fa-star {
  color: #ffc633;
  font-size: 18px;
  opacity: 0.35;
}
.testimonial-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.verified {
  color: var(--green);
  font-size: 15px;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}


.newsletter {
  background: var(--black);
  margin: 0 60px 60px;
  border-radius: var(--radius-lg);
  padding: 48px 64px;
}
.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-content h2 {
  font-family: var(--heading);
  font-size: 36px;
  color: var(--white);
  max-width: 440px;
  line-height: 1.15;
  text-transform: uppercase;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 340px;
}
.input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
}
.input-wrap i {
  color: rgba(255, 255, 255, 0.5);
}
.input-wrap input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  font-family: var(--body);
  width: 100%;
}
.input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.btn-white {
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-white:hover {
  opacity: 0.9;
}


.footer {
  padding: 48px 60px 32px;
  background: #f2f0f1;
  border-top: 1px solid var(--gray-200);
}
.footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand {
  flex: 1.2;
}
.footer-brand h3 {
  font-family: var(--heading);
  font-size: 24px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: opacity 0.2s;
}
.social-icons a:hover {
  opacity: 0.75;
}
.footer-links {
  display: flex;
  flex: 2;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--gray-700);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--black);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}
.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.payment-icons img {
  height: 28px;
  width: auto;
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 60px 80px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--gray-500);
}
.breadcrumb a:hover {
  color: var(--black);
}
.breadcrumb span {
  color: var(--black);
  font-weight: 500;
}
.breadcrumb i {
  font-size: 9px;
}


.category-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sidebar {
  width: 260px;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--white);
  position: sticky;
  top: 86px;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sidebar-header h3 {
  font-size: 20px;
  font-weight: 700;
}
.sidebar-header button {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--gray-500);
}

.filter-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 16px 0;
}

.filter-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.filter-section h4 i {
  color: var(--gray-500);
  font-size: 12px;
}

.category-list li,
.style-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  transition: background 0.15s;
}
.category-list li:hover,
.category-list li.active,
.style-list li:hover,
.style-list li.active {
  background: var(--gray-100);
  font-weight: 600;
}
.category-list li i,
.style-list li i {
  color: var(--gray-500);
  font-size: 11px;
}

.price-slider-wrap {
  position: relative;
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  margin: 20px 0 12px;
}
.price-fill {
  position: absolute;
  height: 100%;
  background: var(--black);
  border-radius: 4px;
}
input[type="range"] {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  background: transparent;
  pointer-events: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  pointer-events: all;
  cursor: pointer;
}
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}


.colors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.color-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
  transition: transform 0.15s;
}
.color-dot:hover {
  transform: scale(1.1);
}
.color-dot.selected {
  border-color: var(--black);
}
.color-dot.selected::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.sizes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.size-btn {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  background: var(--gray-100);
  transition: all 0.15s;
}
.size-btn:hover {
  background: #d8d8d8;
}
.size-btn.selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-apply {
  width: 100%;
  padding: 14px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  transition: opacity 0.2s;
}
.btn-apply:hover {
  opacity: 0.82;
}

.category-main {
  flex: 1;
  min-width: 0;
}
.category-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.category-top h2 {
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 700;
}
.cat-meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
}
.sort-select {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--body);
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
}
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.cat-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
  gap: 12px;
}
.btn-page-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  transition: background 0.2s;
}
.btn-page-nav:hover {
  background: var(--gray-100);
}
.pagination-nums {
  display: flex;
  gap: 4px;
  align-items: center;
}
.page-num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--body);
  transition: all 0.15s;
}
.page-num:hover {
  background: var(--gray-100);
}
.page-num.active {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
}


.product-info-section {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}


.product-gallery {
  display: flex;
  gap: 14px;
  flex: 1;
  max-width: 560px;
}
.thumb-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 106px;
  flex-shrink: 0;
}
.thumb-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.thumb-img.active {
  border-color: var(--black);
}
.main-img-wrap {
  flex: 1;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
}
.main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.product-details-wrap {
  flex: 1;
  padding-top: 4px;
}
.product-details-wrap h1 {
  font-family: var(--heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.product-rating .fas.fa-star,
.product-rating .fas.fa-star-half-alt {
  color: #ffc633;
}
.product-rating .far.fa-star {
  color: #ffc633;
  opacity: 0.35;
}

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.current-price {
  font-size: 34px;
  font-weight: 700;
}
.product-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.product-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 20px 0;
}
.product-option-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 12px;
  font-weight: 500;
}

.product-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}
.p-qty-control {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
}
.p-qty-control span {
  font-size: 18px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}
.p-qty-control .qty-btn {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  transition: opacity 0.2s;
}
.p-qty-control .qty-btn:hover {
  opacity: 0.6;
}
.btn-add-to-cart {
  flex: 1;
  padding: 16px 32px;
}


.tabs-section {
  margin-bottom: 80px;
}
.tab-header {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.tab-btn.active {
  color: var(--black);
  border-bottom-color: var(--black);
  font-weight: 700;
}
.tab-btn:hover {
  color: var(--black);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 740px;
}


.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.reviews-title {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-count {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 400;
}
.reviews-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.review-stars .fas.fa-star,
.review-stars .fas.fa-star-half-alt {
  color: #ffc633;
}
.review-stars .far.fa-star {
  color: #ffc633;
  opacity: 0.35;
}
.review-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-date {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.review-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
}

.btn-load-more {
  display: block;
  margin: 0 auto;
  padding: 14px 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-load-more:hover {
  background: var(--black);
  color: var(--white);
}


.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.faq-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
}


.related-section {
  margin-bottom: 80px;
}
.related-section .cat-products-grid {
  grid-template-columns: repeat(4, 1fr);
}


.cart-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 60px 80px;
}
.cart-page-title {
  font-family: var(--heading);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.cart-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cart-items-col {
  flex: 1.5;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.cart-item:first-child {
  padding-top: 0;
}
.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--gray-100);
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cart-item-name {
  font-size: 16px;
  font-weight: 700;
}
.cart-item-delete {
  background: none;
  border: none;
  color: var(--red);
  font-size: 18px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.cart-item-delete:hover {
  opacity: 0.7;
}
.cart-item-meta {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.color-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  vertical-align: middle;
  margin-left: 4px;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.cart-item-price {
  font-size: 22px;
  font-weight: 700;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
}
.qty-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--black);
  line-height: 1;
  padding: 0;
  transition: opacity 0.2s;
}
.qty-btn:hover {
  opacity: 0.6;
}
.qty-val {
  font-size: 16px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.empty-cart {
  text-align: center;
  padding: 60px 24px;
}
.empty-cart i {
  font-size: 60px;
  color: var(--gray-200);
  margin-bottom: 16px;
  display: block;
}
.empty-cart h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.empty-cart p {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 28px;
}

.order-summary-col {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 86px;
}
.order-summary-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 16px;
}
.summary-row .label {
  color: var(--gray-500);
}
.summary-row .discount-val {
  color: var(--red);
  font-weight: 600;
}
.summary-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 16px 0;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.promo-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.promo-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
}
.promo-input-wrap i {
  color: var(--gray-500);
}
.promo-input-wrap input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-family: var(--body);
  width: 100%;
}
.btn-promo {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-promo:hover {
  opacity: 0.82;
}
.btn-checkout {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.btn-checkout:hover {
  opacity: 0.82;
}









.checkout-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #9b9b9b;
  margin-bottom: 32px;
}

.checkout-breadcrumb a {
  color: #9b9b9b;
  text-decoration: none;
}

.checkout-breadcrumb a:hover { color: #000; }

.checkout-breadcrumb .active { color: #000; font-weight: 600; }

.checkout-breadcrumb i { font-size: 10px; }

.checkout-title {
  font-family: var(--font-heading, "Integral CF", sans-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #9b9b9b;
}

.step.active { color: #000; }

.step.done { color: #000; }

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  transition: all .25s;
}

.step.active .step-num {
  background: #000;
  border-color: #000;
  color: #fff;
}

.step.done .step-num {
  background: #000;
  border-color: #000;
  color: #fff;
}

.step-done-icon { font-size: 12px; }

.step-divider {
  flex: 1;
  height: 2px;
  background: #d9d9d9;
  margin: 0 12px;
  max-width: 80px;
}

.step-divider.active { background: #000; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}

.checkout-panel {
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}

.panel-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title .edit-btn {
  font-size: 13px;
  font-weight: 500;
  color: #9b9b9b;
  cursor: pointer;
  text-decoration: underline;
}

.panel-title .edit-btn:hover { color: #000; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select {
  height: 48px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color .2s;
  color: #000;
}

.form-group input:focus,
.form-group select:focus { border-color: #000; }

.form-group input.error,
.form-group select.error { border-color: #f00; }

.field-error {
  font-size: 11px;
  color: #e00;
  margin-top: -4px;
  display: none;
}

.field-error.show { display: block; }

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.payment-option:hover { border-color: #000; }

.payment-option.selected {
  border-color: #000;
  background: #f9f9f9;
}

.payment-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #000;
  cursor: pointer;
  flex-shrink: 0;
}

.payment-option-info { flex: 1; }

.payment-option-name {
  font-size: 15px;
  font-weight: 600;
}

.payment-option-desc {
  font-size: 12px;
  color: #9b9b9b;
  margin-top: 2px;
}

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

.payment-icons img {
  height: 22px;
  object-fit: contain;
}

.card-fields {
  margin-top: 20px;
  display: none;
}

.card-fields.show { display: block; }

.card-number-wrap {
  position: relative;
}

.card-number-wrap input {
  padding-right: 50px;
  width: 100%;
}

.card-brand-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #9b9b9b;
}

.order-summary {
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
}

.summary-items::-webkit-scrollbar { width: 4px; }

.summary-items::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 4px;
}

.summary-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.summary-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  background: #f0f0f0;
}

.summary-item-info { flex: 1; }

.summary-item-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.summary-item-meta {
  font-size: 12px;
  color: #9b9b9b;
}

.summary-item-price {
  font-size: 15px;
  font-weight: 700;
}

.summary-item-qty {
  font-size: 12px;
  color: #9b9b9b;
  text-align: right;
}

.summary-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 16px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 10px;
}

.summary-row.discount { color: #f33e3e; }

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
  margin-top: 6px;
}

.promo-row {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.promo-row input {
  flex: 1;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.promo-row input:focus { border-color: #000; }

.promo-row button {
  height: 44px;
  padding: 0 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.promo-row button:hover { background: #333; }

.promo-msg {
  font-size: 12px;
  margin-top: -8px;
  margin-bottom: 8px;
}

.promo-msg.success { color: #26a541; }

.promo-msg.error { color: #e00; }

.place-order-btn {
  width: 100%;
  height: 54px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 62px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s, transform .15s;
  font-family: inherit;
}

.place-order-btn:hover { background: #333; transform: translateY(-1px); }

.place-order-btn:active { transform: scale(.98); }

.place-order-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #9b9b9b;
  margin-top: 12px;
}

.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.success-overlay.show { display: flex; }

.success-card {
  background: #fff;
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1);
}

@keyframes popIn {
  from { transform: scale(.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon i {
  color: #fff;
  font-size: 36px;
}

.success-card h2 {
  font-family: var(--font-heading, "Integral CF", sans-serif);
  font-size: 26px;
  margin-bottom: 12px;
}

.success-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
}

.success-order-num {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  margin-bottom: 28px;
}

.success-order-num span { font-weight: 700; }

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-outline {
  height: 48px;
  padding: 0 24px;
  border: 2px solid #000;
  background: transparent;
  border-radius: 62px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}

.btn-outline:hover { background: #000; color: #fff; }

.btn-filled {
  height: 48px;
  padding: 0 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 62px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.btn-filled:hover { background: #333; }

.empty-checkout {
  text-align: center;
  padding: 80px 20px;
}

.empty-checkout i {
  font-size: 64px;
  color: #d9d9d9;
  margin-bottom: 20px;
}

.empty-checkout h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.empty-checkout p {
  color: #9b9b9b;
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 16px 32px;
  }
  .search-bar {
    width: 200px;
  }
  .hero {
    padding: 48px 32px 0;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .products-section {
    padding: 48px 32px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .style-section {
    padding: 32px 32px 56px;
  }
  .testimonials-section {
    padding: 48px 32px;
  }
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  .newsletter {
    margin: 0 32px 40px;
    padding: 36px 40px;
  }
  .footer {
    padding: 40px 32px 24px;
  }
  .footer-links {
    gap: 24px;
  }
  .page-wrapper {
    padding: 20px 32px 60px;
  }
  .sidebar {
    width: 230px;
  }
  .cat-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-info-section {
    gap: 28px;
  }
  .product-details-wrap h1 {
    font-size: 32px;
  }
  .related-section .cat-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cart-page-wrapper {
    padding: 24px 32px 60px;
  }
   .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 52px;
  }
  .navbar,
  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }
  .products-section,
  .testimonials-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .style-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .newsletter {
    margin: 0 40px 48px;
  }
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .page-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
  .cart-page-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  
  .nav-hamburger {
    display: flex !important;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 78%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    padding: 80px 24px 40px;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 0 16px;
    display: block !important;
  }
  .navbar {
    padding: 14px 20px;
  }
  .search-bar {
    display: none;
  }

 
  .hero {
    flex-direction: column;
    padding: 40px 20px 0;
    min-height: unset;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    max-width: 100%;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-num {
    font-size: 32px;
  }
  .hero-image {
    width: 100%;
    justify-content: center;
    margin-top: 32px;
    background-color: red;
  }
  .hero-image img {
    max-height: 520px;
    
  }

 
  .brands-bar {
    padding: 16px 20px;
    gap: 12px;
  }
  .brands-bar img {
    height: 20px;
  }


  .products-section {
    padding: 40px 20px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

 
  .style-section {
    padding: 24px 20px 40px;
  }
  .style-container {
    padding: 28px 20px;
  }
  .style-row {
    height: 160px;
  }


  .testimonials-section {
    padding: 40px 20px;
  }
  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 100%;
  }

  
  .newsletter {
    margin: 0 20px 40px;
    padding: 32px 24px;
  }
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-content h2 {
    font-size: 28px;
    max-width: 100%;
  }
  .newsletter-form {
    min-width: unset;
    width: 100%;
  }


  .footer {
    padding: 36px 20px 24px;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .payment-icons {
    justify-content: center;
  }

 
  .page-wrapper {
    padding: 16px 20px 48px;
  }
  .filter-toggle-btn {
    display: flex;
  }
  .sidebar {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 1001;
    overflow-y: auto;
    padding: 24px 20px 100px;
  }
  .sidebar.open {
    display: block;
  }
  .category-layout {
    flex-direction: column;
  }
  .category-top h2 {
    font-size: 26px;
  }
  .cat-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }


  .product-info-section {
    flex-direction: column;
    margin-bottom: 48px;
  }
  .product-gallery {
    flex-direction: column-reverse;
    max-width: 100%;
  }
  .thumb-list {
    flex-direction: row;
    width: 100%;
  }
  .thumb-img {
    width: 76px;
    height: 76px;
    aspect-ratio: unset;
  }
  .main-img-wrap {
    aspect-ratio: 4/3;
  }
  .product-details-wrap h1 {
    font-size: 28px;
  }
  .current-price {
    font-size: 28px;
  }
  .product-actions {
    flex-direction: column;
  }
  .p-qty-control {
    width: 100%;
    justify-content: center;
  }
  .btn-add-to-cart {
    width: 100%;
  }
  .tab-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .related-section .cat-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

 
  .cart-page-wrapper {
    padding: 20px 20px 48px;
  }
  .cart-page-title {
    font-size: 32px;
  }
  .cart-layout {
    flex-direction: column;
  }
  .order-summary-col {
    position: static;
    width: 100%;
  }
  .cart-item-img {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 600px) {
  .checkout-title { font-size: 26px; }
  .checkout-panel { padding: 20px; }
  .order-summary { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-steps { gap: 0; }
  .step span { display: none; }
  .step-divider { max-width: 40px; }
  .success-card { padding: 40px 24px; }
  .success-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }
  .nav-logo {
    font-size: 20px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .stat-num {
    font-size: 26px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .style-row {
    flex-direction: column;
    height: auto;
  }
  .style-card {
    height: 150px;
  }
  .newsletter-content h2 {
    font-size: 22px;
  }
  .cat-products-grid {
    gap: 12px;
  }
  .card-info h3 {
    font-size: 14px;
  }
  .price {
    font-size: 18px;
  }
  .tab-btn {
    padding: 10px 10px;
    font-size: 13px;
  }
  .promo-wrap {
    flex-direction: column;
  }
  .btn-promo {
    width: 100%;
    text-align: center;
  }
  .reviews-header {
    flex-direction: column;
    gap: 12px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}