/* CSS Variables */
:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-light: #888888;
  --color-accent: #0d9488;
  --color-announcement: #dc2626;
  --color-border: #e5e5e5;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-system);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--color-announcement);
  color: #ffffff;
  text-align: center;
  padding: 0.625rem var(--spacing-sm);
  font-size: 13px;
  line-height: 1.4;
}

.announcement-bar p {
  margin: 0;
}

.announcement-bar strong {
  font-weight: 600;
}

/* Main Header */
.main-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--spacing-md);
}

/* Left: Menu & Nav Links */
.nav-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  padding: var(--spacing-xs);
  color: var(--color-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-accent);
}

/* Center: Logo */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Right: Icons & Locale */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 0 0 auto;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: var(--spacing-xs);
  color: var(--color-text);
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.icon-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

/* Language Toggle */
.lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f5f5f5;
  border-radius: 28px;
  padding: 5px 6px;
  box-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
}

.lang-toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1;
}

.lang-toggle a:hover:not(.active) {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.08);
}

.lang-toggle a.active {
  background: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.lang-toggle a .flag-emoji {
  display: block;
  transition: transform 0.2s ease;
}

.lang-toggle a:hover .flag-emoji {
  transform: scale(1.1);
}

/* Mobile Menu */
.nav-links.is-open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  gap: var(--spacing-lg);
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.nav-links.is-open a {
  font-size: 24px;
  font-weight: 600;
  padding: var(--spacing-md) 0;
  width: 100%;
  text-align: center;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.nav-links.is-open a:hover {
  color: var(--color-accent);
}

/* Mobile menu close button */
.mobile-menu-close {
  display: none;
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: none;
  border: none;
  padding: var(--spacing-sm);
  cursor: pointer;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: var(--color-accent);
}

.nav-links.is-open .mobile-menu-close {
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 var(--spacing-sm);
    height: 56px;
  }

  .nav-left {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-center {
    flex: 0;
  }

  .logo img {
    height: 40px;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    font-size: 12px;
    padding: 0.5rem var(--spacing-xs);
  }

  .nav-right {
    gap: 0.25rem;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem var(--spacing-md) 0.75rem;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: var(--color-text-secondary);
}

.breadcrumbs a {
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-text);
}

.breadcrumbs li[aria-current="page"] {
  color: var(--color-text);
}

/* Product Hero Section */
.product-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
  overflow: hidden;
}

.product-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  max-width: 100%;
}

/* Product Gallery */
.product-gallery {
  display: flex;
  gap: 1.25rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  align-items: flex-start;
  overflow: hidden;
}

/* Desktop Thumbnails Wrapper */
.gallery-thumbnails-wrapper {
  display: flex;
  flex-direction: column;
  width: 80px;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
  min-height: 0;
}

/* Desktop Thumbnails (Vertical) */
.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  min-height: 0;
}

.gallery-thumbnails::-webkit-scrollbar {
  display: none;
}

/* Thumbnail Scroll Button */
.thumbnail-scroll-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thumbnail-scroll-btn:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-bg);
}

.thumbnail-scroll-down {
  bottom: 0.5rem;
}

.thumbnail-scroll-btn svg {
  width: 14px;
  height: 14px;
}

.thumbnail-btn {
  position: relative;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: var(--color-bg);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.thumbnail-btn:hover {
  opacity: 0.8;
}

.thumbnail-btn.active {
  border-color: var(--color-text);
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main Image */
.gallery-main {
  flex: 1;
  position: relative;
  background: transparent;
  min-width: 0;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

#main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

/* Mobile Thumbnails Wrapper (Horizontal) */
.gallery-thumbnails-mobile-wrapper {
  display: none;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.gallery-thumbnails-mobile {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-thumbnails-mobile::-webkit-scrollbar {
  display: none;
}

.gallery-thumbnails-mobile .thumbnail-btn {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Mobile Scroll Button (Right Arrow) */
.thumbnail-scroll-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thumbnail-scroll-right:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-bg);
}

.thumbnail-scroll-right svg {
  width: 14px;
  height: 14px;
}

/* ========================================
   Product Info Section
   ======================================== */
.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0;
}

/* Color Selection */
.color-selection {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.color-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}

.color-label span {
  font-weight: 600;
  color: var(--color-text);
}

.color-swatches {
  display: flex;
  gap: 0.75rem;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--color-bg);
}

.color-swatch:hover {
  border-color: var(--color-text-light);
}

.color-swatch.active {
  border-color: var(--color-text);
}

.swatch-inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* Pricing Section */
.pricing-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.pricing-card {
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--color-text-light);
}

.pricing-card.selected {
  border-color: var(--color-text);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-announcement);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  text-align: center;
}

