
/* ============================================
   MISSING CSS CLASSES — pages.js support
   Appended to cover all classes used in pages.js
   ============================================ */

/* --------------------------------------------
   PAGE CONTAINERS
   -------------------------------------------- */
.page-home {
  padding-top: 0;
}
.page-shop,
.page-product,
.page-cart,
.page-checkout,
.page-account,
.page-faq,
.page-about,
.page-contact,
.page-shipping-returns,
.page-privacy-terms {
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 60px;
  min-height: 100vh;
}

/* .page-title */
.page-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

/* .section / .section__title */
.section {
  padding: 80px 0;
}
.section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 48px;
}

/* .empty-state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-tertiary);
  font-size: 1.1rem;
}

/* .tag */
.tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* --------------------------------------------
   PRODUCT DETAIL PAGE
   -------------------------------------------- */
.product-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.product-thumb.active,
.product-thumb:hover {
  border-color: var(--accent);
}

.product-info__review-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 8px;
}
.product-info__review-link:hover {
  color: var(--accent);
}

.product-info__tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.product-price--original {
  font-size: 1rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
  margin-left: 12px;
}
.product-price--savings {
  font-size: 0.9rem;
  color: var(--success);
  margin-left: 12px;
  font-weight: 500;
}

.product-option {
  margin-bottom: 20px;
}
.product-option__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-color-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.product-color-swatch:hover {
  transform: scale(1.1);
}
.product-color-swatch.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--accent);
}
.product-color-name {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

.product-nic-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-nic-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.product-nic-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}
.product-nic-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 600;
}

.product-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-qty__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.product-qty__btn:hover {
  background: var(--bg-hover);
}
.product-qty__minus {}
.product-qty__plus {}
.product-qty__input {
  width: 48px;
  height: 36px;
  text-align: center;
  border: none;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  -moz-appearance: textfield;
}
.product-qty__input::-webkit-inner-spin-button,
.product-qty__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.product-actions .btn {
  width: 100%;
}

.product-add-to-cart {
  width: 100%;
}
.product-add-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-add-wishlist.active {
  border-color: var(--accent);
  color: var(--accent);
}

.product-buy-now {
  text-align: center;
  margin-bottom: 16px;
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.product-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}
.product-stock.in-stock {
  color: var(--success);
}
.product-stock.low-stock {
  color: var(--warning);
}
.product-stock.out-of-stock {
  color: var(--error);
}
.product-stock__shipping {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.product-nic-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 16px;
  border: 1px solid var(--error);
  border-radius: var(--radius);
  background: rgba(231, 76, 60, 0.08);
  color: var(--error);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Product Tabs */
.product-tabs {
  margin-top: 60px;
}
.product-tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  gap: 0;
}
.product-tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--transition);
  white-space: nowrap;
}
.product-tab-btn:hover {
  color: var(--text-primary);
}
.product-tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.product-tab-panel {
  display: none;
}
.product-tab-panel.active {
  display: block;
}
.product-tab-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 24px;
}
.product-tab-panel h3:first-child {
  margin-top: 0;
}
.product-tab-panel p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.specs-table tr {
  border-bottom: 1px solid var(--border);
}
.specs-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
}
.specs-table td:first-child {
  color: var(--text-tertiary);
  font-weight: 500;
  width: 40%;
}
.specs-table td:last-child {
  color: var(--text-primary);
}

/* --------------------------------------------
   REVIEWS
   -------------------------------------------- */
