:root {
  --title-color: #111827;
  --body-color: #2e2e2e;
  --muted: #6b7280;
  --border-color: #b7bfc6;
  --brand-color: #c92846;
  --soft-bg: #f7f0f0;
  --light-bg: #f3f4f6;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--body-color);
}

.top-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1020;
}
.btn{
  padding: 8px 16px;
}

.nav-logo {
    display: flex;
    gap: 8px;
    text-decoration: none;
    align-items: center;
}

.nav-logo img {
    width: 32px;
    cursor: pointer;
}
.nav-logo .logo-text {
    color: var(--title-color);
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 700;
}

.product-preview-sticky {
  position: static;
}

.product-media-wrap {
  overflow: hidden;
  background: var(--light-bg);
  position: relative;
}

.product-main {
  position: relative;
  height: 514px;
}

.video-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  z-index: 3;
}

.mute-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  border: 0;
  z-index: 3;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-color);
}

.preview-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(to top, rgba(243, 244, 246, 0.96), rgba(243, 244, 246, 0.7), rgba(243, 244, 246, 0));
}

.preview-actions i {
  font-size: 20px;
  color: #4b5563;
}

.rating-badge{
  background: #fff;
  color: #212121;
}

.rating-badge i {
  color: #eba928;
}

.action-icon {
  background: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-icon i {
  font-size: 16px;
  color: #4b5563;
}

.thumb,
.swatch {
  width: 103px;
  height: 103px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  object-fit: cover;
}

.thumb-wrap {
  position: relative;
  border-radius: 6px;
}

.thumb-wrap.active .thumb,
.swatch.active {
  border: 2px solid var(--brand-color);
}

.thumb-play {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  color: var(--body-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.thumb-crop-2 {
  object-position: left center;
}

.thumb-crop-3 {
  object-position: right 35%;
}

.thumb-crop-4 {
  object-position: 30% 30%;
}

.product-title {
  color: var(--title-color);
  font-size: 24px;
  line-height: 1.33;
  font-weight: 700;
}

.price-now {
  color: var(--title-color);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
}

.price-old {
  color: #9ca3af;
  font-size: 20px;
  text-decoration: line-through;
}

.emi-text {
  color: #374151;
  font-size: 16px;
}

.soft-card {
  background: var(--soft-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand-link {
  color: var(--brand-color);
  font-weight: 500;
}

.size-btn {
  min-width: 44px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: #374151;
}
.size-btn:hover{
  border-color: var(--brand-color);
}

.size-btn.active {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: #fff;
}

.size-btn.disabled {
  background: #f3f4f6;
  border-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

.btn-brand {
  background: var(--brand-color);
  color: #fff;
  border: 0;
  font-weight: 600;
}

.btn-brand:hover {
  background: #b4213d;
  color: #fff;
}

.qty-select {
  width: auto;
  min-width: 140px;
  border-color: var(--border-color);
  color: #374151;
}

.section-title {
  color: var(--title-color);
  font-size: 20px;
  font-weight: 700;
}

.highlights > div {
  color: var(--title-color);
}

.info-text {
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.65;
}

.service-points-card {
  background: #f7f0f0;
  border-color: var(--border-color) !important;
}

.service-point-item {
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
}

.service-point-mid {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.service-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.service-points small {
  color: #4b5563;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.star-row i {
  font-size: 14px;
  margin-right: 2px;
}

.review-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
}

.review-score {
  background: #eba928;
  color: #fff;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d1d5db;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.review-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d1d5db, #9ca3af);
  flex-shrink: 0;
}

.site-footer {
  background: var(--title-color);
}

.footer-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-footer-secondary {
  color: #9ca3af;
  max-width: 420px;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.size-chart-table thead th {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  border-bottom-width: 1px;
}

.size-chart-table tbody td {
  font-size: 14px;
  color: #111827;
}

.mobile-sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 14px rgba(17, 24, 39, 0.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-sticky-buy__price {
  min-width: 92px;
  line-height: 1.15;
}

.mobile-sticky-buy__price strong {
  font-size: 18px;
  color: #111827;
}

.mobile-sticky-buy__btn {
  flex: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 991.98px) {
  .product-main {
    height: 440px;
  }

  .price-now {
    font-size: 30px;
  }

  main {
    padding-bottom: 96px !important;
  }
}

@media (min-width: 992px) {
  .product-preview-sticky {
    position: sticky;
    top: 24px;
  }
}

@media (max-width: 575.98px) {
  .soft-card {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .thumb,
  .swatch {
    width: 60px;
    height: 60px;
  }

  .thumb-play {
    width: 20px;
    height: 20px;
    left: 6px;
    bottom: 6px;
    font-size: 12px;
  }

  .preview-meta {
    padding: 8px 12px;
  }

  .preview-actions i {
    font-size: 16px;
  }

  .product-main {
    height: 320px;
  }

  .mute-btn,
  .video-btn {
    width: 34px;
    height: 34px;
  }

  .product-title {
    font-size: 20px;
  }

  .price-now {
    font-size: 28px;
  }

  .review-thumb {
    width: 60px;
    height: 60px;
  }

  .service-point-item {
    padding: 14px 8px;
    min-height: 86px;
  }

  .service-icon {
    width: 24px;
    height: 24px;
  }
}