.pricing-content {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pricing-product-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.pricing-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-text {
  flex: 1;
}

.pricing-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.pricing-details {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.current-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.original-price {
  font-size: 16px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.pricing-savings {
  font-size: 13px;
  color: var(--color-announcement);
  font-weight: 600;
  margin: 0.5rem 0 0 0;
}

/* Free Product Display */
.free-product {
  background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
  border: 1px solid #d4edda;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  position: relative;
}

.free-product-badge {
  position: absolute;
  top: -10px;
  left: 1rem;
  background: #157347;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}

.free-product-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.free-product-image {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.free-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.free-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.free-product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.free-product-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.free-original-price {
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.free-label {
  font-size: 12px;
  font-weight: 700;
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.quantity-label {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  border: none;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: #f5f5f5;
}

.quantity-btn:active {
  background: #e5e5e5;
}

.quantity-value {
  min-width: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  padding: 0.5rem;
}

/* Add to Cart Button */
.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.add-to-cart-btn:hover {
  background: #333333;
  transform: translateY(-1px);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

/* Cart Summary */
.cart-summary {
  background: #f8f9fa;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.cart-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-summary-count {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-bg);
  padding: 0.75rem;
  border-radius: 8px;
}

.cart-item-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-color {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.cart-item-qty {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: var(--color-announcement);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  margin-bottom: 1rem;
}

.cart-summary-total span:first-child {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.cart-summary-total span:last-child {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkout-btn:hover {
  background: #218838;
  transform: translateY(-1px);
}

.checkout-btn:active {
  transform: translateY(0);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.trust-badge svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Guarantee Cards */
.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.guarantee-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  gap: 0.75rem;
}

.guarantee-card svg {
  color: var(--color-text);
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

/* Client Videos Gallery */
.client-videos-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.client-videos-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.02em;
}

.client-videos-gallery {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.client-videos-gallery::-webkit-scrollbar {
  display: none;
}

.client-video-item {
  flex: 0 0 calc(33.333% - 0.5rem);
  min-width: 0;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  aspect-ratio: 9 / 16;
  max-height: 320px;
}

.client-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Gallery Wrapper */
.client-videos-wrapper {
  position: relative;
}

.video-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 10;
}

.video-scroll-btn:hover {
  background: var(--color-text);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.video-scroll-right {
  right: -12px;
}

.video-scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .video-scroll-btn {
    width: 36px;
    height: 36px;
  }
  
  .video-scroll-right {
    right: 8px;
  }
  
  .client-video-item {
    flex: 0 0 calc(50% - 0.375rem);
    max-height: 280px;
  }
}

@media (max-width: 480px) {
  .client-video-item {
    flex: 0 0 70%;
    max-height: 260px;
  }
}

/* Cart Icon Badge */
.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-announcement);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Cart Icon Wrapper */
.cart-icon-wrapper {
  position: relative;
}

/* Cart Dropdown */
.cart-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 340px;
  background: var(--color-bg);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.cart-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cart-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 16px;
  width: 16px;
  height: 16px;
  background: var(--color-bg);
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

.cart-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-dropdown-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-dropdown-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  transition: color 0.2s ease;
  border-radius: 4px;
}

.cart-dropdown-close:hover {
  color: var(--color-text);
  background: #f5f5f5;
}

.cart-dropdown-body {
  max-height: 280px;
  overflow-y: auto;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--color-text-light);
}

.cart-empty svg {
  margin-bottom: 1rem;
  opacity: 0.4;
}

.cart-empty p {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.25rem 0;
}

.cart-empty span {
  font-size: 13px;
  color: var(--color-text-light);
}

.cart-dropdown-items {
  padding: 0.75rem;
}

.cart-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.cart-dropdown-item:last-child {
  margin-bottom: 0;
}

.cart-dropdown-item-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
}

.cart-dropdown-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-dropdown-item-details {
  flex: 1;
  min-width: 0;
}

.cart-dropdown-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-dropdown-item-color {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.cart-dropdown-item-qty {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.cart-dropdown-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.cart-dropdown-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.cart-dropdown-item-remove:hover {
  color: var(--color-announcement);
}

.cart-dropdown-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--color-border);
}

.cart-dropdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-dropdown-total span:first-child {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.cart-dropdown-total span:last-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.cart-dropdown-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-dropdown-checkout:hover {
  background: #218838;
  transform: translateY(-1px);
}

.cart-dropdown-checkout:active {
  transform: translateY(0);
}

/* Mobile responsive for cart dropdown */
@media (max-width: 480px) {
  .cart-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 80vh;
    transform: translateY(100%);
  }

  .cart-dropdown.active {
    transform: translateY(0);
  }

  .cart-dropdown::before {
    display: none;
  }

  .cart-dropdown-body {
    max-height: 50vh;
  }
}

/* Mobile Responsive - Gallery */
@media (max-width: 768px) {
  .product-hero {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .product-hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .product-gallery {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
  }

  .gallery-thumbnails-wrapper {
    display: none;
  }

  .gallery-thumbnails-mobile-wrapper {
    display: block;
  }

  .gallery-main {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .main-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: unset;
  }

  #main-product-image {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .product-info {
    padding: var(--spacing-sm);
  }

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

  .trust-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .breadcrumbs {
    padding: 0.75rem var(--spacing-sm);
  }

  .breadcrumbs ol {
    font-size: 12px;
  }

  .product-hero {
    padding: var(--spacing-sm);
  }

  .thumbnail-btn {
    width: 70px;
    height: 70px;
  }

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

  .current-price {
    font-size: 24px;
  }

  .color-swatch {
    width: 36px;
    height: 36px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .guarantee-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .guarantee-card {
    flex-direction: row;
    padding: 1rem;
    gap: 1rem;
    text-align: left;
  }
}

/* Accordions Section */
.accordions-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

.accordions-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.accordion-header:hover {
  color: var(--color-accent);
}

.accordion-title {
  flex: 1;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--color-text);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
}

.accordion-header:hover .accordion-icon {
  color: var(--color-accent);
}

.accordion-item[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.accordion-item[aria-expanded="true"] .accordion-content {
  max-height: 2000px;
  padding: 0 0 1.5rem 0;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 0.625rem 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  position: relative;
  padding-left: 1.25rem;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--color-text);
  font-weight: bold;
  font-size: 16px;
}

/* Description Content */
.description-content {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text);
}

.description-content p {
  margin: 0 0 1rem 0;
}

.description-content p:last-child {
  margin-bottom: 0;
}

.description-content strong {
  font-weight: 600;
  color: var(--color-text);
}

/* Features Specs */
.features-specs {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text);
}

.features-specs p {
  margin: 0 0 1rem 0;
}

.features-specs p:last-child {
  margin-bottom: 0;
}

.features-specs strong {
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-bottom: 0.375rem;
}

.features-specs .footnote {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.6;
}

/* Shipping Content */
.shipping-content {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text);
}

.shipping-content p {
  margin: 0 0 1rem 0;
}

.shipping-content p:last-child {
  margin-bottom: 0;
}

.shipping-content a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.shipping-content a:hover {
  color: var(--color-text);
}

/* Mobile Responsive - Accordions */
@media (max-width: 768px) {
  .accordions-section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .accordion-header {
    padding: var(--spacing-sm) 0;
    font-size: 15px;
  }

  .accordion-content {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .accordions-section {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .accordion-header {
    font-size: 14px;
    padding: 0.875rem 0;
  }

  .features-list li,
  .description-content,
  .features-specs,
  .shipping-content {
    font-size: 13px;
  }
}

/* Featured On Section */
.featured-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem var(--spacing-md) 4rem;
  text-align: center;
}

.featured-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.featured-logo {
  flex-shrink: 0;
}

.featured-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}

/* Mobile Responsive - Featured Section */
@media (max-width: 768px) {
  .featured-section {
    padding: 2rem var(--spacing-sm) 2.5rem;
  }

  .featured-heading {
    font-size: 15px;
    margin-bottom: 1.5rem;
  }

  .featured-logos {
    gap: 0.5rem;
  }

  .featured-logo img {
    width: 100px;
    height: 82px;
  }
}

@media (max-width: 480px) {
  .featured-section {
    padding: 1.5rem var(--spacing-sm) 2rem;
  }

  .featured-heading {
    font-size: 14px;
    margin-bottom: 1.25rem;
  }

  .featured-logos {
    gap: 0.25rem;
  }

  .featured-logo img {
    width: 90px;
    height: 74px;
  }
}

/* ========================================
   50% MORE Hero Section
   ======================================== */
.hero-more-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c3e50 50%, #1a252f 100%);
  overflow: hidden;
}

.hero-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-more-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xl);
  max-width: 900px;
}

.hero-more-heading {
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-more-text {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-more-section {
    min-height: 400px;
  }

  .hero-more-content {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
}

/* ========================================
   Feature Icons Carousel
   ======================================== */
.features-carousel-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg);
}

.features-carousel-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.features-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--spacing-sm) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.features-carousel::-webkit-scrollbar {
  display: none;
}

