:root {
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --gray-dark: #333;
  --gray: #6b6b6b;
  --gray-light: #f0f0f0;
  --gray-border: #e0e0e0;
  --white: #fff;
  --red: #c0392b;
  --star: #e8a317;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --block-padding-sm: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Live Stats Bar – səhifənin ən yuxarısı */
.live-stats-bar {
  background: #0a0a0a;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: #888;
  border-bottom: 1px solid #222;
  flex-wrap: wrap;
}

.live-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #FF1744;
  border-radius: 50%;
  animation: live-blink 1s infinite;
  flex-shrink: 0;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-stats-bar .live-stat strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 600px) {
  .live-stats-bar {
    gap: 12px;
    font-size: 11px;
    padding: 8px 12px;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--white);
  color: #333;
  padding-bottom: calc(72px + var(--safe-bottom));
}

/* App shell – mobil app görünüşü */
.app-shell {
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}

.app-header {
  background: #0a0a0a;
  color: var(--white);
}

.app-header .logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-header .logo-img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #f0f0f0;
  font-size: 0.9rem;
  color: #555;
}

.filter-bar .filter-label i,
.filter-bar .filter-action i {
  margin-right: 4px;
}

.filter-bar .filter-action {
  color: var(--black);
  font-weight: 600;
  cursor: pointer;
}

.app-main {
  padding: 0 16px 16px;
  padding-bottom: calc(24px + var(--safe-bottom));
  box-sizing: border-box;
}

/* Giriş bannerı – Welcome Ramadan */
.welcome-banner {
  position: relative;
  width: 100%;
  margin: 0 -16px 16px;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.welcome-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  vertical-align: top;
}

.welcome-banner-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.welcome-banner-title br {
  display: block;
}

/* Flash Sale endirim timer */
.flash-sale-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  background: #ffe8dc;
  border: 1px solid #e67e50;
  border-radius: 12px;
  position: relative;
}

.flash-sale-timer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.5rem;
}

.flash-sale-timer-inner {
  flex: 1;
  min-width: 0;
}

.flash-sale-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.flash-sale-countdown {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.flash-sale-countdown .time-count {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  min-width: 1.6em;
  text-align: center;
}

.flash-sale-countdown .separator {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.flash-sale-timer.expired {
  opacity: 0.7;
}

.flash-sale-timer.expired .flash-sale-countdown .time-count {
  color: #888;
}

/* Header – herbalaz.shop tərzi: sol geri+mağaza, mərkəz loqo, sağ səbət+axtarış */
.header {
  background: #0a0a0a;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  min-height: 48px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}

.header-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 80px;
  justify-content: flex-end;
}

.btn-header {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
}

.btn-header:hover {
  opacity: 0.9;
}

.btn-back-circle {
  background: var(--white);
  color: var(--black);
}

.btn-shop {
  color: var(--white);
  font-size: 1rem;
}

.logo-link {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo-link:hover {
  color: var(--white);
  opacity: 0.95;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 0.65rem;
  min-width: 14px;
  height: 14px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.btn-cart-link {
  position: relative;
}

.header-tabs-wrap {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 0 8px;
  max-height: 120px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
}

/* Aşağı scroll: aktiv/sticky – tab sətiri gizlənir, header kompakt */
.header.fixed-already .header-tabs-wrap {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-width: 0;
}

.header.fixed-already .header-inner {
  padding-top: 6px;
  padding-bottom: 6px;
  min-height: 44px;
}

.header-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}

.header-tab {
  flex: 1;
  padding: 10px 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}

.header-tab:hover {
  color: var(--white);
}

.header-tab.active {
  color: var(--white);
  font-weight: 600;
  border-bottom-color: var(--white);
}

.product-page .main > .tabs {
  display: none;
}

/* Index: header-inner eyni 3-sütun layout */
.header:not(.header-product) .header-tabs-wrap {
  display: none;
}

.header:not(.header-product) .header-actions,
.header-actions {
  display: flex;
  gap: 12px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
}

.header .logo-icon {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 6px 6px 0 0;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.btn-icon {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  text-decoration: none;
}

/* Main */
.main {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}

.section-title {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #333;
}

/* Product grid (cards) – məhsul şəkilləri 190×250 px */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 190px);
  gap: 12px;
  justify-content: center;
}

.product-card {
  width: 190px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: relative;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-image {
  position: relative;
  width: 190px;
  height: 250px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-dark);
  overflow: hidden;
}

.product-card-image .product-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-image .placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.product-card-image .product-card-discount {
  position: absolute;
  left: 0;
  top: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  padding: 4px 8px;
  font-weight: 700;
  z-index: 2;
}

.product-card-image .wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--gray);
  font-size: 1.1rem;
  z-index: 2;
}

