/* ============================================
   BIOAGE - CSS Principal (Mobile-First)
   ============================================ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Solomon Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

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

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

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

/* Fontes locais */
@font-face {
  font-family: "Solomon Sans";
  src: url("../fonts/solomon_sans_regular.woff2") format("woff2"), url("../fonts/solomon_sans_regular.woff")
    format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Solomon Sans";
  src: url("../fonts/solomon_sans_semibold.woff2") format("woff2"), url("../fonts/solomon_sans_semibold.woff")
    format("woff");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Solomon Sans";
  src: url("../fonts/solomon_sans_bold.woff2") format("woff2"), url("../fonts/solomon_sans_bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

/* ============================================
   HEADER - Mobile First
   ============================================ */

.page-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Top Bar */
.header-top-bar {
  background: #003366;
  color: #fff;
  padding: 8px 12px;
  font-size: 12px;
}

.header-top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-tabs {
  display: none;
}

.header-info-slider {
  flex: 1;
  text-align: center;
  font-size: 11px;
}

.header-info-slider b {
  color: #ffd700;
}

.header-info-slider img {
  display: inline;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

.header-help {
  display: none;
}

.header-help a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.header-help img {
  width: 16px;
  height: 16px;
}

/* Main Header */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  gap: 10px;
}

.logo img {
  height: 35px;
}

.header-nav {
  display: none;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icons a img,
.header-icons button img {
  width: 22px;
  height: 22px;
}

.header-icons .cart-icon {
  width: 28px;
  height: 28px;
}

.search-toggle {
  background: none;
  border: none;
  padding: 5px;
}

.search-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px 12px;
  border-bottom: 1px solid #e0e0e0;
}

.search-box.active {
  display: block;
}

.search-box-inner {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 10px 15px;
}

.search-box input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
}

.search-box img {
  width: 20px;
  height: 20px;
}

/* Menu Mobile */
.menu-toggle {
  background: none;
  border: none;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #003366;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 200;
  padding: 20px;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  color: #003366;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:first-child {
  color: #e63946;
}

/* ============================================
   PRODUCT PAGE - Mobile First
   ============================================ */

.product-page {
  padding: 15px 12px;
}

/* Gallery */
.product-gallery {
  margin-bottom: 25px;
}

.gallery-main {
  position: relative;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  color: #003366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav.prev {
  left: 8px;
}
.gallery-nav.next {
  right: 8px;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.gallery-thumbs img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  object-fit: cover;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
  border-color: #003366;
}

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

.badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  background: #003366;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-discount {
  background: #e63946;
  animation: pulse 2s infinite;
}

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

