/* ========================================
   NUNES AUTOSTYLE - STATIC SITE CSS
   Version: 1.0
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: translateX(-50%) scale(1.04);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
  background: #1a1a1a;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

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

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

.announcement-logo {
  height: 24px;
  width: auto;
  margin-right: 12px;
  object-fit: contain;
}

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.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-btn {
  background: transparent;
  padding: 0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #c41e1e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb a:hover {
  color: #1a1a1a;
}

.breadcrumb .separator {
  color: #999;
}

.breadcrumb .current {
  color: #1a1a1a;
  font-weight: 500;
}

/* ========================================
   PRODUCT SECTION
   ======================================== */
.product-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

/* ========================================
   GALLERY
   ======================================== */
.gallery-main {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
}

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

.gallery-zoom-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.gallery-nav:hover {
  background: #fff;
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-counter {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: #666;
}

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

.thumb {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #e5e5e5;
  background: transparent;
  padding: 0;
  opacity: 0.7;
  transition: all 0.2s;
}

.thumb:hover {
  opacity: 1;
}

.thumb.active {
  border-color: #c41e1e;
  opacity: 1;
}

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

/* ========================================
   PRODUCT INFO
   ======================================== */
.product-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 6px 12px;
  background: rgba(43, 186, 160, 0.1);
  border: 1px solid rgba(43, 186, 160, 0.3);
  border-radius: 9999px;
}

.warranty-badge svg {
  color: #2bbaa0;
  flex-shrink: 0;
}

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

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

.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;
}

.discount-badge {
  background: #4CAF50;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
}

.price-current {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 6px;
}

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

.installments svg {
  flex-shrink: 0;
  color: #555;
}

.installments strong {
  color: #1a1a1a;
}

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

/* ========================================
   CAR FINDER
   ======================================== */
.car-finder {
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: 5px solid #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 37, 94, 0.1);
  transition: all 0.5s;
}

.car-finder.warning {
  border-color: #c41e1e;
  border-top-color: #c41e1e;
  box-shadow: 0 0 20px rgba(196, 30, 30, 0.25);
}

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

.car-finder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 0;
  background: transparent;
  cursor: pointer;
}

.car-finder-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.car-finder-header .chevron {
  flex-shrink: 0;
  color: #222;
  transition: transform 0.3s;
}

.car-finder-header.collapsed .chevron {
  transform: rotate(180deg);
}

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

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

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

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

.form-group label {
  display: block;
  font-size: 0.85em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 8px;
}

.form-group select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 1em;
  color: #111;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.form-group select:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

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

.form-group select.error {
  border: 2px solid #c41e1e;
  box-shadow: 0 0 0 3px rgba(196, 30, 30, 0.15);
}

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

.car-finder-result strong {
  color: #111;
}

.result-list {
  list-style: none;
  margin-top: 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-align: left;
}

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

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

.result-list li strong {
  display: inline-block;
  width: 96px;
  color: #111;
}

.result-footer {
  margin-top: 14px;
  font-size: 0.92em;
  font-weight: 600;
  color: #111;
  opacity: 0.9;
}

/* ========================================
   KIT SELECTOR
   ======================================== */
.kit-selector {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.kit-option.active {
  border-color: #4CAF50;
  background: #f0faf0;
}

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

.kit-option.active .kit-radio {
  background: #4CAF50;
  border-color: #4CAF50;
  color: #fff;
}

.kit-thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}

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

.kit-badge {
  display: inline-block;
  background: #4CAF50;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
}

.kit-label {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.kit-economy {
  font-size: 12px;
  font-weight: 500;
  color: #4CAF50;
}

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

.kit-discount {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}

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

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

/* ========================================
   BUY BUTTON
   ======================================== */
.buy-button {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: #c41e1e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 8px;
  transition: background 0.2s;
}

.buy-button:hover {
  background: #a31818;
}

/* ========================================
   PRODUCT DESCRIPTION
   ======================================== */
.product-description {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 32px;
}

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

.specs-box {
  background: #f5f5f5;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.specs-box h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #c41e1e;
  margin-bottom: 16px;
}

.specs-box ul {
  list-style: none;
}

.specs-box li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #333;
}

.specs-box .bullet {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: #c41e1e;
  border-radius: 50%;
  margin-top: 6px;
}

.desc-section {
  text-align: center;
  margin-bottom: 24px;
}

.desc-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #c41e1e;
  margin-bottom: 16px;
}