.product-card-image .badge-overlay {
  position: absolute;
  left: 0;
  top: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  padding: 4px 8px;
  font-weight: 700;
  max-width: 70%;
  z-index: 2;
}

.product-card-body {
  padding: 10px 12px;
}

.product-card-categories {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 2.6em;
}

.product-card-rating {
  color: var(--star);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card-price .old {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 0.85rem;
}

.product-card-price .current {
  color: #8F2DCC;
  font-weight: 700;
  font-size: 1rem;
}

.product-card .btn-buy-small {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Alt nav – app menyu */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--white);
  border-top: 1px solid #eee;
  padding: 8px 0 calc(8px + var(--safe-bottom)) 0;
  z-index: 90;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  color: var(--gray);
  font-size: 0.7rem;
  text-decoration: none;
  transition: color 0.2s;
}

.bottom-nav-item i {
  font-size: 1.25rem;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: var(--black);
}

.bottom-nav-item[aria-current="page"] {
  color: var(--black);
  font-weight: 600;
}

.bottom-nav-item.btn-cart-nav {
  position: relative;
}

.bottom-nav-item .cart-count-badge {
  position: absolute;
  top: 2px;
  right: 50%;
  margin-right: -24px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product detail page – 1:1 dizayn: tünd firuzəyi, naxış, 2 sütun */
.product-hero {
  background: var(--black);
  color: var(--white);
  margin: 0 -16px 0 -16px;
  padding: 0;
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='80' viewBox='0 0 200 80'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1' stroke-opacity='0.08' d='M0 40 Q50 20 100 40 T200 40 M0 55 Q50 35 100 55 T200 55 M0 25 Q50 5 100 25 T200 25'/%3E%3C/svg%3E");
  background-size: 200px 80px;
  pointer-events: none;
}

.product-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 380px;
}

/* Hero yalnız şəkil – yazı şəklin üzərindədir */
.product-hero-inner.product-hero-image-only {
  min-height: 0;
  display: block;
  position: relative;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-image-wrap .hero-full-image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.hero-image-wrap .placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-size: 4rem;
  color: var(--white);
  opacity: 0.7;
}

/* Hero karusel – animasiyalı şəkil keçidi */
.hero-carousel-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 0;
}

.hero-slide img.hero-full-image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.hero-slide .placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  font-size: 4rem;
  color: var(--white);
  opacity: 0.7;
}

.hero-slide.error .hero-full-image { display: none; }
.hero-slide.error .placeholder-icon { display: flex; }

.product-hero-carousel .hero-carousel-indicator {
  transition: opacity 0.2s ease;
}

.hero-text {
  flex: 1 1 55%;
  min-width: 200px;
  padding: 24px 20px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-hero .tagline-line1 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.product-hero .tagline-line2,
.product-hero .tagline-line3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 2px;
}

.product-hero .subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.98;
  margin-top: 8px;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.product-hero .subtitle-line2 {
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.product-hero .benefits-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.product-hero .benefits-list {
  list-style: none;
}

.product-hero .benefits-list li {
  padding: 5px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.35;
}

.product-hero .benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--green-check);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
}

.hero-visual {
  flex: 1 1 45%;
  min-width: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px 16px 0 0;
}

