/* =========================================================
   FNAC Clone Stylesheet
   Pixel-perfect Recreation of FNAC Portugal (fnac.pt)
   ========================================================= */

:root {
  --fnac-yellow: #e89d0c;
  --fnac-yellow-hover: #d68f08;
  --fnac-search-btn: #f19c00;
  --fnac-search-btn-hover: #e59300;
  --fnac-dark: #191919;
  --fnac-text-gray: #4d4d4d;
  --fnac-border-gray: #e6e6e6;
  --fnac-bg-input: #f4f4f4;
  
  /* Promo Tab Colors */
  --tab-livros: #00563f;
  --tab-cartao: #ffea00;
  --tab-aulas: #217b38;
  --tab-deals-icon: #0077d7;
  --tab-manuais-icon: #217b38;
  
  --header-max-width: 1380px;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--fnac-dark);
  background-color: #f7f7f7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--header-max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Top Dark Strip */
.top-black-bar {
  height: 3px;
  background-color: #262626;
  width: 100%;
}

/* =========================================================
   HEADER SECTION
   ========================================================= */
.fnac-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e2e2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 100;
}

/* 1. Utility Bar (Top) */
.utility-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 4px 0;
}

.utility-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left .brand-motto {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.utility-left .brand-motto:hover {
  opacity: 0.75;
}

.utility-left .motto-icon {
  font-size: 9px;
  color: #444;
}

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

.utility-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #444;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}

.utility-link i {
  font-size: 11px;
  color: #555;
}

.utility-link:hover {
  color: #000;
  text-decoration: underline;
}

.utility-link.static-text {
  cursor: default;
  color: #444;
  font-weight: 500;
}

.utility-link.static-text:hover {
  text-decoration: none;
  color: #444;
}

/* 2. Main Navigation Bar (Logo, Search, Actions) */
.main-bar {
  padding: 10px 0;
  background-color: #ffffff;
  width: 100%;
}

.main-content {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  width: 100% !important;
}

.fnac-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.fnac-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

.search-container {
  flex: 1;
  max-width: 700px;
  min-width: 200px;
}

.search-form {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 3px;
  height: 38px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-form:focus-within {
  background-color: #ffffff;
  border-color: #e89d0c;
  box-shadow: 0 0 0 2px rgba(232, 157, 12, 0.18);
}

.search-input {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 14px;
  font-size: 13px;
  font-family: inherit;
  font-style: italic;
  color: #222;
  outline: none;
}

.search-input::placeholder {
  color: #999;
  font-style: italic;
  font-size: 13px;
}

.search-btn {
  width: 42px;
  height: 100%;
  border: none;
  background-color: #e89d0c;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.18s;
  flex-shrink: 0;
}

.search-btn:hover {
  background-color: #d68f08;
}

.user-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 20px !important;
  flex-shrink: 0 !important;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s;
}

.action-svg-icon {
  width: 20px;
  height: 20px;
  stroke: #222;
  flex-shrink: 0;
  transition: stroke 0.15s;
}

.action-item:hover {
  color: #e89d0c;
}

.action-item:hover .action-svg-icon {
  stroke: #e89d0c;
}

.action-text {
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0;
}

/* Avatar circular do utilizador logado */
#headerUserAvatar {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #555 !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}



/* 3. Promo & Category Bar */
.promo-bar {
  background-color: #ffffff;
  padding-top: 2px;
}

.promo-content {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
}

.outlet-category {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.outlet-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #333333;
  display: inline-flex;
  align-items: center;
  height: 100%;
  transition: color 0.15s;
  white-space: nowrap;
}

.outlet-link:hover {
  color: #000000;
  text-decoration: underline;
}

.promo-tabs {
  display: flex;
  align-items: stretch;
  height: 36px;
  flex: 1;
}

.promo-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
  transition: filter 0.15s, background-color 0.15s;
  white-space: nowrap;
}

.promo-tab:hover {
  filter: brightness(0.92);
}

.tab-icon {
  font-size: 13px;
}

.tab-livros {
  background-color: var(--tab-livros);
  color: #ffffff;
}

.tab-cartao {
  background-color: var(--tab-cartao);
  color: #000000;
}

.tab-aulas {
  background-color: var(--tab-aulas);
  color: #ffffff;
}

