/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1E5CB8;
  --primary-dark: #164a96;
  --red: #C41E3A;
  --black: #1a1a1a;
  --gray-dark: #333;
  --gray: #555;
  --gray-light: #666;
  --gray-lighter: #888;
  --border: #e5e5e5;
  --bg: #f5f5f5;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* Announcement Bar */
.announcement-bar {
  background-color: var(--black);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.announcement-item img {
  height: 24px;
  width: auto;
  margin-right: 12px;
}

.announcement-item span {
  margin-right: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

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

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.icon-btn {
  color: var(--black);
  padding: 0;
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Content */
.main-content {
  max-width: 1152px;
  margin: 0 auto;
  padding: 24px 16px;
}

.product-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .product-layout {
    flex-direction: row;
  }
  .product-gallery {
    width: 50%;
  }
  .product-info-section {
    width: 50%;
  }
}

/* Gallery */
.gallery-main {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background-color: var(--bg);
  border-radius: 8px;
  overflow: hidden;
}

.gallery-image-wrapper {
  position: absolute;
  inset: 0;
}

.gallery-image-btn {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.zoom-indicator {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--black);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
  transition: background-color 0.2s;
}

.nav-btn:hover {
  background-color: var(--white);
}

.nav-prev {
  left: 12px;
}

.nav-next {
  right: 12px;
}

.gallery-counter {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-light);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 4px;
  padding-bottom: 8px;
}

.thumb-btn {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 2px solid var(--border);
  overflow: hidden;
  opacity: 0.7;
  transition: all 0.2s;
}

.thumb-btn:hover {
  opacity: 1;
}

.thumb-btn.active {
  border-color: var(--primary);
  opacity: 1;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 6px 12px;
  background-color: rgba(30, 92, 184, 0.1);
  border: 1px solid rgba(30, 92, 184, 0.3);
  border-radius: 20px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.price-section {
  margin-top: 24px;
}

.price-label {
  font-size: 12px;
  color: var(--gray-lighter);
  margin-bottom: 6px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-old {
  font-size: 14px;
  color: var(--gray-lighter);
  text-decoration: line-through;
}

.discount-badge {
  background-color: var(--red);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
}

.price-current {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-top: 6px;
}

.installments {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray);
}

.installments strong {
  color: var(--black);
}

.savings {
  margin-top: 4px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Car Finder */
.car-finder {
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--primary);
  box-shadow: 0 10px 30px rgba(13, 37, 94, 0.1);
  overflow: hidden;
  transition: all 0.3s;
}

.car-finder.warning {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(30, 92, 184, 0.25);
}

.car-finder-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background-color: rgba(30, 92, 184, 0.1);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  animation: fadeInUp 0.3s ease;
}

.car-finder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px;
  padding-bottom: 0;
  text-align: left;
}

.car-finder-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.chevron-icon {
  color: var(--gray-dark);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.chevron-icon.rotated {
  transform: rotate(180deg);
}

.car-finder-body {
  padding: 8px 30px 30px;
  overflow: hidden;
  transition: all 0.4s;
}

.car-finder-body.collapsed {
  max-height: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.car-finder-subtitle {
  text-align: center;
  font-size: 0.92em;
  color: #6b7280;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 8px;
}

.form-select {
  width: 100%;
  height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1em;
  color: var(--black);
  background-color: var(--white);
  transition: all 0.2s;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.form-select:disabled {
  cursor: not-allowed;
  background-color: #f3f4f6;
  color: #9ca3af;
}

.form-select.highlight {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(30, 92, 184, 0.15);
}

.result-box {
  margin-top: 18px;
  padding: 16px;
  background-color: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(17, 17, 17, 0.06);
  animation: fadeInUp 0.35s ease;
}

.result-box strong {
  color: var(--black);
}

.result-list {
  list-style: none;
  margin-top: 14px;
  padding: 12px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: left;
}

.result-list li {
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px dashed #eef2f7;
  font-size: 0.95em;
  color: #374151;
}

.result-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.result-list strong {
  display: inline-block;
  width: 96px;
  color: var(--black);
}

.upsell-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  background-color: var(--white);
  border: 1px dashed var(--black);
  border-radius: 10px;
  text-align: left;
}

.upsell-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--black);
  cursor: pointer;
}