.product-title {
  font-size: 22px;
  color: #003366;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-subtitle {
  color: #666;
  margin-bottom: 12px;
  font-size: 14px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.stars {
  color: #003366;
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-text {
  color: #666;
  font-size: 13px;
}

.rating-text a {
  color: #003366;
  text-decoration: underline;
}

.installments {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  background: #f8f9fa;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.installments img {
  width: 28px;
  height: auto;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

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

.price {
  font-size: 28px;
  color: #e63946;
  font-weight: 700;
}

/* Quantity & Buy */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #fff;
  font-size: 20px;
  color: #003366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:active {
  background: #f0f0f0;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  padding: 10px 5px;
  font-size: 16px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-buy {
  flex: 1;
  background: #003366;
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-buy:active {
  background: #002244;
}

/* Tags */
.product-tags {
  display: flex;
  gap: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.tag {
  background: #003366;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Description */
.product-description {
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.product-description p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

/* Benefits */
.benefits {
  margin: 25px 0;
}

.benefits h3 {
  color: #003366;
  font-size: 18px;
  margin-bottom: 15px;
}

.benefits ul {
  list-style: none;
}

.benefits li {
  padding: 10px 0;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.benefits li::before {
  content: "✓";
  color: #003366;
  font-weight: bold;
  flex-shrink: 0;
}

/* Specifications */
.specifications {
  margin: 25px 0;
}

.spec-row {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 4px;
}

.spec-label {
  font-weight: 600;
  color: #333;
  font-size: 13px;
}

.spec-value {
  color: #666;
  font-size: 14px;
}

/* ============================================
   KIT PRODUCTS - Mobile First
   ============================================ */

.kit-products {
  padding: 30px 12px;
  background: #f8f9fa;
}

.kit-products h2 {
  color: #003366;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.kit-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kit-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.kit-item-image {
  padding: 20px;
  background: #fff;
  text-align: center;
}

.kit-item-image img {
  max-height: 180px;
  margin: 0 auto;
  object-fit: contain;
}

.kit-item-info {
  padding: 20px;
}

.kit-item-info h3 {
  color: #003366;
  font-size: 16px;
  margin-bottom: 10px;
}

.kit-item-info > p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.kit-item-details {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.kit-item-details strong {
  color: #003366;
}

/* Kit Benefits */
.kit-benefits {
  padding: 40px 12px;
  background: #003366;
  color: #fff;
}

.kit-benefits h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 25px;
}

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

.benefit-item {
  text-align: center;
  padding: 20px 10px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-item h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.5;
}

/* ============================================
   TABS - Mobile First
   ============================================ */

.tabs {
  margin: 30px 0;
  padding: 0 12px;
}

.tab-nav {
  display: flex;
  overflow-x: auto;
  border-bottom: 3px solid #003366;
  -webkit-overflow-scrolling: touch;
  gap: 0;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 12px 16px;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  position: relative;
  flex-shrink: 0;
}

.tab-btn.active {
  color: #003366;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: #003366;
}

.tab-content {
  padding: 20px 0;
  display: none;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  margin-bottom: 12px;
}

/* ============================================
   FAQ - Mobile First
   ============================================ */

.faq {
  margin: 30px 0;
  padding: 0 12px;
}

.faq h3 {
  color: #003366;
  font-size: 18px;
  margin-bottom: 15px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  gap: 15px;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  color: #003366;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 0 15px;
  display: none;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================
   REVIEWS - Mobile First
   ============================================ */

.reviews {
  margin: 30px 0;
  padding: 0 12px;
}

.reviews h3 {
  color: #003366;
  font-size: 20px;
  margin-bottom: 20px;
}

.review-summary {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 25px;
}

.review-score {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.review-score .number {
  font-size: 42px;
  font-weight: 700;
  color: #003366;
}

.review-score .number span {
  font-size: 20px;
  font-weight: 400;
}

.review-score .stars {
  font-size: 22px;
  margin: 8px 0;
}

.review-score .count {
  color: #666;
  font-size: 13px;
}

.review-bars {
  flex: 1;
}

.review-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.review-bar-label {
  width: 70px;
  font-size: 13px;
  color: #666;
  flex-shrink: 0;
}

.review-bar-track {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: #003366;
  border-radius: 4px;
}

.review-bar-count {
  width: 20px;
  text-align: right;
  font-size: 13px;
  color: #666;
  flex-shrink: 0;
}

.review-item {
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 5px;
}

.review-author {
  font-weight: 600;
  font-size: 14px;
}

.review-date {
  color: #999;
  font-size: 13px;
}

.review-stars {
  margin-bottom: 10px;
}

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

/* ============================================
   FOOTER HIGHLIGHTS - Mobile First
   ============================================ */

.footer-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 30px 12px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.highlight {
  text-align: center;
  padding: 15px 10px;
  background: #f8f9fa;
  border-radius: 12px;
}

.highlight-icon {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.highlight-icon img {
  width: 36px;
  height: 36px;
}

.highlight-title {
  font-weight: 600;
  color: #333;
  font-size: 12px;
  margin-bottom: 4px;
}

.highlight-text {
  font-size: 11px;
  color: #666;
}

.highlight-text a {
  color: #003366;
}

/* ============================================
   FOOTER - Mobile First
   ============================================ */

.page-footer {
  background: #f8f8f8;
  padding: 40px 12px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-section h4 {
  color: #333;
  font-size: 15px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #666;
  font-size: 13px;
}

.footer-bottom-section {
  padding: 25px 0;
  border-top: 1px solid #ddd;
  margin-top: 30px;
}

.footer-bottom-section h6 {
  font-size: 13px;
  margin-bottom: 12px;
  color: #333;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.payment-methods img {
  height: 28px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a img {
  width: 36px;
  height: 36px;
}

.copyright {
  background: #505050;
  color: #fff;
  padding: 25px 12px;
  text-align: center;
}

.copyright h6 {
  margin-bottom: 12px;
  font-size: 14px;
}

.copyright p {
  font-size: 10px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ============================================
   SIDECART - Mobile First
   ============================================ */

.sidecart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.sidecart.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transition: visibility 0s linear 0s, opacity 0.3s ease;
}

.sidecart-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidecart.active .sidecart-overlay {
  opacity: 1;
}

.sidecart-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.sidecart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.sidecart-header h2 {
  font-size: 20px;
  color: #003366;
  font-weight: 700;
  margin: 0;
}

.sidecart-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sidecart-close:hover {
  color: #003366;
}

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

.sidecart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.sidecart-empty p {
  font-size: 16px;
  margin: 0;
}

.sidecart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidecart-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
}

.sidecart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

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

.sidecart-item-title {
  font-size: 14px;
  color: #003366;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.sidecart-item-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

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

.sidecart-price {
  font-size: 16px;
  color: #e63946;
  font-weight: 700;
}

.sidecart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  width: fit-content;
}

.sidecart-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  font-size: 18px;
  color: #003366;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sidecart-qty-btn:active {
  background: #f0f0f0;
}

.sidecart-qty-value {
  min-width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.sidecart-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.sidecart-item-remove:hover {
  color: #e63946;
}

.sidecart-footer {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  background: #fff;
}

.sidecart-summary {
  margin-bottom: 20px;
}

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

.sidecart-summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  border-top: 1px solid #e0e0e0;
  padding-top: 12px;
  margin-top: 8px;
}

.sidecart-checkout-btn {
  width: 100%;
  background: #003366;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}

.sidecart-checkout-btn:hover {
  background: #002244;
}

.sidecart-checkout-btn:active {
  background: #001a33;
}

.sidecart-continue {
  display: block;
  text-align: center;
  color: #003366;
  font-size: 14px;
  text-decoration: underline;
}

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

.header-icons .cart-toggle {
  position: relative;
}

.cart-count.hidden {
  display: none;
}

/* ============================================
   COOKIE BANNER - Mobile First
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 15px 12px;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.cookie-btn {
  background: #003366;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
}

/* ============================================
   DESKTOP STYLES (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {
  /* Header */
  .header-top-bar {
    padding: 8px 20px;
    font-size: 14px;
  }

  .header-tabs {
    display: flex;
    gap: 0;
  }

  .header-tabs a {
    padding: 8px 16px;
    border-radius: 20px 20px 0 0;
    color: #fff;
  }

  .header-tabs a.active {
    background: #fff;
    color: #003366;
  }

  .header-info-slider {
    font-size: 14px;
  }

  .header-info-slider img {
    width: 20px;
    height: 20px;
  }

  .header-help {
    display: block;
  }

  .header-main {
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .logo img {
    height: 45px;
  }

  .menu-toggle {
    display: none;
  }

  .header-nav {
    display: flex;
    gap: 25px;
  }

  .header-nav a {
    color: #003366;
    font-weight: 500;
    font-size: 14px;
  }

  .header-nav a:first-child {
    color: #e63946;
  }

  .search-toggle {
    display: none;
  }

  .search-box {
    display: flex;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
  }

  .search-box-inner {
    width: 220px;
  }

  .header-icons {
    gap: 18px;
  }

  .header-icons a img {
    width: 24px;
    height: 24px;
  }

  .header-icons .cart-icon {
    width: 32px;
    height: 32px;
  }

  /* Product Page */
  .product-page {
    display: flex;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    gap: 40px;
  }

  .product-gallery {
    flex: 1;
    max-width: 550px;
    margin-bottom: 0;
  }

  .gallery-thumbs img {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }

  .product-info {
    flex: 1;
  }

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

  .price {
    font-size: 32px;
  }

  .btn-buy {
    font-size: 15px;
    padding: 16px 30px;
  }

  .spec-row {
    flex-direction: row;
    gap: 0;
  }

  .spec-label {
    width: 140px;
    flex-shrink: 0;
  }

  /* Tabs */
  .tabs {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
  }

  .tab-btn {
    padding: 15px 25px;
    font-size: 14px;
  }

  /* FAQ */
  .faq {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
  }

  /* Reviews */
  .reviews {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
  }

  .review-summary {
    flex-direction: row;
    gap: 40px;
  }

  .review-score {
    min-width: 200px;
  }

  /* Kit Products Desktop */
  .kit-products {
    padding: 50px 20px;
  }

  .kit-products h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .kit-grid {
    max-width: 1200px;
    margin: 0 auto;
  }

  .kit-item {
    display: flex;
    align-items: stretch;
  }

  .kit-item-image {
    width: 250px;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .kit-item-image img {
    max-height: 200px;
  }

  .kit-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .kit-item-info h3 {
    font-size: 18px;
  }

  /* Kit Benefits Desktop */
  .kit-benefits {
    padding: 60px 20px;
  }

  .kit-benefits h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .benefits-grid {
    max-width: 1000px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-item h4 {
    font-size: 16px;
  }

  .benefit-item p {
    font-size: 13px;
  }

  /* Footer Highlights */
  .footer-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .highlight {
    flex: 1;
    max-width: 250px;
    padding: 25px 20px;
  }

  .highlight-icon img {
    width: 45px;
    height: 45px;
  }

  .highlight-title {
    font-size: 14px;
  }

  .highlight-text {
    font-size: 13px;
  }

  /* Footer */
  .page-footer {
    padding: 50px 20px 0;
  }

  .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer-bottom-section {
    max-width: 1400px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .payment-methods {
    margin-bottom: 0;
  }

  .copyright {
    padding: 30px 20px;
  }

  .copyright p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 11px;
  }

  /* Cookie Banner */
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
  }

  .cookie-text {
    flex: 1;
    font-size: 13px;
  }

  .cookie-btn {
    width: auto;
    padding: 12px 35px;
  }
}

/* ============================================
   LARGE DESKTOP (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {
  .header-nav {
    gap: 30px;
  }

  .search-box-inner {
    width: 280px;
  }

  .product-page {
    gap: 60px;
  }

  .sidecart-content {
    max-width: 480px;
  }
}