.tab-deals {
  background-color: #ffffff;
  color: #111111;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}

.deals-icon {
  color: var(--tab-deals-icon);
  font-size: 13px;
}

.tab-manuais {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #e0e0e0;
}

.manuais-icon {
  color: var(--tab-manuais-icon);
  font-size: 13px;
}

/* =========================================================
   BODY CONTENT: 1. ROTATIVE BANNERS CAROUSEL
   ========================================================= */
.banner-carousel-section {
  background-color: #f7f7f7;
  padding-top: 12px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: #000;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.slide-link {
  display: block;
  width: 100%;
  position: relative;
  line-height: 0;
}

.banner-img {
  width: 100%;
  height: auto;
  max-height: 270px;
  object-fit: cover;
  display: block;
}

/* CTA button inside Banner 1 */
.banner-cta-overlay {
  position: absolute;
  left: 24.5%;
  bottom: 16%;
  transform: translateX(-50%);
  background-color: rgba(33, 123, 56, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: normal;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slide-link:hover .banner-cta-overlay {
  background-color: rgba(24, 98, 44, 0.95);
  border-color: #ffffff;
  transform: translateX(-50%) scale(1.03);
}

/* Controls: Next / Prev buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.65);
  color: #ffffff;
  border: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s, transform 0.15s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%) scale(1.08);
}

.prev-btn {
  left: 12px;
}

.next-btn {
  right: 12px;
}

/* Dots indicator */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 10;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.dot.active {
  background-color: #f19c00;
  width: 8px;
  height: 8px;
}

/* =========================================================
   BODY CONTENT: 2. VALUE PROPOSITIONS (ROW DE 4 ELEMENTOS)
   ========================================================= */
.benefits-section {
  background-color: #ffffff;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  margin-top: 12px;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 14px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 2px 14px;
  border-right: 1px solid #e8e8e8;
  text-decoration: none;
  transition: opacity 0.15s;
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-item:hover {
  opacity: 0.75;
}

.benefit-icon {
  color: #e89d0c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.benefit-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #222222;
  line-height: 1.25;
}

/* =========================================================
   BODY CONTENT: 3. PRODUCTS SHOWCASE (5 SLOTS & BANNER)
   ========================================================= */
.products-showcase-section {
  padding: 28px 0 24px 0;
}

.section-header {
  margin-bottom: 16px;
}

.section-title {
  font-size: 19px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/* 5 Columns Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.product-card-slot {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.22s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.product-card-slot:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: #d8d8d8;
}

.product-badge-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
  min-height: 22px;
}

.product-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.product-badge.discount {
  background-color: #e60028;
  color: #ffffff;
}

.product-badge.highlight {
  background-color: #f19c00;
  color: #ffffff;
}

.product-badge.special {
  background-color: #00563f;
  color: #ffffff;
}

.product-wishlist-btn {
  background: none;
  border: none;
  font-size: 15px;
  color: #888888;
  cursor: pointer;
  padding: 2px;
  transition: color 0.15s, transform 0.15s;
}

.product-wishlist-btn:hover {
  color: #e60028;
  transform: scale(1.15);
}

/* Image Container */
.product-image-container {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 8px;
  position: relative;
  overflow: hidden;
}

.product-img-real {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.product-card-slot:hover .product-img-real {
  transform: scale(1.06);
}

.product-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #8c8c8c;
}

.placeholder-icon {
  font-size: 30px;
  color: #b0b0b0;
}

.placeholder-tag {
  font-size: 11px;
  font-weight: 600;
  color: #737373;
  background: #ebebeb;
  padding: 2px 8px;
  border-radius: 3px;
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 11px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-title {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  line-height: 1.35;
  margin-bottom: 6px;
  min-height: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 11px;
}

.product-rating .stars {
  color: #f19c00;
  display: flex;
  gap: 2px;
  font-size: 10.5px;
}

.rating-count {
  color: #777777;
}

/* Price Box */
.product-price-box {
  margin-top: auto;
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.current-price {
  font-size: 18px;
  font-weight: 800;
  color: #222222;
}

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

.aderente-tag {
  font-size: 11px;
  font-weight: 700;
  color: #c47600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.aderente-tag i {
  font-size: 10px;
}

/* Add to cart button */
.add-to-cart-btn {
  width: 100%;
  height: 36px;
  background-color: #ffffff;
  border: 1.5px solid var(--fnac-dark);
  color: var(--fnac-dark);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
  background-color: var(--fnac-dark);
  color: #ffffff;
}

/* Sub Promo Banner (Packs FNAC Informática) */
.sub-promo-banner-container {
  margin-top: 24px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  line-height: 0;
}

.sub-promo-banner-link {
  display: block;
  width: 100%;
}

.sub-promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================================================
   BODY CONTENT: 4. CONSELHOS DOS NOSSOS EXPERTS (3 CARDS)
   ========================================================= */
.expert-advice-section {
  padding: 10px 0 36px 0;
}

.expert-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.expert-card {
  background-color: #1f1f1f;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.expert-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.expert-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #111111;
  position: relative;
}

.expert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.expert-card:hover .expert-img {
  transform: scale(1.03);
}

.expert-content {
  padding: 20px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #1f1f1f;
}

.expert-tag {
  font-size: 11px;
  font-weight: 700;
  color: #f19c00;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.expert-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 12px;
  min-height: 44px;
}

.expert-title u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.expert-description {
  font-size: 12.5px;
  color: #b8b8b8;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.expert-read-more {
  margin-top: auto;
  align-self: flex-end;
  font-size: 12px;
  font-weight: 700;
  color: #f19c00;
  transition: color 0.15s;
}

.expert-card:hover .expert-read-more {
  color: #ffb833;
  text-decoration: underline;
}

/* =========================================================
   BODY CONTENT: 5. SERVICES & GUARANTEES (5 ITENS)
   ========================================================= */
.services-guarantees-section {
  background-color: #ffffff;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 32px 0 28px 0;
}

.services-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: flex-start;
  text-align: center;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2b2b2b;
  padding: 0 10px;
  transition: transform 0.15s, color 0.15s;
}

.guarantee-item:hover {
  color: #000000;
  transform: translateY(-2px);
}

.guarantee-icon {
  color: #262626;
  margin-bottom: 10px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.expert-tilted-square {
  width: 24px;
  height: 24px;
  border: 2.5px solid #111111;
  border-radius: 2px;
  transform: rotate(-16deg);
  display: inline-block;
  transition: transform 0.2s ease;
}

.guarantee-item:hover .expert-tilted-square {
  transform: rotate(-10deg) scale(1.08);
}

.guarantee-title {
  font-size: 12px;
  font-weight: 700;
  color: inherit;
  line-height: 1.3;
}

.guarantee-subtitle {
  font-size: 11px;
  font-weight: 500;
  color: #666666;
  line-height: 1.3;
  margin-top: 2px;
}

/* =========================================================
   BODY CONTENT: 6. YELLOW NEWSLETTER & SOCIAL BAR
   ========================================================= */
.fnac-newsletter-social-bar {
  background-color: var(--fnac-search-btn);
  position: relative;
  padding: 22px 0;
  z-index: 20;
}

.newsletter-social-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Left: Newsletter Info */
.newsletter-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-text {
  display: flex;
  flex-direction: column;
}

.newsletter-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.newsletter-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* Center: Floating White FNAC Brand Stamp */
.newsletter-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.fnac-tilted-stamp {
  background-color: #ffffff;
  padding: 10px 12px;
  border-radius: 3px;
  transform: rotate(-6deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
}

.fnac-tilted-stamp img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Right: Social Media Links */
.newsletter-right {
  display: flex;
  align-items: center;
}

.social-links-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 21px;
  transition: transform 0.18s ease, opacity 0.18s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

/* =========================================================
   7. OFFICIAL FOOTER SECTION
   ========================================================= */
.fnac-footer {
  background-color: #191919;
  color: #ffffff;
  padding: 46px 0 30px 0;
  font-size: 12px;
}

/* 4 Navigation Columns */
.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1.2fr 1.2fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid #292929;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

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

.footer-links-list a,
.footer-countries-list a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover,
.footer-countries-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.darty-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.darty-badge {
  background-color: #e60028;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 2px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.2px;
}

.flag-icon {
  font-size: 14px;
  line-height: 1;
}

/* Middle Row: Payment Logos & Awards */
.footer-middle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 22px 0;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid #292929;
}

.payment-methods-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-logo {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 8px;
  background-color: #242424;
  border-radius: 3px;
  border: 1px solid #333333;
}

.payment-visa {
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.payment-mc {
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
}

.mc-circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
}

.mc-red {
  background-color: #eb001b;
  margin-right: -5px;
}

.mc-yellow {
  background-color: #f79e1b;
  opacity: 0.9;
}

.payment-mb .mb-frame,
.payment-mbway .mbway-frame {
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.3px;
}

.payment-fnac-card {
  background-color: #2b2b2b;
}

.fnac-card-text {
  color: #e89d0c;
  font-weight: 900;
  font-size: 11px;
}

.payment-paypal {
  gap: 4px;
  color: #0079c1;
  background-color: #ffffff;
  border: none;
}

.payment-oney {
  color: #9ecc3b;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.4px;
}

.awards-badges-block {
  display: flex;
  align-items: center;
}

.awards-badges-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Bottom Info: Sitemap, Seasonal Links & Price Disclaimer */
.footer-bottom-info {
  padding-top: 22px;
  color: #7d7d7d;
  font-size: 11.5px;
  line-height: 1.6;
}

.sitemap-copyright {
  margin-bottom: 6px;
}

.sitemap-link {
  font-weight: 700;
  color: #ffffff;
  margin-right: 6px;
  text-decoration: none;
}

.sitemap-link:hover {
  text-decoration: underline;
}

.copyright-text {
  color: #7d7d7d;
}

.seasonal-links {
  margin-bottom: 12px;
  color: #7d7d7d;
}

.seasonal-links a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.seasonal-links a:hover {
  text-decoration: underline;
}

.price-disclaimer {
  font-size: 11px;
  color: #6b6b6b;
  line-height: 1.45;
}

/* =========================================================
   8. ACCOUNT PAGE (A MINHA CONTA)
   ========================================================= */
.breadcrumb-nav {
  background-color: #ffffff;
  border-bottom: 1px solid #ededed;
  padding: 10px 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.breadcrumb-list a {
  color: #666666;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-list a:hover {
  color: #000000;
  text-decoration: underline;
}

.breadcrumb-list .separator {
  font-size: 9px;
  color: #aaaaaa;
}

.breadcrumb-list .current {
  color: #222222;
  font-weight: 700;
}

.account-page-main {
  padding: 36px 0 54px 0;
  background-color: #f7f7f7;
}

.account-page-header {
  margin-bottom: 28px;
  text-align: center;
}

.page-main-title {
  font-size: 24px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.page-subtitle {
  font-size: 13.5px;
  color: #666666;
}

.account-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto 32px auto;
}

.auth-card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.auth-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.auth-icon {
  font-size: 18px;
  color: var(--fnac-yellow);
}

.auth-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #222222;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #333333;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.forgot-pass-link {
  font-size: 11.5px;
  color: #d68f08;
  text-decoration: none;
  font-weight: 600;
}

.forgot-pass-link:hover {
  text-decoration: underline;
  color: #b57600;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 12px;
  font-size: 14px;
  color: #888888;
  pointer-events: none;
}

.form-input {
  width: 100%;
  height: 42px;
  padding: 0 36px 0 36px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  font-size: 13.5px;
  font-family: inherit;
  color: #222;
  background-color: #fafafa;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: #f19c00;
  background-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(241, 156, 0, 0.2);
}

.toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  font-size: 14px;
  color: #777;
  cursor: pointer;
  padding: 4px;
}

.toggle-password:hover {
  color: #222;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  margin: 4px 0 8px 0;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #444;
  cursor: pointer;
}

.auth-btn {
  height: 44px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  font-family: inherit;
}

.btn-login {
  background-color: var(--fnac-search-btn);
  color: #111111;
}

.btn-login:hover {
  background-color: var(--fnac-search-btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.register-benefits {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.register-intro {
  font-size: 13px;
  color: #555555;
  margin-bottom: 16px;
  line-height: 1.4;
}

.benefits-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.benefits-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: #333333;
  line-height: 1.35;
}

.check-icon {
  color: #217b38;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-register {
  background-color: #ffffff;
  border: 1.5px solid #222222;
  color: #222222;
  width: 100%;
  margin-top: auto;
}

.btn-register:hover {
  background-color: #222222;
  color: #ffffff;
}

.account-support-stripe {
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.support-icon {
  font-size: 24px;
  color: #e89d0c;
  flex-shrink: 0;
}

.support-item strong {
  display: block;
  font-size: 13px;
  color: #222222;
  margin-bottom: 2px;
}

.support-item p {
  font-size: 11.5px;
  color: #666666;
  margin: 0;
}

/* =========================================================
   9. SHOPPING CART PAGE (O MEU CESTO)
   ========================================================= */
.cart-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-badge-count {
  position: absolute;
  top: -7px;
  right: -8px;
  background-color: #e60028;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 10px;
  padding: 1px 5px;
  min-width: 16px;
  text-align: center;
  line-height: 14px;
}

.checkout-stepper-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #ededed;
  padding: 14px 0;
}

.stepper-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #8c8c8c;
}

.step-item.active {
  color: #191919;
  font-weight: 700;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #eaeaea;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item.active .step-num {
  background-color: var(--fnac-search-btn);
  color: #111;
}

.step-separator {
  flex: 1;
  height: 2px;
  background-color: #ededed;
  max-width: 45px;
}

.cart-main-section {
  padding: 24px 0 54px 0;
  background-color: #f7f7f7;
}

/* Free Shipping Banner */
.free-shipping-banner {
  background-color: #ffffff;
  border: 1px solid #d4edda;
  border-left: 4px solid #217b38;
  border-radius: 4px;
  padding: 12px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

.fs-icon {
  font-size: 20px;
  color: #217b38;
  flex-shrink: 0;
}

.fs-info {
  flex: 1;
}

.fs-text {
  font-size: 13px;
  color: #222;
  margin-bottom: 6px;
  display: block;
}

.fs-progress-bar {
  height: 5px;
  background-color: #e8f5e9;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
}

.fs-progress-fill {
  height: 100%;
  background-color: #217b38;
  border-radius: 3px;
}

/* Grid Layout */
.cart-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

.cart-items-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.cart-title {
  font-size: 20px;
  font-weight: 800;
  color: #191919;
}

.continue-shopping-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.continue-shopping-link:hover {
  color: #000;
  text-decoration: underline;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cart-item-card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  gap: 20px;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.item-visual {
  flex-shrink: 0;
}

.item-img-box {
  width: 90px;
  height: 90px;
  background-color: #fafafa;
  border: 1px dashed #dedede;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-placeholder-icon {
  font-size: 32px;
  color: #a0a0a0;
}

.item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}

.item-name {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  line-height: 1.35;
  margin: 0;
}

.item-unit-price {
  font-size: 17px;
  font-weight: 800;
  color: #191919;
  white-space: nowrap;
}

.item-meta-badges {
  display: flex;
  gap: 12px;
  font-size: 11.5px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.badge-seller {
  color: #555;
}

.badge-stock {
  color: #217b38;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-stock i {
  font-size: 8px;
}

.item-savings-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  margin-bottom: 12px;
}

.discount-pill {
  background-color: #e60028;
  color: #ffffff;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
}

.aderente-card-gain {
  color: #c47600;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.warranty-addon-box {
  background-color: #fbfbfb;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.warranty-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}

.item-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f2f2f2;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  overflow: hidden;
  height: 32px;
}

.qty-btn {
  width: 32px;
  height: 100%;
  background-color: #f8f8f8;
  border: none;
  font-size: 11px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background-color: #ededed;
}

.qty-value {
  min-width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.item-secondary-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.btn-link-action {
  background: none;
  border: none;
  color: #666;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.btn-link-action:hover {
  color: #000;
  text-decoration: underline;
}

.btn-delete:hover {
  color: #e60028;
}

.action-divider {
  color: #d8d8d8;
}

/* Empty state */
.empty-cart-state {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.empty-cart-icon {
  font-size: 48px;
  color: #d0d0d0;
  margin-bottom: 14px;
}

.empty-cart-state h2 {
  font-size: 20px;
  color: #222;
  margin-bottom: 6px;
}

.empty-cart-state p {
  font-size: 13px;
  color: #666;
}

/* Delivery Services */
.cart-delivery-services {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.delivery-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-icon {
  font-size: 22px;
  color: #e89d0c;
  flex-shrink: 0;
}

.delivery-service-item strong {
  display: block;
  font-size: 12.5px;
  color: #222;
  margin-bottom: 2px;
}

.delivery-service-item p {
  font-size: 11px;
  color: #666;
  margin: 0;
}

/* Order Summary */
.order-summary-card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 24px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: sticky;
  top: 20px;
}

.summary-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #444;
}

.savings-row {
  color: #217b38;
  font-weight: 600;
}

.card-gain-row {
  color: #c47600;
  font-weight: 700;
  font-size: 12px;
  padding-top: 4px;
}

.free-text {
  color: #217b38;
  font-weight: 700;
}

.promo-code-section {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 14px 0;
  margin-bottom: 18px;
}

.promo-summary {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-input-box {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.promo-input {
  flex: 1;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  font-size: 12.5px;
  outline: none;
}

.promo-apply-btn {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 0 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s;
}

.promo-apply-btn:hover {
  background-color: #000;
}

.summary-total-block {
  margin-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.total-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #191919;
}

.total-tax-note {
  display: block;
  font-size: 10.5px;
  color: #777;
}

.total-final-price {
  font-size: 22px;
  font-weight: 800;
  color: #191919;
}

.checkout-submit-btn {
  width: 100%;
  height: 48px;
  background-color: var(--fnac-search-btn);
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(241,156,0,0.3);
}

.checkout-submit-btn:hover {
  background-color: var(--fnac-search-btn-hover);
  transform: translateY(-1px);
}

.checkout-guarantees {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f2f2f2;
}

.guarantee-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #555;
}

.guarantee-row i {
  color: #217b38;
  font-size: 13px;
  flex-shrink: 0;
}

/* =========================================================
   10. CHECKOUT STEP 1 PAGE (FOCUSED CHECKOUT)
   ========================================================= */
.checkout-body {
  background-color: #f2f2f2;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222222;
}

.checkout-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

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

.checkout-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.checkout-stepper-2 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #777777;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-step.active .step-circle {
  background-color: #1a1a1a;
  color: #ffffff;
}

.step-text {
  font-size: 11px;
  color: #888888;
  font-weight: 600;
}

.stepper-step.active .step-text {
  color: #1a1a1a;
  font-weight: 700;
}

.stepper-line {
  width: 60px;
  height: 1.5px;
  background-color: #dcdcdc;
  margin-bottom: 14px;
}

.checkout-main {
  padding: 24px 0 60px 0;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.checkout-left-col {
  display: flex;
  flex-direction: column;
}

.checkout-cart-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.checkout-cesto-title {
  font-size: 20px;
  font-weight: 800;
  color: #191919;
  margin: 0;
}

.cesto-qty-note {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
}

.sold-by-fnac-note {
  font-size: 12.5px;
  color: #333333;
}

.sold-by-fnac-note strong {
  font-weight: 800;
  color: #111111;
}

.checkout-product-card {
  background-color: #ffffff;
  border-radius: 2px;
  padding: 18px 20px;
  margin-bottom: 14px;
  display: flex;
  gap: 18px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}

.card-left-img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
}

.product-thumb-img {
  max-width: 80px;
  max-height: 100px;
  object-fit: contain;
  display: block;
}

.card-mid-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-product-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 2px;
  line-height: 1.3;
}

.card-product-category {
  font-size: 11.5px;
  color: #777777;
  margin-bottom: 6px;
}

.card-stock-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #217b38;
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-stock-status .stock-icon {
  font-size: 11px;
}

.bundle-promo-box {
  border: 1px solid #e0e0e0;
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1.35;
  margin-bottom: 6px;
  border-radius: 2px;
}

.bundle-promo-box strong {
  color: #111111;
  font-weight: 800;
}

.bundle-link {
  color: #111111;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 6px;
}

.accessories-box {
  color: #333333;
}

.card-right-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
  min-width: 140px;
}

.card-product-price {
  font-size: 17px;
  font-weight: 800;
  color: #d6001c;
}

.qty-select-wrapper {
  margin: 10px 0;
}

.qty-dropdown {
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  padding: 3px 18px 3px 8px;
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  background-color: #ffffff;
  cursor: pointer;
  outline: none;
}

.card-bottom-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.btn-text-action {
  background: none;
  border: none;
  font-size: 11px;
  font-family: inherit;
  color: #333333;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.btn-text-action:hover {
  color: #000000;
}

.divider-slash {
  color: #bbbbbb;
  font-size: 10px;
}

/* Gift / Free Card */
.gift-card {
  align-items: center;
  padding: 14px 20px;
}

.gift-thumb-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.gift-details {
  justify-content: center;
}

.gift-product-name {
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  margin: 0;
}

.gift-actions {
  justify-content: center;
  align-items: flex-end;
}

.gift-free-price {
  font-size: 15px;
  font-weight: 800;
  color: #d6001c;
}

/* Addon Cards (WWF Donation & Gift Wrap) */
.checkout-addon-card {
  background-color: #ffffff;
  border-radius: 2px;
  padding: 14px 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.donation-card {
  border-left: 3px solid #e60028;
}

.addon-left-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wrap-icon {
  font-size: 20px;
  color: #222222;
}

.addon-details {
  flex: 1;
}

.addon-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #222222;
  margin: 0;
}

.addon-subtitle {
  font-size: 11px;
  color: #777777;
  margin: 2px 0 0 0;
}

.addon-btn {
  background-color: #ffffff;
  border: 1px solid #333333;
  color: #222222;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 2px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  white-space: nowrap;
}

/* =========================================================
   CHECKOUT UPSELLS (WARRANTY & PHONE ACCESSORY PACK)
   ========================================================= */
.checkout-upsells-section {
  margin-top: 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upsell-addon-card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
  position: relative;
}

.upsell-addon-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.upsell-addon-card.warranty-card {
  border-left: 4px solid #e89d0c;
}

.upsell-addon-card.phonepack-card {
  border-left: 4px solid #008752;
}

.upsell-addon-card.active {
  background-color: #fffdf8;
  border-color: #e89d0c;
}

.upsell-addon-card.phonepack-card.active {
  background-color: #f6fbf8;
  border-color: #008752;
}

.upsell-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.upsell-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.upsell-icon-box.warranty-icon {
  background-color: #fff8e8;
  color: #c47600;
}

.upsell-icon-box.phonepack-icon {
  background-color: #eaf6ee;
  color: #008752;
}

.upsell-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

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

.upsell-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #191919;
  margin: 0;
}

.upsell-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}

.upsell-badge.gold {
  background-color: #fff2d6;
  color: #a86200;
  border: 1px solid #ffd899;
}

.upsell-badge.green {
  background-color: #e4f7eb;
  color: #008752;
  border: 1px solid #b7ecd0;
}

.upsell-desc {
  font-size: 11.5px;
  color: #666666;
  margin: 0;
  line-height: 1.35;
}

.upsell-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.upsell-price-tag {
  font-size: 15px;
  font-weight: 800;
  color: #d6001c;
  white-space: nowrap;
}

.upsell-choice-group {
  display: inline-flex;
  align-items: center;
  background-color: #f1f3f4;
  padding: 3px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  gap: 2px;
}

.upsell-choice-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  transition: all 0.15s ease;
  color: #555555;
}

.upsell-choice-btn:hover:not(.active) {
  color: #111111;
  background-color: #e5e7e9;
}

.upsell-choice-btn.btn-sim.active {
  background-color: #217b38;
  color: #ffffff;
  box-shadow: 0 1px 4px rgba(33, 123, 56, 0.25);
}

.upsell-choice-btn.btn-nao.active {
  background-color: #ffffff;
  color: #444444;
  border: 1px solid #d0d0d0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.addon-btn:hover,
.addon-btn.active {
  background-color: #222222;
  color: #ffffff;
}

/* Right Column: Resumo */
.checkout-right-col {
  display: flex;
  flex-direction: column;
}

.checkout-resumo-title {
  font-size: 17px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 14px;
}

.resumo-white-card {
  background-color: #ffffff;
  border-radius: 2px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  margin-bottom: 12px;
}

.promo-card-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
}

.promo-input-row {
  display: flex;
  gap: 6px;
}

.promo-input-box {
  flex: 1;
  height: 32px;
  border: 1px solid #cccccc;
  border-radius: 2px;
  padding: 0 10px;
  font-size: 11.5px;
  outline: none;
  font-family: inherit;
}

.promo-input-box:focus {
  border-color: #888888;
}

.promo-validar-btn {
  height: 32px;
  background-color: #e4e4e4;
  border: none;
  border-radius: 2px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  transition: background-color 0.15s;
}

.promo-validar-btn:hover {
  background-color: #d0d0d0;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #333333;
  margin-bottom: 10px;
}

.totals-icon {
  font-size: 11px;
  color: #666666;
  margin-right: 4px;
}

.totals-val {
  font-weight: 600;
  color: #222222;
}

.free-val {
  color: #444444;
  font-weight: 600;
}

.totals-divider {
  height: 1px;
  background-color: #ebebeb;
  margin: 12px 0 10px 0;
}

.totals-final-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.totals-final-label {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
}

.iva-note {
  font-size: 10px;
  font-weight: 400;
  color: #777777;
}

.totals-final-val {
  font-size: 18px;
  font-weight: 900;
  color: #d6001c;
}

.btn-metodo-entrega {
  width: 100%;
  height: 40px;
  background-color: #e89d0c;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.15s;
  font-family: inherit;
}

.btn-metodo-entrega:hover {
  background-color: #d68f08;
}

.checkout-security-footer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #f2f2f2;
  text-align: center;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  color: #666666;
  margin-bottom: 10px;
}

.payment-methods-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pay-badge {
  font-size: 9.5px;
  font-weight: 800;
  color: #333333;
  background: #f7f7f7;
  padding: 2px 5px;
  border-radius: 2px;
  border: 1px solid #e0e0e0;
}

.pay-badge.visa {
  font-style: italic;
  font-size: 11px;
}

.pay-badge.mc {
  display: inline-flex;
  align-items: center;
  padding: 2px 4px;
}

.c-red {
  width: 9px;
  height: 9px;
  background: #eb001b;
  border-radius: 50%;
  display: inline-block;
  margin-right: -4px;
}

.c-yellow {
  width: 9px;
  height: 9px;
  background: #f79e1b;
  border-radius: 50%;
  display: inline-block;
}

.pay-badge.paypal {
  color: #0079c1;
  font-size: 11px;
}

.pay-badge.mb,
.pay-badge.mbway {
  font-size: 9px;
}

.pay-badge.klarna {
  font-weight: 900;
  background: #ffb3c7;
  color: #111111;
  border: none;
}

/* Floating Help Button */
.floating-help-btn {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background-color: #e89d0c;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: transform 0.15s, background-color 0.15s;
}

.floating-help-btn:hover {
  background-color: #d68f08;
  transform: translateY(-2px);
}

/* Step 2: Shipping & Payment Styles */
.step-back-nav {
  margin-bottom: 16px;
}

.btn-step-back {
  background: none;
  border: none;
  font-size: 12.5px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color 0.15s;
}

.btn-step-back:hover {
  color: #000000;
  text-decoration: underline;
}

.checkout-section-box {
  background-color: #ffffff;
  border-radius: 2px;
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.section-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.section-box-number {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-box-title {
  font-size: 16px;
  font-weight: 800;
  color: #191919;
  margin: 0;
}

.delivery-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.delivery-option-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background-color: #ffffff;
}

.delivery-option-card input[type="radio"] {
  position: absolute;
  top: 14px;
  right: 14px;
}

.delivery-option-card.active {
  border-color: #e89d0c;
  background-color: #fffdf8;
  box-shadow: 0 0 0 1px #e89d0c;
}

.opt-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  padding-right: 20px;
}

.opt-icon {
  font-size: 18px;
  color: #e89d0c;
  margin-top: 2px;
}

.opt-content strong {
  display: block;
  font-size: 13px;
  color: #191919;
  margin-bottom: 2px;
}

.opt-content p {
  font-size: 11px;
  color: #666666;
  margin: 0;
  line-height: 1.35;
}

.opt-badge-price {
  font-size: 12.5px;
  font-weight: 800;
  color: #191919;
  position: absolute;
  bottom: 12px;
  right: 14px;
}

.opt-badge-price.free {
  color: #217b38;
}

.address-form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field label {
  font-size: 11.5px;
  font-weight: 700;
  color: #333333;
}

.form-field input {
  height: 38px;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  padding: 0 12px;
  font-size: 12.5px;
  font-family: inherit;
  color: #222222;
  outline: none;
  background: #fafafa;
  transition: all 0.2s ease;
}

.form-field input:focus {
  border-color: #e89d0c;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(232,157,12,0.18);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.payment-method-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #fafafa;
  position: relative;
}

.payment-method-card input[type="radio"] {
  display: none;
}

.payment-method-card.active {
  border-color: #e89d0c;
  background-color: #fffdf8;
  box-shadow: 0 0 0 1px #e89d0c;
}

.pay-method-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pay-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #222222;
}

.pay-tag {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.mbway-tag {
  background-color: #1a1a1a;
  color: #ffffff;
}

.mb-tag {
  background-color: #0079c1;
  color: #ffffff;
}

.card-tag {
  background-color: #e0e0e0;
  color: #333333;
  font-size: 13px;
}

.fnac-tag {
  background-color: #e89d0c;
  color: #111111;
}

.paypal-tag {
  background-color: #0079c1;
  color: #ffffff;
  font-size: 12px;
}

.klarna-tag {
  background-color: #ffb3c7;
  color: #111111;
}

.payment-details-panel {
  background-color: #fafafa;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 18px;
}

.panel-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.panel-icon {
  font-size: 22px;
  color: #222222;
  margin-top: 2px;
}

.panel-info-row strong {
  display: block;
  font-size: 13px;
  color: #191919;
  margin-bottom: 2px;
}

.panel-info-row p {
  font-size: 11.5px;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}

.mb-mock-reference {
  background-color: #ffffff;
  border: 1px dashed #d0d0d0;
  border-radius: 4px;
  padding: 12px 16px;
  margin-top: 14px;
  max-width: 320px;
}

.ref-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 3px 0;
  color: #444444;
}

.ref-row strong {
  color: #111111;
  font-weight: 800;
}

.btn-pay-action {
  background-color: #217b38 !important;
  color: #ffffff !important;
}

.btn-pay-action:hover {
  background-color: #19642d !important;
}

/* =========================================================
   11. PRODUCT DETAILS PAGE (PDP) STYLES
   ========================================================= */
.pdp-body {
  background-color: #ffffff;
}

.pdp-breadcrumbs-nav {
  background-color: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid #ededed;
}

.pdp-breadcrumbs {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  flex-wrap: wrap;
}

.pdp-breadcrumbs a {
  color: #666666;
  text-decoration: none;
}

.pdp-breadcrumbs a:hover {
  color: #000000;
  text-decoration: underline;
}

.pdp-breadcrumbs .separator {
  font-size: 8px;
  color: #aaaaaa;
}

.pdp-breadcrumbs .current {
  color: #222222;
  font-weight: 600;
}

.pdp-main-content {
  padding: 20px 0 40px 0;
  background-color: #ffffff;
}

.pdp-header-area {
  margin-bottom: 20px;
}

.pdp-tags-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.pdp-category-tag {
  background-color: #f2f2f2;
  color: #555555;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
}

.pdp-main-title {
  font-size: 22px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 8px;
}

.pdp-reviews-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #666666;
  flex-wrap: wrap;
}

.btn-review-opinion {
  background: none;
  border: 1px solid #222222;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: #222222;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-review-opinion:hover {
  background: #222222;
  color: #ffffff;
}

.pdp-questions-link {
  color: #555555;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pdp-questions-link:hover {
  color: #000000;
  text-decoration: underline;
}

/* 3-Column Grid */
.pdp-grid-3col {
  display: grid;
  grid-template-columns: 340px 1fr 340px;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}

/* Column 1: Gallery */
.pdp-col-gallery {
  display: flex;
  gap: 16px;
  position: sticky;
  top: 20px;
}

.pdp-gallery-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdp-main-image-box {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  margin-bottom: 14px;
}

.pdp-hero-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.pdp-thumbnails-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
}