.upsell-label {
  display: block;
  font-size: 0.82em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 2px;
}

.upsell-text {
  font-size: 0.92em;
  line-height: 1.4;
  color: var(--black);
}

.result-footer {
  margin-top: 14px;
  font-size: 0.92em;
  font-weight: 600;
  color: var(--black);
  opacity: 0.9;
}

/* Color Selector */
.color-selector {
  margin-top: 24px;
}

.color-selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
}

.color-selector-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.color-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  text-align: left;
  transition: all 0.2s;
}

.color-option:hover {
  border-color: #ccc;
}

.color-option.active {
  border-color: var(--black);
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.color-thumb {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: var(--bg);
  overflow: hidden;
  flex-shrink: 0;
}

.color-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.color-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.color-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

/* Buy Button */
.buy-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.buy-btn:hover {
  background-color: var(--primary-dark);
}

/* Product Description */
.product-description {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  margin-bottom: 32px;
}

.description-content {
  max-width: 960px;
  margin: 0 auto;
}

.description-text {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.description-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 16px;
}

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

.description-text strong {
  color: var(--black);
}

/* Video Section */
.video-headline {
  background-color: var(--primary);
  padding: 20px 24px;
}

.video-headline h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.video-headline p {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.video-section {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.video-thumb-btn {
  display: block;
  width: 100%;
  padding: 0;
}

.video-thumb-img {
  width: 100%;
  height: auto;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: rgba(0,0,0,0.3);
  transition: background-color 0.2s;
}

.video-thumb-btn:hover .video-overlay {
  background-color: rgba(0,0,0,0.4);
}

.play-btn {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(30, 92, 184, 0.5);
  transition: transform 0.2s;
}

.video-thumb-btn:hover .play-btn {
  transform: scale(1.1);
}

.play-btn svg {
  margin-left: 4px;
}

.video-label {
  background-color: rgba(0,0,0,0.6);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* Feature Images */
.feature-images {
  display: flex;
  flex-direction: column;
}

.feature-images img {
  width: 100%;
  height: auto;
}

.colors-available {
  background-color: var(--white);
  padding: 24px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.colors-available img {
  width: 100%;
  height: auto;
}

/* Package Contents */
.package-contents {
  margin-top: 32px;
  background-color: var(--black);
  padding: 32px;
  border-radius: 12px;
  color: var(--white);
}

.package-contents h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 8px;
  text-align: center;
}

.package-qty {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.package-item span:last-child {
  font-size: 14px;
}

/* Guarantees */
.guarantees {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--primary), rgba(30, 92, 184, 0.8));
  padding: 32px;
  border-radius: 12px;
  color: var(--white);
}

.guarantees h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .guarantees-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.guarantee-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-title {
  font-weight: 600;
}

.guarantee-desc {
  font-size: 14px;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.reviews-summary {
  max-width: 448px;
  margin: 0 auto;
  text-align: center;
}

.rating-score {
  font-size: 60px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.review-count {
  font-size: 14px;
  color: #777;
  margin-bottom: 32px;
}

.rating-breakdown {
  margin-bottom: 24px;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.breakdown-star-num {
  width: 12px;
  text-align: right;
  font-size: 14px;
  color: var(--gray);
}

.breakdown-bar {
  flex: 1;
  height: 12px;
  background-color: #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}

.breakdown-bar-fill {
  height: 100%;
  background-color: #d4a017;
  border-radius: 6px;
  transition: width 0.3s;
}

.breakdown-count {
  width: 32px;
  text-align: right;
  font-size: 14px;
  color: var(--gray);
}

.write-review-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
  transition: background-color 0.2s;
}

.write-review-btn:hover {
  background-color: var(--primary-dark);
}

.filter-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 200px;
}

.filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  color: var(--gray-dark);
  transition: border-color 0.2s;
}

.filter-btn:hover {
  border-color: #bbb;
}

.filter-chevron {
  color: #999;
  transition: transform 0.3s;
}

.filter-chevron.rotated {
  transform: rotate(180deg);
}

.filter-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
}

.filter-option {
  display: block;
  width: 100%;
  padding: 10px 20px;
  text-align: left;
  font-size: 14px;
  color: var(--gray-dark);
  transition: background-color 0.2s;
}

.filter-option:hover {
  background-color: var(--bg);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  overflow: hidden;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.review-avatar.bg-blue { background-color: var(--primary); }
.review-avatar.bg-dark { background-color: var(--gray-dark); }
.review-avatar.bg-red { background-color: var(--red); }

.review-name {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.verified-badge {
  margin-left: 4px;
  flex-shrink: 0;
}

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

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

.review-image-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  border-radius: 6px;
  overflow: hidden;
}

.review-image {
  width: 100%;
  height: auto;
  transition: transform 0.2s;
}

.review-image-btn:hover .review-image {
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  margin-top: 48px;
  background-color: var(--bg);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px 24px;
}

.footer-logo-mobile {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .footer-logo-mobile {
    display: none;
  }
}

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

.footer-grid {
  display: block;
}

@media (min-width: 1024px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.footer-section {
  border-bottom: 1px solid #e0e0e0;
}

@media (min-width: 1024px) {
  .footer-section {
    border-bottom: none;
  }
}

.footer-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-dark);
}

@media (min-width: 1024px) {
  .footer-section-header {
    cursor: default;
    margin-bottom: 16px;
    padding: 0;
  }
  .footer-chevron {
    display: none;
  }
}

.footer-section-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.footer-section.open .footer-section-content,
.footer-section-open .footer-section-content {
  max-height: 600px;
  padding-bottom: 16px;
}

@media (min-width: 1024px) {
  .footer-section-content {
    max-height: none !important;
    overflow: visible;
    padding-bottom: 0 !important;
  }
}

.footer-logo-desktop {
  display: none;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .footer-logo-desktop {
    display: block;
  }
}

.footer-section-content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 16px;
}

.contact-label {
  font-size: 12px !important;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-dark) !important;
}

.footer-divider {
  margin: 16px 0;
  border-top: 1px dashed #ccc;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gray-dark);
}

.newsletter-input {
  width: 100%;
  padding: 10px 16px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  color: var(--gray-dark);
  background-color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: var(--primary);
}

.newsletter-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  transition: background-color 0.2s;
}

