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

/* Favicon Round Style */
link[rel="icon"] {
  border-radius: 50% !important;
  overflow: hidden;
}

:root {
  --red-dark: #8B0000;
  --red: #C8102E;
  --black: #000000;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #666666;
  --gray-dark: #333333;
  --border: #E0E0E0;
  --text-color: #333;
  --text-light: #666;
  --success: #27ae60;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
}

* {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Promotional Banner */
.promo-banner {
  background: #711325;
  color: var(--white);
  padding: 18px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.promo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.promo-banner a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
}

.promo-banner a:hover {
  opacity: 0.9;
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 20px 20px 20px;
  max-width: 100%;
  margin: 0;
  gap: 40px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  height: 30px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  flex: 1;
  justify-content: flex-start;
  margin: 0;
}

.nav-link {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  padding: 5px 0;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.saldos {
  color: var(--red);
  font-weight: 400;
}

.nav-link.saldos::after {
  background: var(--red);
}

.nav-link.saldos:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.nav-link.turbo {
  color: #27ae60;
  font-weight: 400;
}

.nav-link.turbo::after {
  background: #27ae60;
}

.nav-link.turbo:hover {
  color: #229954;
  transform: translateY(-2px);
}

.nav-link.turbo:hover::after {
  background: #229954;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.3s;
  white-space: nowrap;
}

.header-action:hover {
  color: var(--red);
}

.header-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.cart-icon {
  position: relative;
}

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

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray);
}

.breadcrumbs a {
  color: var(--gray);
  text-decoration: none;
}

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

.breadcrumbs span {
  color: var(--black);
}

/* Product Page */
.product-page {
  padding: 40px 0;
  background: var(--white);
}

.product-container {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.gallery-main {
  width: 100%;
  margin-bottom: 10px;
}

.gallery-image {
  width: 100%;
  height: auto;
  min-height: 700px;
  max-height: 900px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  cursor: zoom-in;
  transition: transform 0.3s;
  background: var(--white);
}

.gallery-main {
  width: 100%;
}

.gallery-image:hover {
  opacity: 0.95;
}

.gallery-thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.gallery-thumbnail {
  width: 300px;
  height: auto;
  min-height: 300px;
  max-height: 380px;
  object-fit: contain;
  border-radius: 4px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  background: var(--white);
  display: block;
}

.gallery-thumbnail:hover {
  border-color: var(--black);
  transform: scale(1.05);
}

.gallery-thumbnail.active {
  border-color: var(--black);
  border-width: 3px;
}

.product-tags {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.product-tag {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-zoom {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.gallery-zoom:hover {
  background: var(--white);
}

/* Image Zoom Modal */
.image-zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.image-zoom-modal.active {
  display: flex;
  pointer-events: all;
}

.image-zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  z-index: 10002;
}

.image-zoom-content {
  position: relative;
  z-index: 10003;
  width: 90%;
  max-width: 1400px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomFadeIn 0.3s ease-out;
}

@keyframes zoomFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.image-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 40px;
  position: relative;
}

.image-zoom-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--border);
  color: var(--gray-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10004;
  flex-shrink: 0;
}

.image-zoom-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

.image-zoom-close:active {
  transform: scale(0.95);
}

.image-zoom-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* Product Info */
.product-info {
  padding: 20px 0;
}

.product-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.4;
}

.product-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.rating-stars-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  line-height: 1;
  width: fit-content;
  height: 22px;
}

.rating-stars-empty {
  display: flex;
  gap: 3px;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.rating-stars-empty::before {
  content: '★★★★★';
  display: inline-block;
  color: #E0E0E0;
  font-size: 22px;
  letter-spacing: 3px;
}

.rating-stars-empty .star {
  display: none;
}

.rating-stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  color: #FFA500;
  overflow: hidden;
  white-space: nowrap;
  z-index: 2;
  display: flex;
  gap: 3px;
}

.rating-stars-filled::before {
  content: '★★★★★';
  display: inline-block;
  color: #FFA500;
}