.thumb-nav-btn {
  background: none;
  border: 1px solid #e0e0e0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #777777;
  cursor: pointer;
}

.pdp-thumbnails-track {
  display: flex;
  gap: 6px;
}

.pdp-thumb-item {
  width: 44px;
  height: 44px;
  border: 1.5px solid #e0e0e0;
  border-radius: 3px;
  padding: 2px;
  cursor: pointer;
  transition: all 0.15s;
}

.pdp-thumb-item.active {
  border-color: #e89d0c;
}

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

.pdp-side-actions-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.side-action-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: #666666;
  cursor: pointer;
}

.side-action-btn i {
  font-size: 15px;
  color: #444444;
}

.pdp-floating-badge {
  border-radius: 3px;
  padding: 4px 6px;
  font-size: 9.5px;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  width: 54px;
}

.badge-oferta {
  background: #f19c00;
  color: #ffffff;
}

.badge-retoma {
  background: #111111;
  color: #ffffff;
  font-size: 8.5px;
}

.retoma-val {
  font-size: 11px;
  display: block;
  color: #f19c00;
}

.badge-m365 {
  background: #f0f0f0;
  color: #333333;
  border: 1px solid #dddddd;
}

/* Column 2: Configuration */
.pdp-col-config {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pdp-energy-box {
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 4px;
  padding: 12px 14px;
}

.energy-icons-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.energy-class-badge {
  background: #008752;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.usb-pd-badge {
  border: 1px solid #333333;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 10px;
  text-align: center;
}

.charger-warning-title {
  font-size: 11.5px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 2px 0;
}

.charger-warning-desc {
  font-size: 10.5px;
  color: #777777;
  margin: 0;
  line-height: 1.35;
}

.pdp-config-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.config-label {
  font-size: 12.5px;
  color: #222222;
  font-weight: 500;
}

.config-label strong {
  font-weight: 700;
}

.capacity-buttons-row {
  display: flex;
  gap: 10px;
}

.btn-capacity {
  flex: 1;
  height: 38px;
  border: 1.5px solid #dcdcdc;
  border-radius: 4px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-capacity.active {
  border-color: #e89d0c;
  background: #fffdf8;
}

.color-swatches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.color-swatch-item {
  border: 1.5px solid #e0e0e0;
  border-radius: 4px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 11px;
  color: #333333;
}

.color-swatch-item.active {
  border-color: #e89d0c;
  background: #fffdf8;
}

.swatch-img-box {
  width: 32px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swatch-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pdp-offers-box {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px;
  position: relative;
}

.offers-title {
  font-size: 12px;
  font-weight: 700;
  color: #222222;
  display: block;
  margin-bottom: 8px;
}

.offer-row-stripe {
  border-left: 3px solid #e89d0c;
  padding-left: 8px;
  margin-bottom: 6px;
  font-size: 11.5px;
  color: #222222;
}

.offers-expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 12px;
  color: #666666;
  cursor: pointer;
}

.pdp-quick-specs {
  border-top: 1px solid #ededed;
  padding-top: 14px;
}

.specs-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.specs-title {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
}

.specs-see-all {
  font-size: 11.5px;
  color: #555555;
  text-decoration: underline;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
}

.specs-table td {
  padding: 6px 0;
  border-bottom: 1px solid #f2f2f2;
}

.spec-name {
  color: #666666;
  width: 40%;
  vertical-align: top;
}

.spec-val {
  color: #222222;
  font-weight: 600;
}

/* Column 3: Buy Box */
.pdp-col-buybox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-buybox-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.price-header-label {
  font-size: 11px;
  color: #666666;
  display: block;
  margin-bottom: 4px;
}

.main-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.pdp-price-current {
  font-size: 24px;
  font-weight: 800;
  color: #d6001c;
}

.pdp-price-old {
  font-size: 11.5px;
  color: #888888;
  text-decoration: line-through;
}

.pdp-discount-badge {
  background: #d6001c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 2px;
}

.pvpr-radio-note {
  font-size: 11px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.buybox-aderente-section {
  background: #fafafa;
  border-radius: 4px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 11.5px;
}

.aderente-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.aderente-badge-pill {
  background: #666666;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
}

.aderente-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 4px;
}

.aderente-cashback-info {
  color: #222222;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.add-card-link {
  color: #555555;
  text-decoration: underline;
  font-size: 11px;
}

.buybox-divider-or {
  text-align: center;
  position: relative;
  margin: 10px 0;
}

.buybox-divider-or span {
  background: #ffffff;
  padding: 0 8px;
  font-size: 11px;
  color: #888888;
  position: relative;
  z-index: 1;
}

.buybox-divider-or::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}

.buybox-installments-section {
  margin-bottom: 12px;
}

.installments-badge-pill {
  background: #d6001c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 6px;
}

.installment-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  margin-bottom: 4px;
}