.newsletter-btn:hover {
  background-color: var(--primary-dark);
}

.footer-social {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 24px;
}

.footer-social p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background-color: var(--gray-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color 0.2s;
}

.social-icon:hover {
  background-color: var(--primary);
}

.footer-payments {
  text-align: center;
  margin-bottom: 24px;
}

.footer-payments p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 24px;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  color: var(--gray-light);
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  background-color: var(--bg);
}

.footer-bottom p {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-lighter);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 32px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(30, 92, 184, 0.4);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-cta:hover {
  background-color: var(--primary-dark);
}

.floating-cta.pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

/* Modals */
.video-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 210;
  transition: background-color 0.2s;
}

.modal-close:hover {
  background-color: rgba(255,255,255,0.2);
}

.modal-video-container {
  width: 100%;
  max-width: 1024px;
  padding: 16px;
}

.modal-video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.9);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background-color: var(--bg);
  color: var(--gray-light);
}

.lightbox-close:hover {
  background-color: var(--border);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin: 16px;
}

.lightbox-image {
  width: 100%;
  height: auto;
  padding: 16px;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 210;
  transition: background-color 0.2s;
}

.lightbox-nav:hover {
  background-color: var(--white);
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

.lightbox-counter {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

/* Review Lightbox */
.review-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.review-lightbox .modal-close {
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.review-lightbox .modal-close:hover {
  background-color: rgba(255,255,255,0.4);
}

.review-lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 14px rgba(30, 92, 184, 0.4);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 92, 184, 0.6);
  }
}

/* Star SVG */
.star-svg {
  display: inline-block;
}