.reviews-summary {
  display: flex;
  gap: 32px;
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.reviews-summary__score {
  text-align: center;
  min-width: 120px;
  flex-shrink: 0;
}
.reviews-summary__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  font-family: var(--font-heading);
}
.reviews-summary__count {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}
.reviews-summary__dist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.review-dist-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-dist-star {
  font-size: 0.8rem;
  color: var(--text-secondary);
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}
.review-dist-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
}
.review-dist-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.review-dist-pct {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.reviews-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.reviews-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.reviews-filter-btn {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.reviews-filter-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}
.reviews-filter-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.reviews-list {
  display: flex;
  flex-direction: column;
}
.review-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.review-item:last-child {
  border-bottom: none;
}
.review-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.review-item__stars {
  display: flex;
  gap: 2px;
}
.review-item__verified {
  font-size: 0.75rem;
  color: var(--success);
  background: rgba(46, 204, 113, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
}
.review-item__title {
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 8px;
  font-size: 1rem;
}
.review-item__text {
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.7;
  font-size: 0.9rem;
}
.review-item__footer {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  align-items: center;
}
.review-item__author {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.review-item__date {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}
.review-item__helpful {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  background: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2px 10px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.review-item__helpful:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.reviews-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-tertiary);
  font-size: 1rem;
}

/* Review Modal */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-form__stars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.review-form__stars label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.review-form__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.star-selector {
  display: flex;
  gap: 4px;
}
.star-select {
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  color: var(--text-tertiary);
  user-select: none;
}
.star-select:hover {
  transform: scale(1.2);
}

/* Product Related Section */
.product-related {
  margin-top: 60px;
}

/* --------------------------------------------
   FEATURED CAROUSEL (track wrapper)
   -------------------------------------------- */
.featured-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.featured-carousel__track:active,
.featured-carousel__track.dragging {
  cursor: grabbing;
}
.featured-carousel__track::-webkit-scrollbar {
  height: 4px;
}
.featured-carousel__track::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 2px;
}
.featured-carousel__track > * {
  scroll-snap-align: start;
  min-width: 280px;
  flex-shrink: 0;
}

/* --------------------------------------------
   PRODUCT CARD extras
   -------------------------------------------- */
.product-card__gradient {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}
.product-card:hover .product-card__overlay {
  opacity: 1;
}
.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.product-card__price--original {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
}
.product-card__stock {
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.product-card__stock.in-stock {
  color: var(--success);
}
.product-card__stock.low-stock {
  color: var(--warning);
}
.product-card__stock.out-of-stock {
  color: var(--error);
}
.product-card__review-count {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-left: 4px;
}
.product-card__add-to-cart {
  width: 100%;
  margin-top: auto;
}
.product-card__quick-view {
  z-index: 3;
}

/* --------------------------------------------
   TECH BLOCKS
   -------------------------------------------- */
.tech-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.tech-block--left {
  /* visual on left — default order */
}
.tech-block--right {
  direction: rtl;
}
.tech-block--right > * {
  direction: ltr;
}
.tech-block__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tech-block__text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.tech-block__text p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.tech-stat {
  text-align: center;
}
.tech-stat__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}
.tech-stat__plus {
  font-size: 2rem;
  color: var(--accent);
  font-family: var(--font-heading);
}
.tech-stat__label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --------------------------------------------
   FLAVOR SHOWCASE
   -------------------------------------------- */
.flavor-swatch {
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition);
}
.flavor-swatch:hover {
  transform: translateY(-4px);
}
.flavor-swatch.active .flavor-swatch__circle {
  box-shadow: 0 0 0 3px var(--bg-primary), 0 0 0 5px var(--accent);
}
.flavor-swatch__circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
  background: #0A0A0A;
  position: relative;
}
.flavor-swatch__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.flavor-swatch__label {
  font-size: 0.8rem;
  margin-top: 8px;
  color: var(--text-secondary);
  display: block;
}

.flavor-detail__desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.flavor-detail__nicotine {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.flavor-detail__nic-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-right: 4px;
}
.flavor-nic-btn {
  transition: all var(--transition);
}
.flavor-nic-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.flavor-buy-btn {
  margin-top: 8px;
}

/* --------------------------------------------
   TESTIMONIALS
   -------------------------------------------- */