.inst-logo.klarna {
  background: #ffb3c7;
  font-weight: 900;
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 2px;
}

.inst-logo.oney {
  color: #9ecc3b;
  font-weight: 800;
  font-size: 11px;
}

.marketplace-link-row {
  margin-bottom: 12px;
}

.marketplace-link-row a {
  font-size: 11.5px;
  color: #0079c1;
  text-decoration: none;
  font-weight: 600;
}

.buybox-shipping-info {
  border-top: 1px solid #eeeeee;
  padding-top: 10px;
  margin-bottom: 14px;
  font-size: 11.5px;
}

.ship-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.ship-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.free-ship-badge {
  color: #217b38;
  font-weight: 800;
}

.pdp-add-to-cart-btn {
  width: 100%;
  height: 44px;
  background: #e89d0c;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  border-radius: 3px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background 0.15s;
}

.pdp-add-to-cart-btn:hover {
  background: #d68f08;
}

.buybox-store-pickup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-store-pickup {
  width: 100%;
  height: 38px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.marketplace-preview-box {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 14px;
  background: #ffffff;
  font-size: 11.5px;
}

/* Guarantees Stripe */
.pdp-guarantees-stripe {
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 16px 0;
}

.guarantees-stripe-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.guarantee-stripe-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #333333;
}

