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

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul,
ol {
  list-style: none;
}

/* Animations */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.35);
  }

  50% {
    transform: translateX(-50%) scale(1.04);
    box-shadow: 0 6px 24px rgba(211, 47, 47, 0.5);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

.announcement-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 20s linear infinite;
  will-change: transform;
}

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

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

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

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

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

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

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

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

.icon-btn {
  background: transparent;
  border: none;
  color: #1a1a1a;
  padding: 0;
  display: flex;
  align-items: center;
}

.cart-btn {
  position: relative;
}

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

/* Breadcrumb */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 16px;
  font-size: 14px;
  color: #666;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

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

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

.breadcrumb .sep {
  color: #999;
}

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

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

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

@media (min-width: 1024px) {
  .product-layout {
    flex-direction: row;
  }
}

/* Gallery */
.product-gallery {
  flex: 1;
}

@media (min-width: 1024px) {
  .product-gallery {
    width: 50%;
  }
}

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

.gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}

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

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

.gallery-main .gallery-nav.prev {
  left: 12px;
}

.gallery-main .gallery-nav.next {
  right: 12px;
}

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

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

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

.gallery-thumbs button:hover {
  opacity: 1;
}

.gallery-thumbs button.active {
  border-color: #D32F2F;
  opacity: 1;
}

.gallery-thumbs button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Sidebar */
.product-sidebar {
  flex: 1;
}

@media (min-width: 1024px) {
  .product-sidebar {
    width: 50%;
  }
}

.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;
  border: 1px solid rgba(211, 47, 47, 0.3);
  background: rgba(211, 47, 47, 0.1);
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #D32F2F;
}

.price-block {
  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: #D32F2F;
  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;
  line-height: 1.2;
}

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

.installments strong {
  font-weight: 700;
  color: #1a1a1a;
}

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

/* Car Finder */
.car-finder {
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.car-finder-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  border-top: 5px solid #111;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 37, 94, 0.1);
  transition: all 0.5s;
}

.car-finder-card.warning {
  border-color: #D32F2F;
  border-top-color: #D32F2F;
  box-shadow: 0 0 20px rgba(211, 47, 47, 0.25);
}

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

.car-finder-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 30px 30px 0;
  text-align: left;
}

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

.chevron-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.car-finder-body {
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s;
  padding: 8px 30px 30px;
}

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

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

.field {
  margin-bottom: 16px;
}

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

.field select {
  height: 46px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 1em;
  color: #111;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

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

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

.field select.error {
  border: 2px solid #D32F2F;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

.car-result {
  margin-top: 18px;
  animation: fadeInUp 0.35s ease;
}

.car-result-card {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(17, 17, 17, 0.06);
}

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

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

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

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

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

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

.upsell-box {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  border: 1px dashed #111;
  background: #fff;
  padding: 12px;
  text-align: left;
}

.upsell-box input[type="checkbox"] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: #111;
  cursor: pointer;
}

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

.upsell-text {
  font-size: 0.92em;
  line-height: 1.4;
  color: #111;
}

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

.kit-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding-bottom: 12px;
}

.kit-toggle-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.kit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid #e5e5e5;
  background: #fff;
  padding: 12px 16px;
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
}

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

.kit-item.active {
  border-color: #1a1a1a;
}

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

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

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

.kit-price {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

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

.buy-btn:hover {
  background: #333;
}

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

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

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

.desc-text-block {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
}

.desc-text-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.desc-text-block p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

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

.desc-text-block strong {
  color: #1a1a1a;
}

.desc-img {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.desc-img img {
  width: 100%;
}

/* Video Player */
.video-player {
  margin-bottom: 24px;
  position: relative;
}

.video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-thumb-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-thumb-btn:hover .video-thumb-img {
  transform: scale(1.05);
}

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

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

.video-play-area {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.video-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

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

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

.video-play-circle.loading {
  background: rgba(255, 255, 255, 0.95);
}

.video-spinner {
  width: 36px;
  height: 36px;
  border: 4px solid #ddd;
  border-top-color: #D32F2F;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.video-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.video-cta-badge {
  background: #D32F2F;
  color: #fff;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-cta-sub {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-bottom-bar {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 48px 16px 20px;
}

.video-bottom-bar p {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.video-error {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(211, 47, 47, 0.25);
  background: rgba(211, 47, 47, 0.08);
  font-size: 13px;
  line-height: 1.5;
  color: #B71C1C;
}

.video-error[hidden] {
  display: none;
}

@media (min-width: 640px) {
  .video-cta-badge {
    font-size: 14px;
  }

  .video-cta-sub {
    font-size: 14px;
  }

  .video-bottom-bar p {
    font-size: 16px;
  }
}

/* Colors Block */
.colors-block {
  margin-top: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.colors-block h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.colors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.color-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

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

.color-center {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

/* Reviews Summary */
.reviews-summary {
  margin-top: 32px;
  border-top: 1px solid #e5e5e5;
  padding: 40px 0;
}

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

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

.rating-big {
  font-size: 60px;
  font-weight: 700;
  color: #1a1a1a;
  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;
}

.breakdown {
  margin-bottom: 24px;
}

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

.breakdown-num {
  width: 12px;
  text-align: right;
  font-size: 14px;
  color: #555;
}

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

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

.breakdown-count {
  width: 32px;
  text-align: right;
  font-size: 14px;
  color: #555;
}

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

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

/* Reviews Grid */
.reviews-grid {
  display: grid;
  gap: 12px;
  border-top: 1px solid #e5e5e5;
  padding: 32px 0;
}

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

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr 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;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

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

.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: #555;
}

.review-image-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  border: none;
  background: #f0f0f0;
  padding: 0;
  cursor: pointer;
}

.review-image-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px;
  animation: fadeIn 0.2s ease-out;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 50;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

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

.lightbox-img-wrap {
  width: 90vw;
  max-width: 700px;
  height: 80vh;
  position: relative;
  animation: scaleIn 0.2s ease-out;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

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

.footer-inner {
  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: 70px;
  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%;
  background: transparent;
  border: none;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
}

.footer-icon {
  font-size: 18px;
}

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

  .footer-icon {
    display: none;
  }
}

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

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

@media (min-width: 1024px) {
  .footer-content {
    max-height: none !important;
    overflow: visible !important;
    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;
  margin-bottom: 8px !important;
}

.whatsapp-link {
  color: #555;
  transition: color 0.2s;
}

.whatsapp-link:hover {
  color: #25D366;
}

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

.footer-hours {
  font-size: 12px !important;
  color: #888 !important;
}

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

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

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

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

.footer-email:focus {
  border-color: #D32F2F;
}

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

.footer-submit:hover {
  background: #222;
}

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

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

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

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

.social-icon:hover {
  background: #D32F2F;
}

.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 {
  height: 24px;
  width: 38px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #666;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  background: #f5f5f5;
}

.footer-bottom>div,
.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 8px;
  padding: 0 16px;
}

.footer-bottom p:first-child {
  padding-top: 20px;
}

.footer-bottom a {
  color: #888;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #25D366;
}

.copyright {
  font-size: 11px !important;
  color: #aaa !important;
  margin-top: 12px !important;
  padding-bottom: 20px !important;
}

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

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

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

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