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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.5;
  min-height: 100vh;
}

img, video {
  max-width: 100%;
  height: auto;
}

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

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

input {
  font-family: inherit;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #2E7D32;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  animation: scroll-left 30s linear infinite;
}

.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;
  color: white;
  letter-spacing: 0.05em;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
  background-color: white;
  border-bottom: 1px solid #e5e5e5;
}

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

.menu-btn {
  background: transparent;
  padding: 0;
  color: #1a1a1a;
}

.menu-btn svg {
  width: 24px;
  height: 24px;
}

.header-logo-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.cart-btn {
  background: transparent;
  padding: 0;
  color: #1a1a1a;
  position: relative;
}

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

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 16px;
  height: 16px;
  background-color: #2E7D32;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #777;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #777;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #2E7D32;
}

.breadcrumb span {
  color: #333;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: #777;
}

.breadcrumb-current {
  color: #333;
}

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

.main-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* Product Section */
.product-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

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

/* Product Gallery */
.product-gallery {
  position: relative;
}

.gallery-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 10;
  background-color: #2E7D32;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.gallery-main-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-rating {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.stars svg {
  width: 16px;
  height: 16px;
}

.rating-count {
  font-size: 14px;
  color: #666;
}

/* Product Info */
.product-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  color: #1a1a1a;
}

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

.price-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

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

.price-old {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}

.price-discount-badge {
  background-color: #2E7D32;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: bold;
  color: white;
}

.price-current {
  font-size: 32px;
  font-weight: bold;
  color: #2E7D32;
  margin-top: 6px;
}

.installments {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.installments svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.installments strong {
  color: #1a1a1a;
}

.economy {
  margin-top: 4px;
  font-size: 14px;
  color: #2E7D32;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Viewers Badge */
.viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(46, 125, 50, 0.3);
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 999px;
}

.viewers-badge svg {
  width: 16px;
  height: 16px;
  color: #2E7D32;
}

.viewers-badge span {
  font-size: 12px;
  font-weight: 600;
  color: #2E7D32;
}

/* Personalization Inputs */
.personalization {
  margin-top: 24px;
}

.personalization-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.personalization-row {
  display: flex;
  gap: 8px;
}

.personalization-row + .personalization-title {
  margin-top: 16px;
}

.personalization-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.personalization-input:focus {
  border-color: #2E7D32;
}

.btn-confirm {
  background-color: #2E7D32;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s;
  line-height: 1.2;
}

.btn-confirm:hover {
  background-color: #1B5E20;
}

.confirmation-text {
  margin-top: 4px;
  font-size: 12px;
  color: #2E7D32;
}

/* Kit Selector */
.kit-selector {
  margin-top: 24px;
}

.kit-accordion-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px 8px 0 0;
}

.kit-accordion-header.collapsed {
  border-radius: 8px;
}

.kit-accordion-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kit-accordion-title svg {
  width: 20px;
  height: 20px;
  color: #2E7D32;
}

.kit-accordion-title span {
  font-size: 14px;
  font-weight: bold;
  color: #1a1a1a;
}

.kit-accordion-header svg.chevron {
  width: 20px;
  height: 20px;
  color: #666;
  transition: transform 0.2s;
}

.kit-accordion-header.expanded svg.chevron {
  transform: rotate(180deg);
}

.kit-accordion-content {
  border: 1px solid #e0e0e0;
  border-top: none;
  background-color: #fafafa;
  padding: 16px;
  display: none;
}

.kit-accordion-content.show {
  display: block;
}