.guarantee-stripe-item .g-icon {
  color: #222222;
  font-size: 14px;
}

/* Dark Overview Section */
.pdp-dark-overview-section {
  background: #222222;
  color: #ffffff;
  padding: 32px 0;
}

.dark-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dark-col {
  background: #f7f7f7;
  color: #222222;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dark-col-header h3 {
  font-size: 13px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
}

.dark-specs-table {
  width: 100%;
  font-size: 11px;
  border-collapse: collapse;
}

.dark-specs-table td {
  padding: 4px 0;
  border-bottom: 1px solid #eaeaea;
}

.dark-bottom-link {
  font-size: 11px;
  font-weight: 700;
  color: #e89d0c;
  text-decoration: underline;
  margin-top: 12px;
}

/* Full Specs Section */
.pdp-full-specs-section {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.full-specs-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
}

.specs-section-title {
  font-size: 16px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 18px;
}

.specs-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.specs-detailed-table {
  width: 100%;
  font-size: 11.5px;
  border-collapse: collapse;
}

.specs-detailed-table th,
.specs-detailed-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

.specs-detailed-table th {
  background: #fafafa;
  color: #555555;
  width: 35%;
  font-weight: 600;
}

.clinica-ad-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* Cross Sell Section */
.pdp-cross-sell-section {
  padding: 40px 0 60px 0;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  margin-top: 20px;
}