.desc-section p {
  color: #333;
  line-height: 1.6;
}

.desc-image {
  width: 100%;
  margin-bottom: 48px;
}

.dimensions {
  text-align: center;
  margin-bottom: 40px;
}

.dimensions h3 {
  font-size: 18px;
  font-weight: 700;
  color: #c41e1e;
  margin-bottom: 16px;
}

.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.dimension-value {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.dimension-label {
  font-size: 14px;
  color: #666;
}

/* Video Section */
.video-section {
  margin-bottom: 16px;
}

.video-section h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #c41e1e;
  margin-bottom: 16px;
}

.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

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

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #c41e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 30px rgba(196, 30, 30, 0.5);
  transition: transform 0.3s;
}

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

.video-label {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 60px);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
  margin-top: 32px;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
}

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

.reviews-summary h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.rating-number {
  font-size: 60px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

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

.reviews-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-row > span:first-child {
  width: 12px;
  text-align: right;
  font-size: 14px;
  color: #555;
}

.breakdown-row > span:last-child {
  width: 32px;
  text-align: right;
  font-size: 14px;
  color: #555;
}

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

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

.write-review-btn {
  width: 100%;
  padding: 14px;
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  transition: background 0.2s;
  margin-bottom: 24px;
}

.write-review-btn:hover {
  background: #1a1a1a;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  border-top: 1px solid #e5e5e5;
  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: #fff;
  border: 1px solid #e5e5e5;
  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;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.review-name {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.review-name svg {
  margin-left: 4px;
}

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

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

.review-image {
  width: 100%;
  margin-top: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

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

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  margin-top: 48px;
  background: #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,
.footer-logo-desktop img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

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

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

.footer-chevron {
  transition: transform 0.3s;
}

.footer-toggle.open .footer-chevron {
  transform: rotate(180deg);
}

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

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

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

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

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

.contact-label {
  font-size: 12px !important;
  font-weight: 700;
  text-transform: uppercase;
  color: #333 !important;
}

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

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

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

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

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

.newsletter-input {
  width: 100%;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 9999px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

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

.newsletter-btn {
  width: 100%;
  padding: 12px;
  background: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  transition: background 0.2s;
}

.newsletter-btn:hover {
  background: #222;
}

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

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

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

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

.social-icons a:hover {
  background: #c41e1e;
}

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

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

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

.payment-icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 8px;
  font-weight: 700;
  color: #666;
}

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

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

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

.floating-cta:hover {
  background: #a31818;
}

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

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

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.modal-close:hover {
  background: #c41e1e;
  color: #fff;
  transform: scale(1.1);
}

.modal-content {
  width: 90vw;
  max-width: 900px;
  position: relative;
}

@media (min-width: 768px) {
  .modal-content {
    width: 70vw;
  }
}

.modal-content video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 8px;
  background: #000;
  display: block;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: #c41e1e;
  color: #fff;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  background: #fff;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.lightbox-nav:hover {
  background: #c41e1e;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

@media (min-width: 768px) {
  .lightbox-prev {
    left: 24px;
  }
  .lightbox-next {
    right: 24px;
  }
  .lightbox-nav {
    width: 64px;
    height: 64px;
  }
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 9999px;
}

/* ========================================
   POLICY PAGES
======================================== */
.policy-page {
  min-height: 100vh;
  background: #fff;
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.back-link:hover {
  color: #1a1a1a;
}

.policy-page h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

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

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

.policy-content h2 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-top: 24px;
  margin-bottom: 12px;
}

.policy-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-top: 16px;
  margin-bottom: 8px;
}

.policy-content ul {
  margin-left: 16px;
  margin-bottom: 16px;
}

.policy-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.policy-content a {
  color: #2bbaa0;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.company-info {
  margin-top: 32px;
  padding: 24px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.company-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  margin-top: 0;
}

.company-info p {
  margin-bottom: 4px;
  color: #555;
}

.update-date {
  font-size: 12px;
  color: #999;
  margin-top: 16px;
}

.highlight-box {
  background: rgba(43, 186, 160, 0.1);
  border: 1px solid rgba(43, 186, 160, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.highlight-box .highlight-title {
  font-weight: 700;
  color: #2bbaa0;
  margin-bottom: 4px;
}

.highlight-box p {
  font-size: 13px;
  color: rgba(43, 186, 160, 0.8);
  margin-bottom: 0;
}