.hero-product-base {
  background: var(--white);
  border-radius: 12px 12px 0 0;
  width: 100%;
  max-width: 200px;
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.hero-product-base img {
  max-height: 200px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  object-position: center bottom;
}

.hero-product-base .placeholder-icon {
  font-size: 4rem;
  color: var(--black);
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-image-only .hero-carousel-indicator {
  bottom: 12px;
  right: 16px;
}

.hero-carousel-indicator {
  position: absolute;
  bottom: 12px;
  right: 24px;
  font-size: 0.8rem;
  color: var(--white);
  z-index: 2;
}

.product-info {
  margin-bottom: 16px;
}

.product-info .title-row {
  display: block;
  margin-bottom: 12px;
}

/* Məhsul adı – yaşlılar üçün böyük, oxunaqlı */
.product-info .title,
.product-info .product_title,
.product-info h1.title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  margin: 0;
  word-wrap: break-word;
  letter-spacing: -0.02em;
}

@media (min-width: 480px) {
  .product-info .title,
  .product-info .product_title,
  .product-info h1.title {
    font-size: 1.65rem;
  }
}

.product-info .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}

.product-info .google-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-info .google-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-info .google-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.product-info .google-rating .rating-num {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.product-info .rating-stars {
  color: var(--star);
  font-size: 1rem;
}

.product-info .review-count {
  color: var(--gray);
  font-size: 1rem;
}

.product-info .price-block {
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}

.product-info .price__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-info .price__sale {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.product-info .price-item--sale,
.product-info .price-current {
  color: #c0392b;
  font-size: 1.65rem;
  font-weight: 700;
}

.product-info .price-item--regular,
.product-info .price-old {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1.1rem;
}

.product-info .price__off {
  font-size: 0.9rem;
  font-weight: 600;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c0392b;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* SAVE X% – stiker (qırmızı, yüngül fırlanma, kölgə) */
.product-info .price__badge-sale,
.product-info .save-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(180deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  white-space: nowrap;
  transform: rotate(-4deg);
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* Bundle & Save – alt alta, yaşlılar üçün böyük mətn */
.quantity-breaks {
  margin: 1.5rem 0;
}

.quantity-breaks__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin: 0 0 18px;
}

.quantity-breaks__line {
  flex: 1;
  height: 2px;
  background: #c0392b;
}

.quantity-breaks-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quantity-break-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quantity-break {
  display: block;
  position: relative;
  padding: 18px 18px;
  background: #fdf2f2;
  border: 2px solid #e8b4b4;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quantity-break-radio:checked + .quantity-break {
  border-color: #c0392b;
  box-shadow: 0 0 0 1px #c0392b;
}

.quantity-break__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #c0392b;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 0 12px 0 8px;
  margin: 0;
}

.quantity-break__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.quantity-break__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quantity-break__label-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.quantity-break__benefit-wrap .quantity-break__benefit {
  font-size: 0.9rem;
  color: #c0392b;
  border: 1px solid #c0392b;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.quantity-break__right {
  text-align: right;
}

.quantity-break__price {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #c0392b;
}

.quantity-break__compare-price {
  display: block;
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
}

/* Animasiyalı ticker: satılıb / səbətə əlavə edib */
.check-incart-sold-wrap {
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}

.check-incart-sold {
  overflow: hidden;
  position: relative;
}

.nasa-scroll {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: #555;
}

.nasa-scroll .nasa-last-sold,
.nasa-scroll .nasa-in-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nasa-scroll .fire { color: var(--red); }

.nasa-scroll.nasa-two {
  animation: nasa-ticker 8s ease-in-out infinite;
}

@keyframes nasa-ticker {
  0%, 35% { transform: translateY(0); }
  40%, 60% { transform: translateY(-24px); }
  65%, 100% { transform: translateY(0); }
}

.product-info .toplu-line {
  margin-bottom: 12px;
}

.product-info .toplu-line .toplu-title {
  font-weight: 700;
  color: #2c2c2c;
  font-size: 0.95rem;
}

.product-info .toplu-line .toplu-desc {
  font-size: 0.85rem;
  color: var(--gray);
}

.urgency-bar {
  background: #fff5f5;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.urgency-bar .fire { color: var(--red); }

.action-buttons-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-whatsapp {
  flex: 1;
  padding: 12px;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn-wishlist {
  padding: 12px 16px;
  background: var(--gray-light);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #333;
}

.product-info .delivery-row {
  font-size: 1rem;
  padding: 10px 0;
}

.delivery-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
  color: var(--gray-dark);
}

.product-info .urgency-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-border);
  color: var(--gray-dark);
}

.product-info .urgency-row .urgency-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.product-info .urgency-viewers .urgency-icon {
  color: var(--gray-dark);
}

.product-info .urgency-in-cart .urgency-icon {
  font-size: 1.1rem;
}

.viewers-row {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Tabs */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 12px;
}

.tab {
  padding: 12px 16px;
  background: none;
  border: none;
  font-size: 0.95rem;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.tab.active {
  color: var(--black);
  font-weight: 600;
  border-bottom-color: var(--black);
}

/* Məhsul səhifəsi – header şəklin üstündə, arxası qara deyil (şəffaf) */
.header-product {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: none;
}

.header-product .header-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-product .btn-header,
.header-product .btn-shop,
.header-product .logo-link {
  color: #fff;
}

/* Geri düyməsi – şəklin üstündə görünsün (yarımşəffaf qara fon) */
.header-product .btn-back-circle,
.header-product .breadcrumbs-back {
  width: 40px;
  height: 40px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  flex-shrink: 0;
}

.header-product .btn-back-circle .btn-back-icon,
.header-product .breadcrumbs-back .btn-back-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-product .btn-back-circle svg,
.header-product .breadcrumbs-back svg {
  width: 24px;
  height: 24px;
}

.header-product .btn-back-circle:hover,
.header-product .breadcrumbs-back:hover {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.header-product .logo-img {
  filter: brightness(0) invert(1);
}

/* Məhsul səhifəsi – vahid padding, məzmun tam görünsün; header overlay üçün */
.main.product-page {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 16px 24px;
  box-sizing: border-box;
}

/* Flash Sale altında: İNDİ AL düyməsi + arı yan-yana */
.flash-cta-wrap {
  position: relative;
  margin-top: 12px;
}

/* Arı – İNDİ AL düyməsinin yanında fırlanır və hərəkət edir */
.bee-fly {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -22px;
  z-index: 5;
  pointer-events: none;
  width: 44px;
  height: 44px;
  animation: beeFly 5s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
  width: 44px;
  height: 44px;
  animation: beeFly 5s ease-in-out infinite;
}

.bee-fly img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.15));
}