.feature-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  text-align: center;
}

.feature-image {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f5f5f5;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-caption {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: var(--spacing-md);
}

.carousel-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background 0.2s ease;
}

.carousel-dot.active::after {
  background: var(--color-text);
}

@media (max-width: 768px) {
  .feature-card {
    flex: 0 0 150px;
  }

  .feature-image {
    width: 150px;
    height: 150px;
  }

  .feature-caption {
    font-size: 13px;
  }
}

/* ========================================
   Travel Without Limits Section
   ======================================== */
.travel-limits-section {
  background: #1e3a5f;
  padding: var(--spacing-xl) 0;
}

.travel-limits-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.travel-limits-text {
  color: #ffffff;
}

.travel-limits-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
}

.travel-limits-subtext {
  font-size: clamp(14px, 2vw, 18px);
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Image Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.comparison-after,
.comparison-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comparison-after img,
.comparison-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.comparison-before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.before-label {
  left: 1rem;
}

.after-label {
  right: 1rem;
}

.comparison-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  z-index: 10;
}

.handle-line {
  flex: 1;
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.handle-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  color: var(--color-text);
  flex-shrink: 0;
}

.handle-circle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .travel-limits-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .travel-limits-text {
    text-align: center;
  }

  .comparison-slider {
    max-width: 100%;
    margin: 0 auto;
  }

  .handle-circle {
    width: 40px;
    height: 40px;
  }

  .handle-circle svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   Content Sections (Dark Blue)
   ======================================== */