.testimonials-section {
  padding: 80px 0;
  position: relative;
}
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-slides {
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 200px;
}
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 0 20px;
}
.testimonial-slide.active {
  display: block;
}
.testimonial-slide__text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 20px;
}
.testimonial-slide__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-slide__author {
  margin-top: 16px;
}
.testimonial-slide__name {
  font-weight: 500;
  color: var(--text-primary);
  display: block;
  font-size: 1rem;
}
.testimonial-slide__location {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.testimonial-dot:hover {
  background: var(--text-tertiary);
}
.testimonial-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.testimonial-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.testimonial-arrow--prev {}
.testimonial-arrow--next {}

/* --------------------------------------------
   INSTAGRAM
   -------------------------------------------- */
.ig-section {
  padding: 80px 0;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ig-post {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition);
}
.ig-post:hover {
  transform: scale(1.05);
  opacity: 0.85;
}
.ig-cta {
  text-align: center;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.ig-cta a {
  color: var(--accent);
}

/* --------------------------------------------
   TRUST SECTION
   -------------------------------------------- */
.trust-section {
  padding: 60px 0;
}

/* --------------------------------------------
   SHOP PAGE
   -------------------------------------------- */
.shop-mobile-filter-btn {
  display: none;
  margin-bottom: 16px;
  gap: 8px;
  align-items: center;
}
.shop-main {
  flex: 1;
  min-width: 0;
}
.shop-filter-group {
  margin-bottom: 24px;
}
.shop-filter-group__title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  font-weight: 600;
}
.shop-filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shop-filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.shop-filter-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
.shop-filter-btn.active {
  background: var(--bg-tertiary);
  color: var(--accent);
  font-weight: 500;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-count {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}
.shop-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-tertiary);
  grid-column: 1 / -1;
}

.product-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Shop Sort select styling */
.shop-sort {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
}
.shop-sort:focus {
  outline: none;
  border-color: var(--accent);
}

/* --------------------------------------------
   CART PAGE
   -------------------------------------------- */
.cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.cart-item__options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cart-item__option {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  background: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: 4px;
}
.cart-item__unit-price {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
}
.cart-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
  border-radius: var(--radius-sm);
}
.cart-qty-btn:hover {
  background: var(--bg-hover);
}
.cart-qty-minus {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.cart-qty-plus {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.cart-qty-val {
  min-width: 36px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-primary);
  padding: 0 4px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  height: 32px;
  line-height: 32px;
  background: var(--bg-secondary);
}

.cart-promo__btn {
  flex-shrink: 0;
}
.cart-promo__applied {
  font-size: 0.85rem;
  color: var(--success);
  margin-top: 8px;
}

.cart-free-shipping {
  margin: 12px 0;
}
.cart-free-shipping__bar {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.cart-free-shipping__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.5s ease;
}
.cart-free-shipping__text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.cart-checkout-btn {
  width: 100%;
  margin-top: 16px;
  text-align: center;
  display: block;
}
.cart-continue-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
  width: 100%;
}
.cart-recommend {
  margin-top: 60px;
}

.cart-summary__discount {
  color: var(--success);
}
.cart-summary__total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 2px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}
.cart-summary__total span {
  color: var(--text-primary);
}

/* --------------------------------------------
   CHECKOUT PAGE
   -------------------------------------------- */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 0 20px;
}
.checkout-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.checkout-progress__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-tertiary);
  background: var(--bg-primary);
  transition: all var(--transition);
}
.checkout-progress__step.active .checkout-progress__num {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(197, 165, 90, 0.1);
}
.checkout-progress__step.completed .checkout-progress__num {
  border-color: var(--success);
  color: var(--success);
  background: rgba(46, 204, 113, 0.1);
}
.checkout-progress__label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  white-space: nowrap;
}
.checkout-progress__step.active .checkout-progress__label {
  color: var(--accent);
}
.checkout-progress__step.completed .checkout-progress__label {
  color: var(--success);
}
.checkout-progress__line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 24px;
  transition: background var(--transition);
  max-width: 80px;
}
.checkout-progress__line.active {
  background: var(--accent);
}