@keyframes beeFly {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-45px, -35px) rotate(25deg);
  }
  50% {
    transform: translate(-55px, 25px) rotate(-20deg);
  }
  75% {
    transform: translate(-15px, 40px) rotate(15deg);
  }
}

.product-page .product-info {
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Məhsul səhifəsi – Flash Sale timer + İNDİ AL */
.product-offer-time-wrap {
  position: relative;
  margin: 35px 0 20px;
}

/* Trust bar – Flash Sale altında (Türkiyə / Secure) */
.loc-trust-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  margin: 0 0 20px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  font-size: 0.85rem;
}

@media (min-width: 480px) {
  .loc-trust-bar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 14px;
  }
}

/* Pulun geri qaytarılması – dizayna uyğun: tünd fon, qırmızı vurğu */
.try-risk-free {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  margin: 0 0 20px;
  background: var(--black-soft);
  border-radius: 0;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  text-align: left;
}

.try-risk-free .moneyback-seal {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.try-risk-free .moneyback-seal img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
}

.try-risk-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.try-risk-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

.try-risk-title-accent {
  color: var(--red);
}

.try-risk-title-main {
  color: var(--white);
}

.try-risk-text {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.try-risk-free .try-risk-btn {
  margin-top: 8px;
  max-width: 280px;
}

@media (min-width: 480px) {
  .try-risk-free {
    gap: 24px;
    padding: 24px 20px;
  }

  .try-risk-free .moneyback-seal img {
    width: 120px;
    height: 120px;
  }

  .try-risk-title {
    font-size: 1.2rem;
  }
}

/* Tövsiyə olunan qəbul kursu – İNDİ AL-dan yuxarı */
.recommended-course-banner {
  margin: 0 0 16px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #fff5f7 0%, #ffe8ec 50%, #ffdfe5 100%);
  border-radius: 12px;
  border: 1px solid rgba(200, 80, 100, 0.2);
  text-align: center;
}

.recommended-course-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e3a5f;
  letter-spacing: 0.02em;
  display: block;
}