.cross-sell-title {
  font-size: 18px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Sticky Bottom Buy Bar */
.pdp-sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.pdp-sticky-buy-bar.visible {
  transform: translateY(0);
}

.sticky-buy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-thumb {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.sticky-price {
  font-size: 16px;
  font-weight: 800;
  color: #d6001c;
  margin-left: 8px;
}

.sticky-add-btn {
  background: #e89d0c;
  color: #111111;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 22px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================
   12. LEGAL & TERMS PAGE (MENÇÕES LEGAIS)
   ========================================================= */
.legal-body {
  background-color: #f7f7f7;
}

.legal-main-content {
  padding: 30px 0 60px 0;
}

.legal-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.legal-sidebar {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 20px 0;
  position: sticky;
  top: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.legal-sidebar-title {
  font-size: 15px;
  font-weight: 800;
  color: #191919;
  padding: 0 20px 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 8px;
}

.legal-nav-menu {
  display: flex;
  flex-direction: column;
}

.legal-nav-link {
  padding: 10px 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #444444;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}

.legal-nav-link:hover {
  background-color: #fafafa;
  color: #000000;
}

.legal-nav-link.active {
  background-color: #fffdf8;
  color: #111111;
  font-weight: 700;
  border-left-color: #e89d0c;
}

.legal-nav-link i {
  font-size: 13px;
  color: #888888;
  width: 16px;
  text-align: center;
}

.legal-nav-link.active i {
  color: #e89d0c;
}

.legal-content-area {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  padding: 36px 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  min-height: 480px;
}

.legal-title {
  font-size: 22px;
  font-weight: 800;
  color: #191919;
  margin-bottom: 4px;
}

.legal-date {
  font-size: 12px;
  color: #888888;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.legal-text-body {
  font-size: 13.5px;
  color: #444444;
  line-height: 1.65;
}

.legal-text-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  margin: 20px 0 8px 0;
}

.legal-text-body p {
  margin-bottom: 14px;
}

.legal-text-body a {
  color: #e89d0c;
  font-weight: 600;
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .checkout-container {
    grid-template-columns: 1fr 320px;
  }
  .pdp-grid-3col {
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
  }
  .cross-sell-carousel {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .promo-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .benefit-item:nth-child(2) {
    border-right: none;
  }
  .cart-layout-grid {
    grid-template-columns: 1fr;
  }
  .pdp-grid-3col {
    grid-template-columns: 1fr 1fr;
  }
  .pdp-col-buybox {
    grid-column: span 2;
  }
  .legal-layout-grid {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 992px) {
  .expert-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .expert-image-wrapper {
    height: 240px;
  }
  .services-guarantees-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .newsletter-center {
    display: none;
  }
  .footer-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .account-auth-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .account-support-stripe {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cart-delivery-services {
    grid-template-columns: 1fr;
  }
  .checkout-container {
    grid-template-columns: 1fr;
  }
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dark-overview-grid {
    grid-template-columns: 1fr;
  }
  .full-specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .utility-bar {
    display: none;
  }
  .search-container {
    margin: 0 10px;
  }
  .action-text {
    display: none;
  }
  .promo-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 8px;
  }
  .promo-tabs {
    width: 100%;
    overflow-x: auto;
  }
  .benefits-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .benefit-item {
    border-right: none;
    justify-content: flex-start;
  }
  .banner-cta-overlay {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-guarantees-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .newsletter-social-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .newsletter-left {
    flex-direction: column;
    gap: 8px;
  }
  .footer-middle-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cart-item-card {
    flex-direction: column;
  }
  .item-title-row {
    flex-direction: column;
    gap: 4px;
  }
  .stepper-track {
    gap: 8px;
  }
  .step-label {
    display: none;
  }
  .checkout-product-card {
    flex-direction: column;
  }
  .card-right-actions {
    align-items: flex-start;
  }
  .delivery-options-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .pdp-grid-3col {
    grid-template-columns: 1fr;
  }
  .pdp-col-buybox {
    grid-column: span 1;
  }
  .specs-two-columns {
    grid-template-columns: 1fr;
  }
  .cross-sell-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-content-area {
    padding: 24px 20px;
  }
}

@media (max-width: 520px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .services-guarantees-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .auth-card {
    padding: 24px 18px;
  }
  .item-actions-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .checkout-addon-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  .cross-sell-carousel {
    grid-template-columns: 1fr;
  }
}