.checkout-form {
  flex: 1;
}
.checkout-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.checkout-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.checkout-section--age {
  border: 1px solid var(--error);
  background: rgba(231, 76, 60, 0.05);
}

.checkout-totals {
  margin-bottom: 20px;
}
.checkout-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.checkout-totals__total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 2px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}
.checkout-totals__total span {
  color: var(--text-primary);
}

.checkout-order-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.checkout-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-order-item__img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.checkout-order-item__info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout-order-item__name {
  font-size: 0.9rem;
  color: var(--text-primary);
}
.checkout-order-item__price {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  flex-shrink: 0;
}

.checkout-place-order {
  width: 100%;
  margin-top: 16px;
}
.checkout-promo {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.checkout-age-note {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 8px;
  line-height: 1.5;
}

.checkout-confirmation {
  text-align: center;
  padding: 60px 20px;
}
.checkout-confirmation__icon {
  margin-bottom: 24px;
}
.checkout-confirmation h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.checkout-confirmation__order {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.checkout-confirmation__delivery {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.checkout-confirmation__email {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}
.checkout-confirmation__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.checkout-confirmation__create {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.shipping-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shipping-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.shipping-method:hover {
  border-color: var(--accent);
}
.shipping-method.active {
  border-color: var(--accent);
  background: rgba(197, 165, 90, 0.05);
}
.shipping-method input[type="radio"] {
  accent-color: var(--accent);
}
.shipping-method__info {
  flex: 1;
}
.shipping-method__name {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.shipping-method__desc {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}
.shipping-method__price {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.payment-methods {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.payment-tab {
  padding: 10px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.payment-tab:hover {
  color: var(--text-primary);
}
.payment-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.payment-panel {
  display: none;
}
.payment-panel.active {
  display: block;
}
.payment-external-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.payment-secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 16px;
}

/* Checkout Summary (right sidebar) */
.checkout-summary {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}
.checkout-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* --------------------------------------------
   ACCOUNT PAGE
   -------------------------------------------- */
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.auth-panel--login,
.auth-panel--register {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.auth-panel--login h2,
.auth-panel--register h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.auth-social {
  margin-top: 24px;
  text-align: center;
}
.auth-social p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}
.auth-social__buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.auth-social-btn {
  flex: 1;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
}
.auth-switch {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}
.auth-switch a {
  color: var(--accent);
  text-decoration: none;
}
.auth-switch a:hover {
  text-decoration: underline;
}

.page-account--dashboard {
  padding-top: calc(var(--header-height) + 24px);
}
.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
}
.account-sidebar {
  flex-shrink: 0;
}
.account-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.account-menu__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.account-menu__item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
.account-menu__item.active {
  background: var(--bg-tertiary);
  color: var(--accent);
  font-weight: 500;
}
.account-menu__item--logout {
  color: var(--error);
  margin-top: 12px;
}
.account-menu__item--logout:hover {
  background: rgba(231, 76, 60, 0.1);
  color: var(--error);
}

.account-content {
  min-width: 0;
}
.account-tab {
  display: none;
}
.account-tab.active {
  display: block;
}
.account-tab h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.account-tab h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.account-overview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.overview-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.overview-card h4 {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.overview-card p {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.account-overview-link {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
.account-overview-link:hover {
  text-decoration: underline;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
}
.account-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.account-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.account-table tr:hover {
  background: var(--bg-secondary);
}

.order-detail-btn {
  color: var(--accent);
  cursor: pointer;
}
.order-detail-panel {
  margin-top: 16px;
}
.order-detail {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.order-detail h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.order-detail p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.order-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}
.order-timeline__step {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}
.order-timeline__step span {
  position: absolute;
  left: -27px;
  color: var(--border);
}
.order-timeline__step.completed {
  color: var(--text-primary);
}
.order-timeline__step.completed span {
  color: var(--success);
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.address-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  border: 1px solid var(--border);
}
.address-card--default {
  border-color: var(--accent);
}
.address-card__default-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(197, 165, 90, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
  margin-bottom: 8px;
}
.address-card__name {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.address-card__line {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.address-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.address-form-area {
  margin-top: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* --------------------------------------------
   FAQ PAGE
   -------------------------------------------- */
.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.faq-category-tab {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.faq-category-tab:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}
.faq-category-tab.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.faq-search {
  position: relative;
  max-width: 500px;
  margin: 0 auto 32px;
}
.faq-search__input {
  width: 100%;
  padding-right: 40px;
}
.faq-search__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
  text-align: left;
  gap: 16px;
}
.faq-item__question:hover {
  color: var(--accent);
}
.faq-item__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-item__answer {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-item__answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9rem;
}

.faq-contact {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}
.faq-contact p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* --------------------------------------------
   ABOUT PAGE
   -------------------------------------------- */
.about-story {
  padding-top: 0;
}
.about-story__content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-timeline {
  position: relative;
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
  padding: 0 20px;
}
.timeline-item--left {
  justify-content: flex-start;
  padding-right: calc(50% + 20px);
  text-align: right;
}
.timeline-item--right {
  justify-content: flex-end;
  padding-left: calc(50% + 20px);
  text-align: left;
}
.timeline-item__marker {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-primary);
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-item__content {
  max-width: 300px;
}
.timeline-item__year {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.timeline-item__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-numbers {}
.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.about-number {
  text-align: center;
}
.about-number__value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}
.about-number__plus {
  font-size: 2rem;
  color: var(--accent);
  font-family: var(--font-heading);
}
.about-number__label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.about-sustainability {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.about-sustainability p {
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-values {}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.value-card__icon {
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* --------------------------------------------
   CONTACT PAGE
   -------------------------------------------- */
.contact-form-wrapper {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.contact-info-card__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}
.contact-info-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}
.contact-info-card p {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.contact-social {
  margin-top: 8px;
}
.contact-social h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}
.contact-social__icons {
  display: flex;
  gap: 12px;
}
.contact-social__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.contact-social__link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --------------------------------------------
   SHIPPING & RETURNS PAGE
   -------------------------------------------- */
.sr-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.sr-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.sr-tab:hover {
  color: var(--text-primary);
}
.sr-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.sr-panel {
  display: none;
}
.sr-panel.active {
  display: block;
}
.sr-panel h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.sr-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}
.sr-panel p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.sr-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 24px 0;
}
.sr-column {}

.sr-notice {
  background: rgba(197, 165, 90, 0.08);
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}
.sr-notice p {
  margin-bottom: 0;
}
.sr-highlight {
  color: var(--accent);
  font-weight: 500;
  margin: 16px 0;
}

.sr-list {
  list-style: none;
  padding: 0;
}
.sr-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.sr-list--check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.sr-list--cross li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}

.sr-refund {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* Return Steps */
.return-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.return-step {
  text-align: center;
}
.return-step__num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.return-step h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.return-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Shipping Table */
.shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.shipping-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  border-bottom: 2px solid var(--border);
  font-weight: 600;
}
.shipping-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

/* --------------------------------------------
   PRIVACY & TERMS PAGE
   -------------------------------------------- */
.pt-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.pt-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.pt-tab:hover {
  color: var(--text-primary);
}
.pt-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.pt-panel {
  display: none;
  max-width: 800px;
}
.pt-panel.active {
  display: block;
}
.pt-panel h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.pt-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 10px;
}
.pt-panel p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.pt-highlight {
  color: var(--accent);
}

/* --------------------------------------------
   FORM ELEMENTS
   -------------------------------------------- */
.form-row {
  display: flex;
  gap: 16px;
}
.form-row--between {
  justify-content: space-between;
  align-items: center;
}
.form-group--half {
  flex: 1;
  min-width: 0;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-input::placeholder {
  color: var(--text-tertiary);
}
.form-input--error {
  border-color: var(--error);
}
.form-input textarea {
  resize: vertical;
}
textarea.form-input {
  resize: vertical;
  min-height: 80px;
}
select.form-input {
  cursor: pointer;
  appearance: auto;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 12px 0;
}
.form-checkbox input[type="checkbox"] {
  accent-color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.form-checkbox--important {
  color: var(--text-primary);
  font-weight: 500;
}
.form-checkbox--important input[type="checkbox"] {
  accent-color: var(--error);
}

.form-link {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}
.form-link:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

/* --------------------------------------------
   RESPONSIVE — 1024px
   -------------------------------------------- */
@media (max-width: 1024px) {
  .product-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-menu {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }
  .auth-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .tech-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tech-block--right {
    direction: ltr;
  }
  .about-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-values__grid {
    grid-template-columns: 1fr;
  }
  .sr-columns {
    grid-template-columns: 1fr;
  }
  .return-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .checkout-progress {
    flex-wrap: wrap;
    gap: 4px;
  }
}

/* --------------------------------------------
   RESPONSIVE — 768px
   -------------------------------------------- */
@media (max-width: 768px) {
  .page-title {
    font-size: 1.8rem;
  }
  .section__title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .product-grid--3,
  .product-grid--4 {
    grid-template-columns: 1fr;
  }
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .flavor-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline__line {
    left: 20px;
  }
  .timeline-item--left,
  .timeline-item--right {
    padding-left: 48px;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .timeline-item__marker {
    left: 20px;
  }
  .reviews-summary {
    flex-direction: column;
  }
  .reviews-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .return-steps {
    grid-template-columns: 1fr 1fr;
  }
  .sr-columns {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .shop-mobile-filter-btn {
    display: flex;
  }
  .shop-sidebar {
    display: none;
  }
  .shop-sidebar.open {
    display: block;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .product-tabs__nav {
    overflow-x: auto;
  }
  .sr-tabs,
  .pt-tabs {
    overflow-x: auto;
  }
  .sr-tab,
  .pt-tab {
    white-space: nowrap;
  }
  .faq-categories {
    justify-content: center;
  }
  .testimonial-arrow {
    width: 32px;
    height: 32px;
  }
  .featured-carousel__track > * {
    min-width: 240px;
  }
  .checkout-confirmation__actions {
    flex-direction: column;
    align-items: center;
  }
  .auth-layout {
    grid-template-columns: 1fr;
  }
  .account-overview-cards {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------
   RESPONSIVE — 480px
   -------------------------------------------- */
@media (max-width: 480px) {
  .page-title {
    font-size: 1.5rem;
  }
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flavor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-numbers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .return-steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .product-trust-row {
    flex-direction: column;
    gap: 8px;
  }
  .checkout-progress__label {
    font-size: 0.7rem;
  }
  .reviews-filter {
    flex-wrap: wrap;
  }
}

/* ============================================
   TECH ANIMATION BLOCKS
   ============================================ */

/* --- Base --- */
.tech-anim {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0A0A0A;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* ============================================
   BLOCK 1: Aerodynamic Airflow — SVG Vape Device
   ============================================ */
.tech-anim--airflow {
  background: radial-gradient(ellipse at 50% 50%, rgba(0,206,209,0.06) 0%, #0A0A0A 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.airflow-svg {
  width: 80%;
  height: 80%;
  max-height: 100%;
}

/* Device outline — blueprint / x-ray look */
.airflow-device {
  fill: none;
  stroke: rgba(197,165,90,0.45);
  stroke-width: 1.5;
}

.airflow-device-inner {
  fill: none;
  stroke: rgba(197,165,90,0.15);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}

/* Airflow channel paths inside device */
.airflow-channel {
  fill: none;
  stroke: rgba(0,206,209,0.18);
  stroke-width: 6;
  stroke-linecap: round;
}
.airflow-channel--2 {
  stroke: rgba(0,206,209,0.10);
  stroke-width: 4;
}

/* Glow trail along the main channel */
.airflow-glow {
  fill: none;
  stroke: rgba(0,206,209,0.12);
  stroke-width: 14;
  stroke-linecap: round;
  filter: blur(6px);
  animation: airGlowPulse 3s ease-in-out infinite;
}

@keyframes airGlowPulse {
  0%, 100% { opacity: 0.3; stroke-width: 12; }
  50%      { opacity: 0.7; stroke-width: 18; }
}

/* Air inlet holes */
.airflow-inlet {
  fill: rgba(0,206,209,0.35);
  animation: inletPulse 2s ease-in-out infinite;
}

@keyframes inletPulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; fill: rgba(0,206,209,0.7); }
}

/* Animated particles flowing through channels */
.airflow-dot {
  fill: #00CED1;
  filter: drop-shadow(0 0 4px rgba(0,206,209,0.8)) drop-shadow(0 0 10px rgba(0,206,209,0.3));
  opacity: 0.9;
}

/* ============================================
   BLOCK 2: Fast Charging — SVG Vape Pen
   ============================================ */
.tech-anim--charging {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 50%, rgba(197,165,90,0.05) 0%, #0A0A0A 70%);
}

.charging-svg {
  width: 80%;
  height: 80%;
  max-height: 100%;
}

/* Device outline */
.charge-device {
  fill: none;
  stroke: rgba(197,165,90,0.45);
  stroke-width: 1.5;
}

.charge-device-inner {
  fill: none;
  stroke: rgba(197,165,90,0.15);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}

/* Charging fill — animated via SMIL in SVG */
.charge-fill-bg {
  fill: #C5A55A;
  opacity: 0.55;
  filter: drop-shadow(0 0 6px rgba(197,165,90,0.4));
}

/* Glowing ring pulsing around device */
.charge-glow-ring {
  fill: none;
  stroke: rgba(197,165,90,0.2);
  stroke-width: 2;
  animation: chargeRingPulse 3.2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(197,165,90,0.15));
}

@keyframes chargeRingPulse {
  0%, 100% { opacity: 0; stroke-width: 1; }
  40%      { opacity: 0.6; stroke-width: 2.5; }
  70%      { opacity: 0.8; stroke-width: 3; }
  85%      { opacity: 0.4; stroke-width: 2; }
}

/* USB-C port and cable */
.charge-usbc-port {
  fill: rgba(197,165,90,0.15);
  stroke: rgba(197,165,90,0.4);
  stroke-width: 1.2;
}

.charge-cable {
  stroke: rgba(197,165,90,0.35);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.charge-cable-plug {
  fill: rgba(197,165,90,0.2);
  stroke: rgba(197,165,90,0.5);
  stroke-width: 1;
}

/* Lightning bolt icon */
.charge-bolt {
  fill: none;
  stroke: #C5A55A;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: boltFlash 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(197,165,90,0.6));
}

@keyframes boltFlash {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* Electric pulse lines near port */
.charge-pulse {
  stroke: rgba(197,165,90,0.6);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0;
}

.charge-pulse--1 { animation: chargePulseAnim 1.8s ease-in-out 0s infinite; }
.charge-pulse--2 { animation: chargePulseAnim 1.8s ease-in-out 0.3s infinite; }
.charge-pulse--3 { animation: chargePulseAnim 1.8s ease-in-out 0.6s infinite; }
.charge-pulse--4 { animation: chargePulseAnim 1.8s ease-in-out 0.9s infinite; }

@keyframes chargePulseAnim {
  0%, 100% { opacity: 0; stroke-width: 1; }
  30%      { opacity: 0.8; stroke-width: 2; }
  60%      { opacity: 0.2; stroke-width: 1; }
}

/* Percentage text overlay */
.charge-percent {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(197,165,90,0.9);
  text-shadow: 0 0 8px rgba(197,165,90,0.4);
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   BLOCK 3: Leak-proof System — SVG Pod Cartridge
   ============================================ */
.tech-anim--leakproof {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(197,165,90,0.05) 0%, #0A0A0A 70%);
}

.leakproof-svg {
  width: 80%;
  height: 80%;
  max-height: 100%;
}

/* Pod cartridge outline */
.leak-pod {
  fill: none;
  stroke: rgba(197,165,90,0.45);
  stroke-width: 1.5;
}

.leak-pod-inner {
  fill: none;
  stroke: rgba(197,165,90,0.15);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}

/* E-liquid area */
.leak-liquid {
  fill: rgba(0,206,209,0.08);
  stroke: rgba(0,206,209,0.15);
  stroke-width: 0.8;
  animation: liquidShimmer 4s ease-in-out infinite;
}

@keyframes liquidShimmer {
  0%, 100% { fill: rgba(0,206,209,0.06); }
  50%      { fill: rgba(0,206,209,0.14); }
}

/* Seal barrier layers */
.leak-seal {
  stroke-width: 1.2;
  stroke-linecap: round;
}

.leak-seal--1 {
  fill: rgba(197,165,90,0.15);
  stroke: rgba(197,165,90,0.5);
  animation: sealPulse 2.5s ease-in-out 0s infinite;
}

.leak-seal--2 {
  fill: rgba(197,165,90,0.12);
  stroke: rgba(197,165,90,0.4);
  animation: sealPulse 2.5s ease-in-out 0.4s infinite;
}

.leak-seal--3 {
  fill: rgba(197,165,90,0.10);
  stroke: rgba(197,165,90,0.35);
  animation: sealPulse 2.5s ease-in-out 0.8s infinite;
}

@keyframes sealPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; fill: rgba(197,165,90,0.25); }
}

/* Shield pulse ellipses emanating from seal area */
.leak-pulse {
  fill: none;
  stroke: rgba(197,165,90,0.3);
  stroke-width: 1;
  pointer-events: none;
}

.leak-pulse--1 { animation: leakPulseAnim 3s ease-out 0s infinite; }
.leak-pulse--2 { animation: leakPulseAnim 3s ease-out 1s infinite; }
.leak-pulse--3 { animation: leakPulseAnim 3s ease-out 2s infinite; }

@keyframes leakPulseAnim {
  0%   { transform-origin: center; transform: scale(1); opacity: 0.5; }
  100% { transform-origin: center; transform: scale(2.5, 3); opacity: 0; }
}

/* Droplets bouncing off barriers */
.leak-drop {
  fill: rgba(0,206,209,0.7);
  filter: drop-shadow(0 0 3px rgba(0,206,209,0.5));
}

.leak-drop--1 { animation: dropBounce 2.8s ease-in-out 0s infinite; }
.leak-drop--2 { animation: dropBounce 2.8s ease-in-out 0.7s infinite; }
.leak-drop--3 { animation: dropBounce 2.8s ease-in-out 1.4s infinite; }
.leak-drop--4 { animation: dropBounce 2.8s ease-in-out 2.1s infinite; }

@keyframes dropBounce {
  0%       { transform: translateY(0); opacity: 0; }
  15%      { opacity: 0.9; }
  30%      { transform: translateY(4px); opacity: 0.9; }
  45%      { transform: translateY(-8px); opacity: 0.6; }
  60%      { transform: translateY(-14px) scale(0.6); opacity: 0.3; }
  80%, 100% { transform: translateY(-20px) scale(0.3); opacity: 0; }
}

/* "3x SEAL" text */
.leak-seal-text {
  font-family: var(--font-heading, sans-serif);
  font-size: 11px;
  font-weight: 700;
  fill: rgba(197,165,90,0.0);
  letter-spacing: 3px;
  animation: sealTextFade 4s ease-in-out infinite;
}

@keyframes sealTextFade {
  0%, 20%  { fill: rgba(197,165,90,0); }
  40%, 70% { fill: rgba(197,165,90,0.8); }
  90%, 100% { fill: rgba(197,165,90,0); }
}

/* ============================================
   TECH ANIM responsive
   ============================================ */
@media (max-width: 768px) {
  .tech-anim {
    aspect-ratio: 16 / 9;
  }
}