@media (min-width: 480px) {
  .recommended-course-banner {
    padding: 14px 20px;
  }
  .recommended-course-text {
    font-size: 1rem;
  }
}

/* Keyfiyyət / zəmanət şərhi – Toplu al – qənaət et blokundan yuxarı */
.quality-badges-wrap {
  margin: 0 0 20px;
  padding: 0;
}

.quality-badges-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 🎁 3 ədəd alanda pulsuz hədiyyə – İNDİ AL-dan yuxarı, şəkildəki kimi yan-yana */
.free-gift-section {
  margin: 0 0 20px;
  padding: 14px 0 18px;
  border-top: 1px solid var(--gray-border);
}

.free-gift-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--black);
}

.free-gift-subtitle {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin: 0 0 12px;
}

.free-gift-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 100%;
}

.free-gift-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px 12px;
  border: 2px solid var(--red);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
}

.free-gift-card:hover,
.free-gift-card:focus-within {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.25);
}

.free-gift-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.free-gift-radio:checked + .free-gift-tag {
  background: var(--red);
  color: #fff;
}

.free-gift-card:has(.free-gift-radio:checked) {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}

.free-gift-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 8px;
  align-self: stretch;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.free-gift-icon {
  font-size: 2rem;
  margin-bottom: 6px;
  line-height: 1;
  flex-shrink: 0;
}

.free-gift-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 400px) {
  .free-gift-options {
    gap: 6px;
  }
  .free-gift-card {
    padding: 8px 4px 10px;
  }
  .free-gift-icon {
    font-size: 1.6rem;
  }
  .free-gift-name {
    font-size: 0.7rem;
  }
}

.lt-left-group {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-shrink: 1;
}

.lt-flag-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
}

@media (min-width: 480px) {
  .lt-left-group { gap: 10px; }
  .lt-flag-icon { width: 36px; height: 36px; }
}

.lt-text-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lt-label {
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .lt-label { font-size: 0.7rem; }
}

.lt-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--gray-dark);
}

.lt-pin-icon {
  width: 12px;
  height: 12px;
  fill: #666;
  flex-shrink: 0;
}

.lt-right-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .lt-right-group { padding: 6px 12px; gap: 8px; }
}

.lt-secure-icon {
  width: 20px;
  height: 20px;
  fill: #16a34a;
  flex-shrink: 0;
}

.lt-secure-text {
  font-weight: 600;
  color: #16a34a;
  font-size: 0.75rem;
}

@media (min-width: 480px) {
  .lt-secure-text { font-size: 0.8rem; }
}

/* Banka sayı – Flash Sale altında, grid variant seçimi */
.variant-radios-wrap {
  margin: 0 0 24px;
}

.variant-radios .variant-radios__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.variant-radios .product__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.variant-radios .product__label .selected__value {
  font-weight: 600;
  color: var(--black);
}

.variant-radios .variant-radio-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Banka seçimi həmişə alt-alta (1 sütun) */
#variant-radios-banka .variant-radios__grid {
  grid-template-columns: 1fr;
}