.kit-hint {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

/* Kit Options */
.kit-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kit-option {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: left;
  transition: border-color 0.2s;
}

.kit-option:hover {
  border-color: #bbb;
}

.kit-option.selected {
  border-color: #2E7D32;
}

.kit-radio {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.kit-option.selected .kit-radio {
  border-color: #2E7D32;
  background-color: #2E7D32;
}

.kit-radio svg {
  width: 12px;
  height: 12px;
  color: white;
  display: none;
}

.kit-option.selected .kit-radio svg {
  display: block;
}

.kit-info {
  flex: 1;
  min-width: 0;
}

.kit-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.kit-label {
  font-size: 14px;
  font-weight: bold;
  color: #1a1a1a;
}

.kit-badge {
  display: inline-block;
  background-color: #2E7D32;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.kit-description {
  margin-top: 4px;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.kit-price {
  flex-shrink: 0;
  text-align: right;
}

.kit-price-old-row {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.kit-price-old {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.kit-discount {
  background-color: #2E7D32;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: bold;
  color: white;
}

.kit-price-current {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
}

/* Items Included */
.items-included {
  margin-top: 16px;
  padding: 16px;
  background-color: rgba(46, 125, 50, 0.05);
  border: 1px solid rgba(46, 125, 50, 0.3);
  border-radius: 8px;
}

.items-included-title {
  font-size: 14px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.items-included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.items-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.items-included-list svg {
  width: 16px;
  height: 16px;
  color: #2E7D32;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Buy Button */
.btn-buy {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  background-color: #FFC107;
  border-radius: 999px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #1a1a1a;
  text-align: center;
  transition: background-color 0.2s;
}

.btn-buy:hover {
  background-color: #FFB300;
}

/* Product Description Section */
.product-description {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

/* Video Section */
.video-carousel-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.video-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
}

/* Video Grid - Simple Layout */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid .video-card:last-child {
    grid-column: span 2;
  }
}

.video-card {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.video-card-inner {
  position: relative;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #444 0%, #222 100%);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: background 0.2s;
}

.video-card:hover .video-card-overlay {
  background: rgba(0,0,0,0.2);
}

.video-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  font-size: 13px;
  font-weight: 500;
}

/* Legacy Video Carousel (keeping for compatibility) */
.video-carousel {
  position: relative;
}

.video-carousel-wrapper {
  overflow: hidden;
}

.video-track {
  display: flex;
  gap: 12px;
  transition: transform 0.3s ease;
}

.video-item {
  position: relative;
  width: calc(50% - 6px);
  min-height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.video-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 9/16;
  background-color: black;
}

.video-item video,
.video-item-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  z-index: 5;
}

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

.video-play-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.video-play-icon svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

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

.video-nav-btn:hover {
  background-color: white;
}

.video-nav-btn.prev {
  left: 24px;
}

.video-nav-btn.next {
  right: 24px;
}

.video-nav-btn svg {
  width: 20px;
  height: 20px;
  color: #1a1a1a;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 12px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.video-caption p {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin: 0;
}

.video-bottom-text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #d32f2f;
  margin-top: 24px;
}

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

.video-modal.show {
  display: flex;
}

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

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

.video-modal-close svg {
  width: 24px;
  height: 24px;
}

.video-modal-content {
  width: 100%;
  max-width: 512px;
  padding: 0 16px;
}

.video-modal-content video {
  width: 100%;
  max-height: 85vh;
  border-radius: 8px;
}

.video-modal-caption {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-top: 16px;
}

.video-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.2s;
}

.video-modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.video-modal-nav.prev {
  left: 16px;
}

.video-modal-nav.next {
  right: 16px;
}

.video-modal-nav svg {
  width: 24px;
  height: 24px;
}

/* Modal aliases for HTML compatibility */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

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

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-content {
  width: 100%;
  max-width: 512px;
  padding: 0 16px;
  position: relative;
  z-index: 5;
}

.modal-video {
  width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  background: black;
}

.modal-caption {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin-top: 16px;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.2s;
  z-index: 10;
  border: none;
  cursor: pointer;
}

.modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.modal-prev {
  left: 16px;
}

.modal-next {
  right: 16px;
}

.modal-nav svg {
  width: 24px;
  height: 24px;
}

/* Welcome Banner */
.welcome-banner {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 16px;
}

.welcome-banner img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Headline */
.headline {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.headline h2 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .headline h2 {
    font-size: 30px;
  }
}

.headline p {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #2E7D32;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .headline p {
    font-size: 24px;
  }
}

/* Description Content */
.description-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Urgency Box */
.urgency-box {
  margin-bottom: 32px;
  padding: 24px;
  border: 2px solid #d32f2f;
  background-color: #ffebee;
  border-radius: 12px;
  text-align: center;
}

.urgency-box p:first-child {
  font-size: 18px;
  font-weight: bold;
  color: #d32f2f;
}

.urgency-box p:last-child {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

/* Problem Solution */
.problem-solution {
  margin-bottom: 32px;
}

.problem-solution p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
}

.problem-solution p.solution {
  font-size: 20px;
  font-weight: bold;
  color: #2E7D32;
}

/* Product Showcase */
.product-showcase {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.product-showcase img {
  width: 100%;
  object-fit: contain;
}

/* Benefits */
.benefits {
  margin-bottom: 40px;
}

.benefits h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #333;
}

.benefit-check {
  width: 24px;
  height: 24px;
  background-color: #2E7D32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
  font-size: 14px;
}

.benefits-list li span {
  font-weight: 500;
}

/* Product Detail Image */
.product-detail-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.product-detail-image img {
  width: 100%;
  object-fit: contain;
}

/* Social Proof */
.social-proof {
  margin-bottom: 40px;
  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 12px;
}

.social-proof h3 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.social-proof p {
  text-align: center;
  font-size: 16px;
  color: #666;
}

/* Guarantee */
.guarantee {
  margin-bottom: 40px;
  padding: 24px;
  border: 2px solid #2E7D32;
  background-color: #e8f5e9;
  border-radius: 12px;
  text-align: center;
}

.guarantee-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.guarantee h3 {
  font-size: 20px;
  font-weight: bold;
  color: #2E7D32;
  margin-bottom: 8px;
}

.guarantee p {
  font-size: 16px;
  color: #333;
}

/* Special Offer */
.special-offer {
  margin-bottom: 40px;
  padding: 32px;
  background-color: #1a1a1a;
  border-radius: 12px;
  text-align: center;
}

.special-offer-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFC107;
  margin-bottom: 8px;
}

.special-offer h3 {
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .special-offer h3 {
    font-size: 30px;
  }
}

.special-offer p {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 24px;
}

.btn-cta-green {
  display: inline-block;
  padding: 16px 40px;
  background-color: #2E7D32;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  transition: all 0.2s;
}

.btn-cta-green:hover {
  background-color: #1b5e20;
  transform: scale(1.05);
}

/* FAQ */
.faq {
  margin-bottom: 32px;
}

.faq h3 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.faq-item p:first-child {
  font-weight: bold;
  color: #1a1a1a;
}

.faq-item p:last-child {
  margin-top: 4px;
  color: #666;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.final-cta p {
  font-size: 18px;
  font-weight: bold;
  color: #d32f2f;
  margin-bottom: 16px;
}

.btn-cta-yellow {
  display: inline-block;
  padding: 16px 48px;
  background-color: #FFC107;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: all 0.2s;
}

.btn-cta-yellow:hover {
  background-color: #FFB300;
  transform: scale(1.05);
}

/* Customer Reviews */
.customer-reviews {
  background-color: #f9f9f9;
  padding: 40px 16px;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Rating Summary */
.rating-summary {
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.rating-summary-title {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.rating-average {
  text-align: center;
  margin-bottom: 16px;
}

.rating-average-number {
  font-size: 48px;
  font-weight: bold;
  color: #1a1a1a;
}

.rating-average-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.rating-average-stars svg {
  width: 24px;
  height: 24px;
}

.rating-average-count {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

/* Reviews Summary Section */
.reviews-summary {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 24px;
}

.reviews-title {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  color: #d4a017;
  margin-bottom: 16px;
}

.reviews-average {
  font-size: 48px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 8px;
}

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

.reviews-count {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.rating-breakdown,
.reviews-breakdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.rating-breakdown-row,
.breakdown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.breakdown-row span:first-child {
  width: 70px;
  text-align: right;
}

.breakdown-row span:last-child {
  width: 30px;
  text-align: left;
  color: #888;
}

.reviews-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.write-review-btn {
  padding: 12px 20px;
  background-color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

.write-review-btn:hover {
  background-color: #333;
}

.filter-dropdown {
  position: relative;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s;
}

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

.filter-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 100;
  min-width: 120px;
}

.filter-options button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.filter-options button:hover {
  background-color: #f5f5f5;
}

.filter-options button:first-child {
  border-radius: 8px 8px 0 0;
}

.filter-options button:last-child {
  border-radius: 0 0 8px 8px;
}

.rating-breakdown-label {
  width: 64px;
  text-align: right;
  color: #888;
}

.rating-breakdown-count {
  width: 32px;
  text-align: left;
  color: #888;
}

.rating-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-write-review {
  flex: 1;
  padding: 12px 24px;
  background-color: #1a1a1a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: background-color 0.2s;
}

.btn-write-review:hover {
  background-color: #333;
}

.filter-dropdown {
  position: relative;
}

.btn-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  background-color: white;
  border-radius: 8px;
  font-size: 14px;
  color: #1a1a1a;
  transition: background-color 0.2s;
  text-transform: capitalize;
}

.btn-filter:hover {
  background-color: #f5f5f5;
}

.btn-filter svg {
  width: 16px;
  height: 16px;
}

.filter-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 4px;
  width: 128px;
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 4px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10;
}

.filter-menu.show {
  display: block;
}

.filter-menu button {
  display: block;
  width: 100%;
  padding: 8px 16px;
  text-align: left;
  font-size: 14px;
  color: #1a1a1a;
  text-transform: capitalize;
}

.filter-menu button:hover {
  background-color: #f5f5f5;
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

.review-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-name span {
  font-weight: 600;
  color: #1a1a1a;
}

.review-name svg {
  width: 16px;
  height: 16px;
  color: #2E7D32;
}

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

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Footer */
.site-footer {
  margin-top: 48px;
  background-color: #f5f5f5;
}

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

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

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

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

.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;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: transparent;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
}

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

.footer-section-header svg,
.footer-toggle-icon {
  width: 16px;
  height: 16px;
  color: #333;
  transition: transform 0.2s;
}

.footer-section.open .footer-toggle-icon {
  transform: rotate(0);
}

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

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

.footer-section-content p {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

@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-logo-desktop img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-text {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.footer-text p {
  margin-bottom: 16px;
}

.footer-contact-label,
.footer-label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 8px;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: #555;
  transition: color 0.2s;
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: #2E7D32;
}

.newsletter-btn,
.btn-newsletter {
  padding: 10px 16px;
  background-color: #2E7D32;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  transition: background-color 0.2s;
  cursor: pointer;
  border: none;
}

.newsletter-btn:hover,
.btn-newsletter:hover {
  background-color: #1B5E20;
}

/* Social */
.footer-social {
  text-align: center;
  margin: 32px 0 24px;
}

.footer-social p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

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

.social-link {
  width: 32px;
  height: 32px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.social-link:hover {
  background-color: #2E7D32;
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: white;
  fill: white;
}

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

.footer-payments p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

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

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  background-color: #f5f5f5;
  padding: 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #888;
}

.footer-bottom p + p {
  margin-top: 4px;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px;
  background-color: #FFC107;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s;
}

.floating-cta.show {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta:hover {
  background-color: #FFB300;
}

@media (min-width: 768px) {
  .floating-cta {
    display: none;
  }
}

/* Hide elements */
.hidden {
  display: none !important;
}

/* ===================== */
/* Policy Pages Styles */
/* ===================== */

.policy-header {
  border-bottom: 1px solid #e5e5e5;
  background-color: white;
}

.policy-header-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  transition: color 0.2s;
}

.back-link:hover {
  color: #2E7D32;
}

.back-link svg {
  width: 20px;
  height: 20px;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 16px;
}

.policy-title {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .policy-title {
    font-size: 32px;
  }
}

.policy-subtitle {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: -24px;
  margin-bottom: 32px;
}

.policy-body {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.policy-body p {
  margin-bottom: 16px;
}

.policy-body ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.policy-body ul li {
  margin-bottom: 8px;
}

.policy-body a {
  color: #2E7D32;
  text-decoration: underline;
}

.policy-body a:hover {
  color: #1B5E20;
}

.policy-section {
  margin-bottom: 32px;
}

.policy-section h2 {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.policy-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 12px;
}

.policy-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.policy-box p {
  margin-bottom: 12px;
}

.policy-box p:last-child {
  margin-bottom: 0;
}

.policy-thanks {
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 16px;
}

.policy-highlight {
  text-align: center;
  padding: 32px;
  background-color: #e8f5e9;
  border: 2px solid #2E7D32;
  border-radius: 12px;
  margin-bottom: 32px;
}

.policy-highlight svg {
  margin-bottom: 16px;
}

.policy-highlight h2 {
  font-size: 22px;
  font-weight: bold;
  color: #2E7D32;
  margin-bottom: 12px;
}

.policy-highlight p {
  color: #333;
  margin-bottom: 0;
}

.policy-warning {
  background-color: #fff3e0;
  border-left: 4px solid #e65100;
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-size: 14px;
  color: #e65100;
}

.policy-success {
  background-color: #e8f5e9;
  border-left: 4px solid #2E7D32;
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-size: 14px;
  color: #2e7d32;
}

.policy-success h3 {
  color: #2E7D32;
  margin-top: 0;
  margin-bottom: 8px;
}

.policy-info {
  background-color: #e3f2fd;
  border-left: 4px solid #1565c0;
  padding: 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-size: 14px;
  color: #1565c0;
}

.numbered-list {
  list-style: none;
  padding-left: 0;
}

.numbered-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.numbered-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #2E7D32;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.policy-contact {
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}

.policy-contact h3 {
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.policy-contact p {
  margin-bottom: 8px;
}

.policy-contact-green {
  background-color: #e8f5e9;
  border: 2px solid #2E7D32;
  text-align: center;
}

.policy-contact-green h3 {
  color: #2E7D32;
}

.policy-contact-dark {
  background-color: #1a1a1a;
  border: none;
  text-align: center;
  color: white;
}

.policy-contact-dark h3 {
  color: white;
}

.policy-contact-dark p {
  color: #d1d5db;
}

.policy-email-highlight {
  color: #FFC107 !important;
  font-weight: bold;
}

.policy-footer-note {
  margin-top: 16px;
  color: #2E7D32;
  font-weight: 500;
}

.policy-team {
  font-weight: bold;
  color: #2E7D32;
  margin-top: 8px;
}

.policy-update-date {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 32px;
}