.rating-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.rating-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.rating-count {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

.rating-link {
  font-size: 13px;
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  margin-left: auto;
  padding: 4px 12px;
  border: 1px solid var(--red);
  border-radius: 4px;
  background: transparent;
}

.rating-link:hover {
  color: var(--white);
  background: var(--red);
  text-decoration: none;
}

@media (max-width: 768px) {
  .product-rating {
    padding: 12px 0;
    margin-bottom: 20px;
  }

  .rating-stars-container {
    font-size: 18px;
    height: 18px;
  }

  .rating-stars-empty::before {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .rating-number {
    font-size: 20px;
  }

  .rating-count {
    font-size: 13px;
  }

  .rating-link {
    font-size: 12px;
    padding: 3px 10px;
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

/* Price Section */
.product-price {
  margin-bottom: 25px;
}

.price-old {
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 10px;
}

.price-current {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-right: 10px;
}

.discount-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
}

.price-installment {
  font-size: 14px;
  color: var(--gray);
  margin-top: 5px;
}

/* Color Selection */
.color-section {
  margin-bottom: 25px;
}

.color-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.color-selected {
  font-weight: 600;
  color: var(--black);
}

.size-selected {
  font-weight: 600;
  color: var(--black);
}

.color-code {
  color: var(--gray);
  font-size: 12px;
  font-weight: 400;
}

.color-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.color-swatch:hover {
  border-color: var(--black);
  transform: scale(1.1);
}

.color-swatch.selected {
  border-color: var(--black);
  border-width: 3px;
}

.color-swatch.selected::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.more-colors {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
}

.more-colors:hover {
  color: var(--black);
  text-decoration: underline;
}

/* Kit Item Selection */
.kit-item-selection {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.kit-item-selection:last-of-type {
  border-bottom: none;
}

.kit-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 15px;
}

.color-selected,
.size-selected {
  font-weight: 600;
  color: var(--black);
}

/* Size Selection */
.size-section {
  margin-bottom: 25px;
}

.size-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.size-option {
  min-width: 50px;
  padding: 10px 15px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

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

.size-option.selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.size-option.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-guide-link {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.size-guide-link:hover {
  color: var(--black);
  text-decoration: underline;
}

/* Size Guide Modal */
.size-guide-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
  pointer-events: none;
}

.size-guide-modal.active {
  display: flex;
  pointer-events: all;
}

.size-guide-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.size-guide-content {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  margin: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.size-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.size-guide-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.size-guide-close {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s;
  border-radius: 4px;
}

.size-guide-close:hover {
  color: var(--black);
  background: var(--gray-light);
}

.size-guide-close svg {
  width: 20px;
  height: 20px;
}

.size-guide-body {
  padding: 25px;
  overflow-y: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.size-table thead {
  background: var(--black);
  color: var(--white);
}

.size-table th {
  padding: 12px 15px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.size-table tbody tr:hover {
  background: var(--gray-light);
}

.size-table tbody tr:last-child {
  border-bottom: none;
}

.size-table td {
  padding: 12px 15px;
  font-size: 14px;
  color: var(--gray-dark);
}

.size-table-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .size-guide-content {
    width: 95%;
    max-height: 90vh;
    margin: 10px;
  }
  
  .size-guide-header {
    padding: 15px 20px;
  }
  
  .size-guide-title {
    font-size: 18px;
  }

  .size-guide-close {
    width: 36px;
    height: 36px;
  }

  .size-guide-close svg {
    width: 18px;
    height: 18px;
  }
  
  .size-guide-body {
    padding: 15px;
    max-height: calc(90vh - 80px);
  }
  
  .size-table {
    font-size: 12px;
  }

  .size-table th,
  .size-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .size-table-note {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .size-guide-content {
    width: 98%;
    max-height: 95vh;
    margin: 5px;
  }

  .size-guide-header {
    padding: 12px 15px;
  }

  .size-guide-title {
    font-size: 16px;
  }

  .size-guide-body {
    padding: 12px;
  }

  .size-table th,
  .size-table td {
    padding: 6px 8px;
    font-size: 11px;
  }
}

/* Quantity */
.quantity-section {
  margin-bottom: 25px;
}

.quantity-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.quantity-btn:hover {
  background: var(--gray-light);
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
  background: var(--gray-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Trust Info */
.trust-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 15px;
  width: 100%;
}

.trust-bar {
  width: 100%;
  height: 4px;
  background: #27ae60;
  margin-bottom: 20px;
  border-radius: 2px;
}

.trust-items-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}

.trust-item svg {
  color: var(--black);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: block;
}

.trust-item svg path[fill="currentColor"] {
  fill: var(--black);
}

.trust-item svg path[fill="black"] {
  fill: var(--black);
}

.trust-item svg path[fill="white"] {
  fill: var(--white);
}

.trust-item span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-dark);
  text-align: center;
  line-height: 1.4;
}

.shipping-info-text {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
  margin: 0;
  text-align: center;
  font-weight: 400;
}

/* Cart Sidebar */
.cart-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  pointer-events: none;
}

.cart-sidebar.active {
  display: block;
  pointer-events: all;
}

.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.cart-sidebar-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow: hidden;
}

.cart-sidebar.active .cart-sidebar-content {
  transform: translateX(0);
}

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.cart-sidebar-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 5px 0;
}

.cart-sidebar-count {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.cart-sidebar-close {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

.cart-sidebar-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.cart-sidebar-close:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: scale(1.1);
}

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart-sidebar {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.empty-cart-sidebar p {
  margin: 10px 0;
  font-size: 16px;
}

.cart-item-sidebar {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

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

.cart-item-image-sidebar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

.cart-item-name-sidebar {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.4;
}

.cart-item-variant-sidebar {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.cart-item-price-sidebar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cart-item-price-old-sidebar {
  font-size: 12px;
  color: var(--gray);
  text-decoration: line-through;
}

.cart-item-price-new-sidebar {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.cart-item-discount-sidebar {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
}

.cart-item-actions-sidebar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.cart-item-qty-sidebar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px;
}

.cart-item-qty-btn-sidebar {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  font-size: 16px;
  transition: background 0.3s;
}

.cart-item-qty-btn-sidebar:hover {
  background: var(--gray-light);
}

.cart-item-qty-value-sidebar {
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove-sidebar {
  background: none;
  border: none;
  color: var(--red);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity 0.3s;
}

.cart-item-remove-sidebar:hover {
  opacity: 0.7;
}

.cart-sidebar-footer {
  border-top: 1px solid var(--border);
  padding: 20px;
  background: var(--white);
  position: sticky;
  bottom: 0;
}

.cart-summary-sidebar {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.summary-row.discount {
  color: var(--red);
}

.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.checkout-btn-sidebar {
  width: 100%;
  padding: 16px;
  background: #27ae60;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Poppins', sans-serif;
}

.checkout-btn-sidebar:hover {
  background: #229954;
}

.checkout-btn-sidebar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .cart-sidebar-content {
    max-width: 100%;
  }
}

/* Delivery styles moved to components/delivery/delivery.css */

/* Product Description */
.product-description {
  margin-bottom: 20px;
}

.description-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--black);
}

.description-text {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}

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

.style-tips {
  margin-top: 20px;
}

.read-more {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.read-more:hover {
  color: var(--black);
  text-decoration: underline;
}

/* Share Section */
.share-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.share-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.share-icon:hover {
  background: var(--black);
  color: var(--white);
}

/* Reviews Section */
/* Reviews styles moved to components/reviews/reviews.css */

/* Cart Sidebar */
.cart-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  pointer-events: none;
}

.cart-sidebar.active {
  display: block;
  pointer-events: all;
}

.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.cart-sidebar-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow: hidden;
}

.cart-sidebar.active .cart-sidebar-content {
  transform: translateX(0);
}

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.cart-sidebar-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 5px 0;
}

.cart-sidebar-count {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.cart-sidebar-close {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

.cart-sidebar-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.cart-sidebar-close:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: scale(1.1);
}

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart-sidebar {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.empty-cart-sidebar p {
  margin: 10px 0;
  font-size: 16px;
}

.cart-item-sidebar {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

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

.cart-item-image-sidebar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

.cart-item-name-sidebar {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.4;
}

.cart-item-variant-sidebar {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.cart-item-price-sidebar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cart-item-price-old-sidebar {
  font-size: 12px;
  color: var(--gray);
  text-decoration: line-through;
}

.cart-item-price-new-sidebar {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.cart-item-discount-sidebar {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
}

.cart-item-actions-sidebar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.cart-item-qty-sidebar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px;
}

.cart-item-qty-btn-sidebar {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  font-size: 16px;
  transition: background 0.3s;
}

.cart-item-qty-btn-sidebar:hover {
  background: var(--gray-light);
}

.cart-item-qty-value-sidebar {
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove-sidebar {
  background: none;
  border: none;
  color: var(--red);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity 0.3s;
}

.cart-item-remove-sidebar:hover {
  opacity: 0.7;
}

.cart-sidebar-footer {
  border-top: 1px solid var(--border);
  padding: 20px;
  background: var(--white);
  position: sticky;
  bottom: 0;
}

.cart-summary-sidebar {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.summary-row.discount {
  color: var(--red);
}

.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.checkout-btn-sidebar {
  width: 100%;
  padding: 16px;
  background: #27ae60;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Poppins', sans-serif;
}

.checkout-btn-sidebar:hover {
  background: #229954;
}

.checkout-btn-sidebar:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .cart-sidebar-content {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 968px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .reviews-summary {
    position: static;
  }
  
  .reviews-filters {
    flex-direction: column;
  }
  
  .filter-select {
    width: 100%;
  }

  .reviews-modal-content {
    width: 95%;
    margin: 20px auto;
    max-height: 95vh;
  }

  .reviews-modal-header {
    padding: 20px;
  }

  .reviews-modal-title {
    font-size: 22px;
  }

  .reviews-modal-body {
    padding: 20px;
  }

  .cart-sidebar-content {
    max-width: 100%;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }
  
  .gallery-image {
    min-height: 500px;
    max-height: 700px;
  }
  
  /* Navegação oculta no mobile */
  .header-nav {
    display: none !important;
  }
}

/* ============================================
   MOBILE RESPONSIVE - 768px e abaixo
   ============================================ */
@media (max-width: 768px) {
  /* Container geral */
  .container {
    padding: 0 15px;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    padding: 10px 15px;
    font-size: 11px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* Product Page */
  .product-page {
    padding: 15px 0;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
    max-width: 100%;
  }

  /* Product Gallery */
  .product-gallery {
    width: 100%;
    margin-bottom: 0;
  }

  .gallery-image {
    min-height: 320px;
    max-height: 450px;
    width: 100%;
    object-fit: contain;
  }

  .gallery-zoom {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
  }

  .gallery-zoom svg {
    width: 18px;
    height: 18px;
  }

  /* Image Zoom Modal Mobile */
  .image-zoom-content {
    width: 95%;
    height: 95vh;
    padding: 50px 20px 20px;
  }

  .image-zoom-close {
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
  }

  .image-zoom-close svg {
    width: 20px;
    height: 20px;
  }

  .image-zoom-container {
    padding: 50px 20px 20px;
  }

  .product-tags {
    top: 12px;
    left: 12px;
    gap: 6px;
  }

  .product-tag {
    padding: 6px 12px;
    font-size: 10px;
  }

  /* Product Info */
  .product-info {
    padding: 0;
    width: 100%;
  }

  .product-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 500;
  }

  /* Rating */
  .product-rating {
    padding: 10px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
  }

  .rating-stars-container {
    font-size: 18px;
    height: 18px;
    margin-bottom: 8px;
  }

  .rating-info {
    flex-wrap: wrap;
    gap: 8px;
  }

  .rating-number {
    font-size: 20px;
  }

  .rating-count {
    font-size: 13px;
  }

  .rating-link {
    font-size: 12px;
    padding: 4px 10px;
    margin-left: 0;
    width: auto;
  }

  /* Price */
  .product-price {
    margin-bottom: 18px;
  }

  .price-old {
    font-size: 14px;
  }

  .price-current {
    font-size: 28px;
    font-weight: 700;
  }

  /* Kit Selection */
  .kit-item-selection {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
  }

  .kit-item-title {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
  }

  .color-section,
  .size-section {
    margin-bottom: 18px;
  }

  .color-section:last-child,
  .size-section:last-child {
    margin-bottom: 0;
  }

  .color-label,
  .size-label {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
    display: block;
  }

  .color-swatches {
    gap: 12px;
    flex-wrap: wrap;
  }

  .color-swatch {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
  }

  .color-swatch.selected {
    border-color: var(--black);
    border-width: 3px;
  }

  .size-options {
    gap: 10px;
    flex-wrap: wrap;
  }

  .size-option {
    min-width: 48px;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
  }

  .size-option.selected {
    border-color: var(--black);
    border-width: 2px;
  }

  /* Quantity */
  .quantity-section {
    margin-bottom: 18px;
  }

  .quantity-label {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .quantity-selector {
    border: 1px solid var(--border);
    border-radius: 6px;
  }

  .quantity-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .quantity-input {
    width: 60px;
    height: 42px;
    font-size: 16px;
  }

  /* Add to Cart Button */
  .add-to-cart-btn {
    padding: 16px 20px;
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    border-radius: 6px;
  }

  /* Trust Info */
  .trust-info {
    padding: 16px;
    margin-bottom: 20px;
    background: var(--gray-light);
    border-radius: 8px;
  }

  .trust-bar {
    height: 3px;
    margin-bottom: 16px;
  }

  .trust-items-row {
    flex-direction: column;
    gap: 12px;
  }

  .trust-item {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 6px;
    align-items: center;
  }

  .trust-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .trust-item-text {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
  }

  /* Delivery Section */
  .delivery-section {
    padding: 16px;
    margin-bottom: 20px;
    background: var(--gray-light);
    border-radius: 8px;
  }

  .delivery-label {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .delivery-input {
    font-size: 15px;
    padding: 14px;
    margin-bottom: 8px;
    border-radius: 6px;
    border: 1px solid var(--border);
  }

  .delivery-link {
    font-size: 13px;
  }

  .shipping-info-text {
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.6;
  }

  /* Product Description */
  .product-description {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .description-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .description-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-dark);
  }

  /* Size Guide Button */
  .size-guide-btn {
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 6px;
  }

  /* Cart Sidebar */
  .cart-sidebar {
    width: 100%;
  }

  .cart-sidebar-content {
    padding: 20px 15px;
  }

  .cart-item-sidebar {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
  }

  .cart-item-info-sidebar {
    gap: 12px;
  }

  .cart-item-title-sidebar {
    font-size: 14px;
    line-height: 1.4;
  }

  .cart-item-price-new-sidebar {
    font-size: 15px;
  }

  .cart-sidebar-footer {
    padding: 18px 15px;
  }

  .summary-row {
    font-size: 14px;
    padding: 8px 0;
  }

  .summary-row.total {
    font-size: 18px;
    padding-top: 12px;
  }

  .checkout-btn-sidebar {
    padding: 16px;
    font-size: 15px;
    border-radius: 6px;
  }
}

/* ============================================
   SMALL MOBILE - 480px e abaixo
   ============================================ */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 12px;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    padding: 8px 12px;
    font-size: 10px;
  }

  /* Product Page */
  .product-page {
    padding: 12px 0;
  }

  .product-container {
    padding: 0 12px;
    gap: 20px;
  }

  /* Gallery */
  .gallery-image {
    min-height: 280px;
    max-height: 400px;
  }

  .product-tags {
    top: 10px;
    left: 10px;
    gap: 5px;
  }

  .product-tag {
    padding: 5px 10px;
    font-size: 9px;
  }

  .gallery-zoom {
    width: 36px;
    height: 36px;
    top: 10px;
    right: 10px;
  }

  .gallery-zoom svg {
    width: 16px;
    height: 16px;
  }

  /* Image Zoom Modal Small Mobile */
  .image-zoom-content {
    width: 98%;
    height: 98vh;
    padding: 45px 15px 15px;
  }

  .image-zoom-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .image-zoom-close svg {
    width: 18px;
    height: 18px;
  }

  .image-zoom-container {
    padding: 45px 15px 15px;
  }

  /* Product Info */
  .product-title {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  /* Rating */
  .product-rating {
    padding: 8px 0;
    margin-bottom: 12px;
  }

  .rating-stars-container {
    font-size: 16px;
    height: 16px;
  }

  .rating-number {
    font-size: 18px;
  }

  .rating-count {
    font-size: 12px;
  }

  .rating-link {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* Price */
  .product-price {
    margin-bottom: 15px;
  }

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

  .price-old {
    font-size: 13px;
  }

  /* Kit Selection */
  .kit-item-selection {
    padding: 14px;
    margin-bottom: 18px;
  }

  .kit-item-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .color-label,
  .size-label {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .color-swatches {
    gap: 10px;
  }

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

  .size-options {
    gap: 8px;
  }

  .size-option {
    min-width: 44px;
    height: 44px;
    font-size: 13px;
  }

  /* Quantity */
  .quantity-section {
    margin-bottom: 15px;
  }

  .quantity-label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .quantity-btn {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .quantity-input {
    width: 55px;
    height: 40px;
    font-size: 15px;
  }

  /* Buttons */
  .add-to-cart-btn {
    padding: 15px 18px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* Trust Info */
  .trust-info {
    padding: 14px;
    margin-bottom: 18px;
  }

  .trust-bar {
    height: 2px;
    margin-bottom: 12px;
  }

  .trust-items-row {
    gap: 10px;
  }

  .trust-item {
    padding: 10px;
    gap: 10px;
  }

  .trust-item svg {
    width: 20px;
    height: 20px;
  }

  .trust-item-text {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Delivery */
  .delivery-section {
    padding: 14px;
    margin-bottom: 18px;
  }

  .delivery-label {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .delivery-input {
    padding: 12px;
    font-size: 14px;
  }

  .delivery-link {
    font-size: 12px;
  }

  .shipping-info-text {
    font-size: 12px;
    margin-top: 10px;
  }

  /* Description */
  .product-description {
    padding: 16px 12px;
    margin-bottom: 18px;
  }

  .description-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .description-text {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Size Guide */
  .size-guide-btn {
    font-size: 12px;
    padding: 9px 14px;
  }

  /* Cart Sidebar */
  .cart-sidebar-content {
    padding: 18px 12px;
  }

  .cart-item-sidebar {
    padding: 12px;
    margin-bottom: 12px;
  }

  .cart-item-title-sidebar {
    font-size: 13px;
  }

  .cart-item-price-new-sidebar {
    font-size: 14px;
  }

  .cart-sidebar-footer {
    padding: 15px 12px;
  }

  .summary-row {
    font-size: 13px;
  }

  .summary-row.total {
    font-size: 17px;
  }

  .checkout-btn-sidebar {
    padding: 15px;
    font-size: 14px;
  }
}

/* ============================================
   TABLET - 968px e abaixo
   ============================================ */
@media (max-width: 968px) {
  .product-container {
    gap: 50px;
    padding: 0 30px;
  }

  .gallery-image {
    min-height: 500px;
    max-height: 700px;
  }

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

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

/* Footer styles moved to footer/footer.css */
.main-footer {
  margin-top: 60px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.whatsapp-button:hover {
  background: #20BA5A;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.whatsapp-button:active {
  transform: translateY(0);
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-text {
  white-space: nowrap;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button {
    padding: 12px 18px;
    font-size: 14px;
    gap: 8px;
  }

  .whatsapp-button svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 12px;
    right: 12px;
  }

  .whatsapp-button {
    width: 52px;
    height: 52px;
  }

  .whatsapp-button svg {
    width: 20px;
    height: 20px;
  }
}


a.checkout-btn-sidebar {
  text-decoration: none;
  display: block;
  text-align: center;
}