/* Banka bölməsi – böyük yazılar (konversiya) */
#variant-radios-banka .product__label {
  font-size: 1.1rem;
}
#variant-radios-banka .var-text .title {
  font-size: 1.05rem;
}
#variant-radios-banka .var-text .meta_data {
  font-size: 0.95rem;
}
#variant-radios-banka .meta_data-icon {
  font-size: 0.9rem;
}
#variant-radios-banka .var-text .meta_data--price {
  font-size: 1.1rem;
  margin-top: 8px;
}
#variant-radios-banka .add-var-text {
  font-size: 0.8rem;
  padding: 4px 10px;
}

/* Banka altında qiymət + İNDİ AL */
.banka-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
}
.banka-footer__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c0392b;
  text-align: center;
}
.banka-footer__btn {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

.variant-radios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.variant-radios .variant-radio-item {
  position: relative;
  min-width: 0;
}

.variant-radios .var-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  border: 2px solid var(--gray-border);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.variant-radios .var-text:hover {
  border-color: var(--gray);
}

.variant-radios .variant-radio-input:checked + .var-text {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 1px #1a1a1a;
}

.variant-radios .variant-radio-input:focus-visible + .var-text {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.variant-radios .var-text .title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 4px;
}

.variant-radios .var-text .meta_data {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.35;
}

.variant-radios .meta_data-icon {
  font-size: 0.7rem;
  opacity: 0.85;
  margin-right: 2px;
  vertical-align: middle;
}

.variant-radios .var-text .meta_data--price {
  margin-top: 6px;
  font-weight: 700;
  color: #c0392b;
  font-size: 0.85rem;
}

.variant-radios .meta-discount-code {
  position: absolute;
  top: -8px;
  right: 8px;
}

.variant-radios .add-var-text {
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: #e67e22;
  border-radius: 6px;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .variant-radios__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.offer-time-box {
  position: relative;
  background: #fcf6f0;
  border: 1px solid #e03757;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.offer-time-tag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #fcf6f0;
  border: 1px solid #e03757;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #e03757;
  text-transform: uppercase;
}

.offer-time-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: #e03757;
}

.offer-time-icon .svgFlash {
  width: 100%;
  height: 100%;
}

.offer-time-inner {
  flex: 1;
  min-width: 0;
}

.offer-time-text {
  font-size: 0.75rem;
  color: var(--gray-dark);
  margin: 0 0 4px;
}

.ninetheme-coming-time {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.ninetheme-coming-time .time-count {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e03757;
  min-width: 1.8em;
  text-align: center;
}

.ninetheme-coming-time .separator {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e03757;
}

.offer-time-box.expired .ninetheme-coming-time {
  opacity: 0.7;
}

/* İNDİ AL – qara fon, qırmızı çərçivə, shake animasiyası */
.buy-btn-red,
.btn-indi-al.buy-btn-red {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background: #000;
  border: 2px solid #ff0000;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s ease;
  animation: buyShake 2s infinite;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.buy-btn-red:hover,
.btn-indi-al.buy-btn-red:hover {
  background: #ff0000;
  color: #000;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
  transform: scale(1.05);
}

.buy-btn-red::before,
.btn-indi-al.buy-btn-red::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  background: linear-gradient(120deg, transparent, rgba(255, 0, 0, 0.6), transparent);
  transition: 0.55s ease;
  pointer-events: none;
}

.buy-btn-red:hover::before,
.btn-indi-al.buy-btn-red:hover::before {
  left: 120%;
}

@keyframes buyShake {
  0% { transform: translateX(0); }
  5% { transform: translateX(-4px); }
  10% { transform: translateX(4px); }
  15% { transform: translateX(-4px); }
  20% { transform: translateX(4px); }
  25% { transform: translateX(0); }
  100% { transform: translateX(0); }
}

.buy-btn-red:hover {
  animation: none;
}

@media (max-width: 480px) {
  .buy-btn-red,
  .btn-indi-al.buy-btn-red {
    padding: 18px 20px;
    font-size: 18px;
  }
}

.product-page-content {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

/* Kecid – ağ bloklar, yumşaq kölgə, solid border yox */
.product-page-content > div,
.kecid {
  margin-bottom: 20px;
  padding: var(--block-padding-sm);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  box-sizing: border-box;
  border: none;
}

.product-page-content > div:last-child {
  margin-bottom: 0;
}

#productDescription,
#reviewsBlock {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.tab-content {
  display: none;
  padding: 12px 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tab-content.active {
  display: block;
}

.tab-content.active.tab-content-enter {
  opacity: 1;
}

.umumi-block p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Description tab: nasa-style with read more */
.row.ns-tab-item {
  margin: 0 0 16px;
}

.nasa-content.nasa-content-description {
  padding: 0;
  width: 100%;
}

.nasa-content-description .nasa-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 12px;
}

/* Description wrap – gradient mask və düymə üçün */
.nasa-desc-wrap {
  position: relative;
}

.nasa-content-description .nasa-content-panel {
  overflow: hidden;
  overflow-x: hidden;
  max-height: 280px;
  transition: max-height 0.35s ease;
}

.nasa-content-description .nasa-content-panel.expanded {
  max-height: none;
}

/* Aşağıda ağ gradient – məzmun "yığılmış" olanda görünür */
.gradient-mask {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 148px;
  width: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transition: opacity 0.25s ease;
}

.nasa-content-panel.expanded ~ .gradient-mask {
  opacity: 0;
  pointer-events: none;
}

/* Description daxilindəki şəkillər (.aligncenter) – mobilde tam oturur */
.nasa-content-description .nasa-content-panel .aligncenter {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
  padding: 0;
  box-sizing: border-box;
  object-fit: contain;
  vertical-align: top;
}

.nasa-content-description .nasa-content-panel .desc-banner,
.nasa-content-description .nasa-content-panel .full-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.nasa-content-description .nasa-content-panel .desc-banner {
  background: var(--red);
  color: var(--white);
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
}

.ns-read-more {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  margin-top: 0;
}

.nasa-content-panel.expanded ~ .ns-read-more {
  position: static;
  margin-top: 12px;
  bottom: auto;
}

.ns-btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ns-btn-read-more:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.2);
}