.content-section {
  padding: var(--spacing-xl) 0;
}

.content-section-dark {
  background: #1e3a5f;
  color: #ffffff;
}

.content-section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.content-reverse .content-section-container {
  direction: rtl;
}

.content-reverse .content-section-container > * {
  direction: ltr;
}

.content-image {
  border-radius: 12px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.content-description {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 768px) {
  .content-section-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .content-reverse .content-section-container {
    direction: ltr;
  }

  .content-text {
    text-align: center;
  }

  .content-description {
    font-size: 15px;
  }
}

/* ========================================
   Customer Reviews Section
   ======================================== */
.reviews-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg);
}

.reviews-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: var(--spacing-lg);
  align-items: start;
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--spacing-lg);
}

.reviews-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

/* Trustpilot-style stars */
.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars .star {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rating-stars .star svg {
  width: 100%;
  height: 100%;
}

.rating-stars .star.filled svg .star-bg {
  fill: #00b67a;
}

.rating-stars .star.filled svg .star-icon {
  fill: #fff;
}

.rating-stars .star:not(.filled) svg .star-bg {
  fill: #dcdce6;
}

.rating-stars .star:not(.filled) svg .star-icon {
  fill: #fff;
}

.rating-text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.rating-text strong {
  color: var(--color-text);
  text-decoration: underline;
}

.reviews-distribution {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.distribution-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
}

.dist-label {
  width: 50px;
  color: var(--color-text-secondary);
}

.dist-bar {
  flex: 1;
  height: 8px;
  background: #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  min-width: 150px;
}

.dist-fill {
  height: 100%;
  background: #22c55e;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.dist-count {
  width: 30px;
  text-align: right;
  color: var(--color-text-secondary);
}

.write-review-btn {
  padding: 0.875rem 2rem;
  background: transparent;
  border: 2px solid var(--color-text);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.write-review-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.review-card {
  padding: var(--spacing-lg);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: box-shadow 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-stars {
  display: flex;
  gap: 2px;
}

/* Trustpilot-style review stars */
.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .star {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-stars .star svg {
  width: 100%;
  height: 100%;
}

.review-stars .star.filled svg .star-bg {
  fill: #00b67a;
}

.review-stars .star.filled svg .star-icon {
  fill: #fff;
}

.review-stars .star:not(.filled) svg .star-bg {
  fill: #dcdce6;
}

.review-stars .star:not(.filled) svg .star-icon {
  fill: #fff;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.reviewer-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 1.25rem 0;
}

.seller-reply {
  background: #f7f7f7;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.reply-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-bottom: 0.5rem;
}

.reply-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.review-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.review-product img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.review-product span {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* Reviews Pagination */
.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--spacing-lg);
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-btn:hover {
  border-color: var(--color-text);
}

.page-btn.active {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.page-btn.page-next {
  width: auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .reviews-header {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .write-review-btn {
    width: 100%;
    text-align: center;
  }

  .review-card {
    padding: var(--spacing-md);
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ========================================
   Review Modal
   ======================================== */
.review-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--spacing-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.review-modal {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-modal-overlay.active .review-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-icon {
  margin-bottom: 1.5rem;
  color: #22c55e;
}

.modal-icon svg {
  width: 64px;
  height: 64px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}

.modal-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0 0 1rem 0;
}

.modal-subtext {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0 0 1.5rem 0;
}

.modal-subtext a {
  color: #0d4f8b;
  text-decoration: none;
}

.modal-subtext a:hover {
  text-decoration: underline;
}

.modal-btn {
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

@media (max-width: 480px) {
  .review-modal {
    padding: 2rem 1.5rem;
  }

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

  .modal-text {
    font-size: 14px;
  }
}

/* ========================================
   Info Modals (Footer Links)
   ======================================== */
.info-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: var(--spacing-md);
}

.info-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.info-modal {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.info-modal-medium {
  max-width: 560px;
}

.info-modal-large {
  max-width: 680px;
}

.info-modal-overlay.active .info-modal {
  transform: scale(1);
}

.info-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.info-modal .modal-close:hover {
  color: var(--color-text);
}

.info-modal .modal-icon {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.info-modal .modal-icon svg {
  width: 64px;
  height: 64px;
}

.info-modal .modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}

.info-modal .modal-text {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.info-modal .modal-subtext {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
}

.info-modal .modal-subtext a {
  color: var(--color-text);
  text-decoration: underline;
}

.info-modal .modal-body {
  text-align: left;
  margin-bottom: 1.5rem;
}

.info-modal .modal-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem 0;
  color: var(--color-text);
}

.info-modal .modal-body h4:first-child {
  margin-top: 0;
}

.info-modal .modal-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
}

.info-modal .modal-body ul {
  margin: 0.5rem 0 1rem 1.25rem;
  padding: 0;
}

.info-modal .modal-body li {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.info-modal .modal-body strong {
  color: var(--color-text);
}

.modal-scrollable {
  overflow-y: auto;
  max-height: 50vh;
  padding-right: 0.5rem;
}

.modal-scrollable::-webkit-scrollbar {
  width: 6px;
}

.modal-scrollable::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: 3px;
}

.modal-scrollable::-webkit-scrollbar-thumb {
  background: var(--color-text-light);
  border-radius: 3px;
}

.info-modal .modal-btn {
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.info-modal .modal-btn:hover {
  background: var(--color-text-light);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .info-modal {
    padding: 2rem 1.5rem;
    max-height: 85vh;
  }

  .info-modal-medium,
  .info-modal-large {
    max-width: 100%;
  }

  .info-modal .modal-title {
    font-size: 20px;
  }

  .modal-scrollable {
    max-height: 45vh;
  }
}

@media (max-width: 480px) {
  .info-modal-overlay {
    padding: var(--spacing-sm);
  }

  .info-modal {
    padding: 1.5rem 1rem;
  }

  .info-modal .modal-body p,
  .info-modal .modal-body li {
    font-size: 13px;
  }
}

/* ========================================
   Products Carousel Section
   ======================================== */
.products-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.products-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.products-heading {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 var(--spacing-lg) 0;
  text-align: center;
}

.products-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--spacing-sm) 0;
  scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.quick-add-btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  padding: 0.75rem 1.5rem;
  background: #1e3a5f;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.2s ease;
  white-space: nowrap;
}

.product-card:hover .quick-add-btn {
  transform: translateX(-50%) translateY(0);
}

.quick-add-btn:hover {
  background: #2c5282;
}

.product-details {
  padding: 1rem;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
  line-height: 1.4;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-rating .stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}

.product-rating .stars-empty {
  color: #d4d4d4;
  font-size: 14px;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.original-price {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

.sale-price {
  font-size: 16px;
  font-weight: 600;
  color: #dc2626;
}

.sale-price.single {
  color: var(--color-text);
}

.discount-badge {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: #dc2626;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 200px;
  }

  .products-heading {
    font-size: 22px;
  }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: #0f172a;
  color: #ffffff;
}

.footer-main {
  padding: var(--spacing-xl) 0;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.footer-column {
  min-width: 0;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

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

.contact-info {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info p {
  margin: 0 0 0.5rem 0;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md) 0;
}

.footer-bottom-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-methods .payment-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.payment-methods .payment-text:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-column {
    text-align: center;
  }
}