.ns-btn-read-more svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nasa-content-panel.expanded ~ .ns-read-more .ns-btn-read-more svg {
  transform: rotate(180deg);
}

.description-block .banner {
  background: var(--red);
  color: var(--white);
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.description-block .full-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Reviews */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-border);
}

.reviews-summary .avg-rating {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}

.reviews-summary .stars {
  color: var(--star);
  font-size: 1.1rem;
}

.reviews-summary .count {
  color: var(--gray);
  font-size: 0.9rem;
}

.star-bars {
  margin-bottom: 16px;
}

.star-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.star-bar-row .bar {
  flex: 1;
  height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
}

.star-bar-row .bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 4px;
}

.btn-add-review {
  width: 100%;
  padding: 12px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
}

.review-card {
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}

.review-card .author {
  font-weight: 600;
  margin-bottom: 2px;
}

.review-card .date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.review-card .stars {
  color: var(--star);
  margin-bottom: 8px;
}

.review-card .text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-card .helpful {
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card .helpful button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}

/* Bulk offer */
.bulk-offer-block {
  background: #fef9e7;
  border: 1px solid #f7dc6f;
  border-radius: 12px;
  padding: 16px;
}

.bulk-offer-block h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.bulk-offer-block .offer-box {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 12px;
  color: var(--red);
  font-weight: 700;
}

/* Similar section */
.similar-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-border);
  box-shadow: 0 -1px 0 0 rgba(0,0,0,0.04);
}

/* Footer actions */
.footer-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0;
  padding: 12px 16px;
  background: var(--black);
  z-index: 99;
}

.footer-actions .btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-cart {
  background: var(--gray-light);
  color: #333;
  margin-right: 8px;
}

.btn-buy {
  background: var(--black);
  color: var(--white);
}

/* Utility */
.hide { display: none !important; }
