/* ── Homepage dinâmica — Design System ─────────────────────────── */
.hp-visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.hp-skip-link{position:absolute;top:-100%;left:0;z-index:99999;background:#000;color:#fff;padding:8px 16px;font-size:14px;text-decoration:none;border-radius:0 0 4px 0}.hp-skip-link:focus{top:0}
:root {
  --hp-primary: #1a1a1a;
  --hp-secondary: #48A880;
  --hp-accent: #48A880;
  --hp-bg: #ffffff;
  --hp-surface: #FFFFFF;
  --hp-text: #1a1a1a;
  --hp-text2: #1f2937;
  --hp-text3: #737373;
  --hp-border: #e2e9e6;
  --hp-green: #48A880;
  --hp-radius: 14px;
  --hp-font-display: 'Inter', sans-serif;
  --hp-font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--hp-font-body);
  background: var(--hp-bg);
  color: var(--hp-text);
  -webkit-font-smoothing: antialiased;
}

/* Container global */
.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 80%;
}

@media (max-width: 768px) {
  .hp-container {
    width: 100%;
  }
}

/* ── Loading ───────────────────────────────────────────────────── */
.hp-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hp-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--hp-border);
  border-top-color: var(--hp-primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

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

/* ── Header / Strip ────────────────────────────────────────────── */
.hp-strip {
  padding: 0 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #000;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.hp-strip img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hp-strip {
    height: 36px;
    padding: 0 12px;
  }

  .hp-strip img {
    max-height: 28px;
  }
}

.hp-header-wrap {
  background: var(--hp-header-bg, var(--hp-surface));
  position: sticky;
  top: 0;
  z-index: 100;
}

.hp-header {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.hp-header-menu-icon {
  display: none;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin: 0;
  line-height: 0;
}

.hp-header-menu-icon svg {
  width: 22px;
  height: 22px;
}

.hp-header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hp-header.has-centered-logo {
  justify-content: center;
}

.hp-header.has-centered-logo .hp-header-menu-icon {
  position: absolute;
  left: 12px;
}

.hp-header.has-centered-logo .hp-header-actions {
  position: absolute;
  right: 12px;
}

.hp-header-logo img {
  max-height: 48px;
  object-fit: contain;
}

.hp-header-logo span {
  font-family: var(--hp-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--hp-store-name-color, #000);
}

.hp-header-search {
  flex: 1;
  display: flex;
  border: 1px solid var(--hp-border);
  border-radius: 50px;
  height: 44px;
  position: relative;
}

.hp-header-search input {
  flex: 1;
  border: none;
  padding: 10px 20px;
  font-family: var(--hp-font-body);
  font-size: 14px;
  outline: none;
  background: transparent;
  border-radius: 50px 0 0 50px;
}

.hp-header-search button {
  background: var(--hp-secondary);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-header-search button svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

/* ── Search Dropdown ───────────────────────────────────────── */
.hp-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 1000;
  margin-top: 6px;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
.hp-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.hp-search-item:hover {
  background: #f5f5f5;
}
.hp-search-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.hp-search-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f9fafb;
}
.hp-search-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-search-item-info {
  flex: 1;
  min-width: 0;
}
.hp-search-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-search-item-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-green, #1A8A52);
  margin-top: 2px;
}
.hp-search-empty {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.hp-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  flex-shrink: 0;
  margin-left: auto;
  color: var(--hp-text2);
}

.hp-header-actions a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.hp-header-actions svg {
  width: 20px;
  height: 20px;
}

.hp-header-divider {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 300;
}

.hp-cart-badge {
  background: var(--hp-secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -6px;
  left: -2px;
  margin-right: -6px;
}

/* ── Navigation ────────────────────────────────────────────────── */
.hp-nav-wrap {
  background: var(--hp-surface);
  border-bottom: 1px solid var(--hp-border);
}

.hp-nav {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.hp-nav-icon {
  display: none;
}

.hp-nav-icon svg {
  width: 18px;
  height: 18px;
}

.hp-nav > a,
.hp-nav-item > a {
  text-decoration: none;
  color: var(--hp-nav-text-color, var(--hp-menu-color, var(--hp-text2)));
  font-size: 14px;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: .2s;
}

.hp-nav > a:hover,
.hp-nav-item > a:hover {
  color: var(--hp-primary);
  border-bottom-color: var(--hp-primary);
}

/* ── Nav Dropdown ─────────────────────────────────────────────── */
.hp-nav-item {
  position: relative;
}

.hp-nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hp-nav-item > a .hp-nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform .2s;
}

.hp-nav-item:hover > a .hp-nav-chevron {
  transform: rotate(180deg);
}

.hp-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--hp-border, #e5e7eb);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  padding: 6px 0;
  z-index: 100;
}

.hp-nav-item:hover .hp-nav-dropdown {
  display: block;
}

.hp-nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--hp-text2, #333);
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s, color .12s;
}

.hp-nav-dropdown a:hover {
  background: var(--hp-bg, #f5f5f5);
  color: var(--hp-primary, #111);
}

/* ── Banner ────────────────────────────────────────────────────── */
.hp-banner {
  position: relative;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
  width: 80%;
  max-width: 1200px;
  margin: 16px auto;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .hp-banner {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

.hp-banner-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.hp-banner-slide {
  width: 100%;
  flex-shrink: 0;
  /* Reserva espaço antes da imagem carregar — evita CLS */
  aspect-ratio: 2/1;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hp-banner-slide {
    aspect-ratio: 4/3;
  }
}

.hp-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-banner-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  background: #f3f4f3;
  border: 2px dashed #d1d5db;
  border-radius: 20px;
  margin: -1px;
}

.hp-banner-placeholder h2 {
  font-family: var(--hp-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #374151;
}

.hp-banner-placeholder p {
  color: #9ca3af;
  margin-top: 8px;
}

.hp-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}

.hp-banner-overlay h2 {
  font-family: var(--hp-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.hp-banner-overlay p {
  font-size: 1.1rem;
  margin-top: 8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

.hp-banner-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  background: var(--hp-accent);
  color: var(--hp-primary);
  font-weight: 700;
  border-radius: var(--hp-radius);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

.hp-banner-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hp-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  border: none;
}

.hp-banner-dot.active {
  background: #fff;
}

/* ── Collection / Product grid ──────────────────────────────────── */
.hp-section {
  padding: 40px 0;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hp-section {
    width: 100%;
    padding: 24px 16px;
  }
}

.hp-section-title {
  font-family: var(--hp-font-display);
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.hp-section-title {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.hp-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 3px;
  background: var(--hp-title-bar-color, var(--hp-secondary));
  border-radius: 2px;
}
.hp-section-title.no-bar {
  padding-bottom: 0;
  margin-bottom: 16px;
}
.hp-section-title.no-bar::after {
  display: none;
}

.hp-section-title-bar {
  display: none;
}

.hp-section-centered {
  text-align: center;
}
.hp-section-centered .hp-section-title::after {
  left: 50%;
  transform: translateX(-50%);
}
.hp-section-left {
  text-align: left;
}
.hp-section-left .hp-section-title::after {
  left: 0;
}
.hp-section-right {
  text-align: right;
}
.hp-section-right .hp-section-title::after {
  right: 0;
  left: auto;
}

.hp-section-description {
  font-size: 14px;
  color: #6b7280;
  margin: 8px 0 16px;
  line-height: 1.5;
}

.hp-view-more-wrap {
  text-align: center;
  margin-top: 28px;
}

.hp-view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 36px;
  border-radius: var(--vm-radius, var(--hp-radius));
  font-size: var(--vm-font-d, 14px);
  width: var(--vm-width-d, auto);
  font-family: var(--hp-font-body);
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.hp-view-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

.hp-view-more-btn:active {
  transform: translateY(0) scale(.98);
  box-shadow: none;
}

.hp-view-more-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hp-view-more-wrap { margin-top: 20px; }
  .hp-view-more-btn {
    padding: 12px 28px;
    font-size: var(--vm-font-m, 13px);
    width: var(--vm-width-m, 100%);
    justify-content: center;
  }
}

.hp-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.hp-carousel-wrapper {
  position: relative;
}

.hp-products-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hp-products-carousel::-webkit-scrollbar {
  display: none;
}

.hp-products-carousel .hp-product-card {
  min-width: 240px;
  max-width: 280px;
  flex-shrink: 0;
}

.hp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e9e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #1a1a1a;
  transition: all .15s;
}

.hp-carousel-btn:hover:not(.disabled) {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  background: #f9f9f9;
}

.hp-carousel-btn.disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.hp-carousel-btn svg {
  width: 18px;
  height: 18px;
}

.hp-carousel-btn.prev {
  left: -18px;
}

.hp-carousel-btn.next {
  right: -18px;
}

.hp-product-card {
  background: var(--hp-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 233, 230, .4);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.hp-product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.hp-product-cart-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--hp-surface, #fff);
  color: var(--hp-text2, #555);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, transform .15s;
  z-index: 2;
  padding: 0;
}

.hp-product-cart-btn:hover {
  background: var(--hp-primary, #48A880);
  color: #fff;
  transform: scale(1.08);
}

.hp-product-cart-btn:active {
  transform: scale(.95);
}

.hp-product-cart-full-btn {
  display: block;
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: opacity .15s, transform .12s;
  line-height: 1.3;
}
.hp-product-cart-full-btn:hover { opacity: .85; }
.hp-product-cart-full-btn:active { transform: scale(.97); }

.hp-card-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  padding: 4px 12px 10px;
  overflow: hidden;
}
.hp-card-brands-label {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.hp-card-brand-icon {
  display: inline-flex;
  flex-shrink: 0;
}
.hp-card-brand-icon svg {
  width: 30px;
  height: 20px;
}
@media (max-width: 768px) {
  .hp-card-brand-icon svg {
    width: 24px;
    height: 16px;
  }
  .hp-card-brands {
    gap: 2px;
    padding: 3px 8px 8px;
  }
}

.hp-product-cart-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hp-product-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--hp-bg, #ffffff);
  overflow: hidden;
}

.hp-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hp-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--hp-badge-color, #48A880);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
}

.hp-product-info {
  padding: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--hp-text);
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: calc(14px * 1.3 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  align-content: center;
  text-align: center;
}

.hp-product-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.hp-product-price-main {
  font-size: 18px;
  font-weight: 700;
  color: var(--hp-price-color, var(--hp-green));
}

.hp-product-price-orig {
  font-size: 13px;
  color: var(--hp-text3);
  text-decoration: line-through;
}

.hp-product-installment {
  font-size: 12px;
  color: var(--hp-text3);
  margin-top: 2px;
}

.hp-product-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 6px;
}
.hp-product-stars svg { flex-shrink: 0; }
.hp-product-stars-rating {
  font-size: 12px;
  font-weight: 700;
  color: var(--hp-text, #1a1a1a);
  margin-left: 6px;
}
.hp-product-stars-count {
  font-size: 11px;
  color: #b0b8c4;
  margin-left: 2px;
}

.hp-product-shipping {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1.5px dashed #16a34a;
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
  line-height: 1;
}
.hp-shipping-full {
  background: #16a34a;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hp-product-placeholder {
  aspect-ratio: 1;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-product-placeholder svg {
  width: 56px;
  height: 56px;
  color: #d1d5db;
}

/* ── Info Highlights ───────────────────────────────────────────── */
.hp-info {
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  cursor: pointer;
}

.hp-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.hp-info-icon {
  width: 48px;
  height: 48px;
  color: var(--hp-primary);
}

.hp-info-title {
  font-weight: 600;
  font-size: 14px;
}

.hp-info-desc {
  font-size: 13px;
  color: var(--hp-text3);
  line-height: 1.4;
}

/* ── Info Highlights — Marquee ─────────────────────────────────── */
.hp-info-marquee {
  overflow: hidden;
  padding: 20px 0;
  max-width: 100%;
  cursor: default;
  display: block;
}
.hp-info-marquee .hp-info-item {
  flex-direction: row;
  align-items: center;
  text-align: left;
  min-width: 100vw;
  max-width: 100vw;
  gap: 12px;
  padding: 0 40px;
  flex-shrink: 0;
  white-space: normal;
  justify-content: center;
  box-sizing: border-box;
}
.hp-info-marquee .hp-info-item:last-child {
  border-right: none;
}
.hp-info-marquee .hp-info-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.hp-info-marquee .hp-info-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.hp-info-marquee .hp-info-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.hp-info-marquee .hp-info-desc {
  font-size: 11px;
  line-height: 1.3;
}
.hp-info-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: hp-marquee-scroll 30s linear infinite;
}
.hp-info-marquee-half {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hp-info-marquee:hover .hp-info-marquee-track {
  animation-play-state: paused;
}
@keyframes hp-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Newsletter ────────────────────────────────────────────────── */
.hp-newsletter {
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 1px;
}

.hp-newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hp-newsletter h3 {
  font-family: var(--hp-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hp-newsletter p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: .8;
}

.hp-newsletter-form {
  display: flex;
  gap: 4px;
  max-width: 440px;
  margin: 0 auto;
}

.hp-newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  height: auto;
  min-height: 46px;
  font-family: var(--hp-font-body);
  font-size: 14px;
  outline: none;
  background: #ffffff;
  color: #111111;
  border-radius: 14px;
  box-sizing: border-box;
}

.hp-newsletter-form input::placeholder {
  color: #111111;
  opacity: .5;
}

.hp-newsletter-form button {
  background: var(--hp-accent);
  color: var(--hp-primary);
  border: none;
  padding: 12px 24px;
  min-height: 46px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--hp-font-body);
  border-radius: 14px;
  white-space: nowrap;
  box-sizing: border-box;
}

/* ── Footer ────────────────────────────────────────────────────── */
.hp-footer {
  padding: 48px 24px 24px;
}

body.cart-active .hp-footer {
  padding-bottom: 80px;
}

.hp-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.hp-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: .05em;
  position: relative;
}

.hp-footer-title-line {
  display: block;
  width: 10%;
  height: 2px;
  margin-top: 8px;
  border-radius: 1px;
}

.hp-footer-col p,
.hp-footer-col a {
  font-size: 13px;
  line-height: 1.6;
  opacity: .8;
  text-decoration: none;
  color: inherit;
  display: block;
}

.hp-footer-col a:hover {
  opacity: 1;
}

.hp-footer-col ul {
  list-style: none;
}

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

.hp-footer-social-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 16px;
  margin-bottom: 8px;
  opacity: .9;
}

.hp-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.hp-footer-social a {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: none;
  transition: .2s;
  opacity: .7;
}

.hp-footer-social a:hover {
  opacity: 1;
}

.hp-footer-social svg {
  width: 16px;
  height: 16px;
}

.hp-footer-info-line {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  opacity: .7;
  flex-wrap: wrap;
}
.hp-footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  opacity: 1 !important;
  transition: background .2s;
  width: fit-content;
}
.hp-footer-whatsapp:hover { background: #1ebe5d; }
.hp-footer-whatsapp svg { flex-shrink: 0; }
.hp-footer-col .hp-footer-whatsapp { margin-top: 14px; }
.hp-footer-richtext {
  font-size: 13px;
  line-height: 1.6;
  opacity: .8;
}
.hp-footer-richtext a { color: inherit; text-decoration: underline; opacity: 1; }
.hp-footer-info-line + .hp-footer-copyright {
  border-top: none;
  margin-top: 10px;
  padding-top: 0;
}
.hp-footer-copyright {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: 13px;
  opacity: .6;
}

.hp-footer-bar {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.hp-footer-pay-section {}

.hp-footer-pay-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
  opacity: .6;
}

.hp-footer-pay-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hp-footer-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 26px;
  padding: 0 6px;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  font-family: var(--hp-font-body, sans-serif);
}
.hp-footer-pay-icon {
  display: inline-flex;
  align-items: center;
}
.hp-footer-pay-icon svg {
  width: 39px;
  height: 26px;
}

.hp-footer-seals {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hp-footer-seal {
  display: flex;
  align-items: center;
}

.hp-footer-seal img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.hp-footer-info {
  max-width: 1200px;
  margin: 12px auto 0;
  text-align: center;
  font-size: 12px;
  opacity: .5;
}

/* ── Mobile Drawer ─────────────────────────────────────────────── */
.hp-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
  opacity: 0;
  transition: opacity .25s;
}
.hp-mobile-overlay.open {
  display: block;
  opacity: 1;
}

.hp-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.hp-mobile-drawer.open {
  transform: translateX(0);
}

.hp-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.hp-mobile-drawer-header .hp-drawer-logo {
  font-family: var(--hp-font-display, 'DM Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--hp-store-name-color, #000);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hp-mobile-drawer-header .hp-drawer-logo img {
  max-height: 36px;
  object-fit: contain;
}

.hp-mobile-drawer-close {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .12s;
}
.hp-mobile-drawer-close:hover {
  background: #f3f4f6;
}

.hp-mobile-nav {
  padding: 12px 0;
  flex: 1;
}

.hp-mobile-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: background .1s;
}
.hp-mobile-nav-item > a:hover {
  background: #f5f5f5;
}

.hp-mobile-nav-item > a .hp-mobile-chevron {
  width: 16px;
  height: 16px;
  color: #999;
  transition: transform .2s;
  flex-shrink: 0;
}
.hp-mobile-nav-item.expanded > a .hp-mobile-chevron {
  transform: rotate(180deg);
}

.hp-mobile-subnav {
  display: none;
  background: #f9fafb;
}
.hp-mobile-nav-item.expanded .hp-mobile-subnav {
  display: block;
}

.hp-mobile-subnav a {
  display: block;
  padding: 11px 20px 11px 36px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: background .1s, color .1s;
}
.hp-mobile-subnav a:hover {
  background: #eee;
  color: #111;
}

.hp-mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 16px 12px;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  position: relative;
  flex-wrap: wrap;
}
.hp-mobile-search .hp-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 8px;
  margin-top: 4px;
}
.hp-mobile-search input {
  border: none;
  outline: none;
  background: none;
  flex: 1;
  font-size: 14px;
  font-family: inherit;
  color: #333;
}
.hp-mobile-search svg {
  width: 18px;
  height: 18px;
  color: #999;
  flex-shrink: 0;
}

/* ── Mobile ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .hp-header-menu-icon {
    display: flex;
    align-items: center;
  }

  .hp-header {
    padding: 10px 14px;
    gap: 8px;
  }

  .hp-header-search {
    display: none;
  }

  .hp-header-actions span:not(.hp-cart-badge) {
    display: none;
  }

  .hp-header-actions {
    gap: 12px;
  }

  .hp-header-actions svg {
    width: 22px;
    height: 22px;
  }

  .hp-header-divider {
    display: none;
  }

  .hp-nav-wrap {
    display: none;
  }

  .hp-header-logo span {
    font-size: 17px;
  }

  /* Banner */
  .hp-banner-overlay h2 {
    font-size: 1.5rem;
  }

  .hp-banner-overlay p {
    font-size: 14px;
  }

  .hp-banner-cta {
    font-size: 13px;
    padding: 10px 20px;
  }

  /* Sections + product cards */
  .hp-section {
    padding: 20px 14px;
  }

  .hp-section-title {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .hp-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hp-product-card {
    border-radius: 12px;
  }

  .hp-product-info {
    padding: 10px;
  }

  .hp-product-name {
    font-size: 13px;
    margin-bottom: 6px;
    min-height: calc(13px * 1.3 * 2);
  }

  .hp-product-price-main {
    font-size: 16px;
  }

  .hp-product-price-orig {
    font-size: 12px;
  }

  .hp-product-installment {
    font-size: 11px;
  }

  .hp-product-badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    top: 8px;
    left: 8px;
  }

  .hp-product-cart-btn {
    width: 30px;
    height: 30px;
    bottom: 8px;
    right: 8px;
    border-radius: 8px;
  }

  .hp-product-cart-btn svg {
    width: 14px;
    height: 14px;
  }

  /* Carousel */
  .hp-products-carousel {
    gap: 10px;
  }

  .hp-carousel-btn {
    width: 32px;
    height: 32px;
  }

  .hp-carousel-btn svg {
    width: 16px;
    height: 16px;
  }

  .hp-carousel-btn.prev {
    left: -4px;
  }

  .hp-carousel-btn.next {
    right: -4px;
  }

  /* Info highlights */
  .hp-info {
    gap: 16px;
    padding: 20px 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hp-info-item {
    min-width: 120px;
    flex: 1 1 40%;
  }

  .hp-info-icon svg {
    width: 28px;
    height: 28px;
  }

  .hp-info-item h4 {
    font-size: 13px;
  }

  .hp-info-item p {
    font-size: 12px;
  }

  /* Newsletter */
  .hp-newsletter {
    padding: 32px 16px;
  }

  .hp-newsletter h3 {
    font-size: 1.2rem;
  }

  .hp-newsletter p {
    font-size: 13px;
  }

  .hp-newsletter-form {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    padding: 0 16px;
  }

  .hp-newsletter-form input {
    width: 100%;
    text-align: center;
  }

  .hp-newsletter-form button {
    width: 100%;
  }

  .hp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Footer */
  .hp-footer {
    padding: 32px 14px 24px;
    overflow-x: hidden;
  }

  .hp-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .hp-footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hp-footer-brand .hp-footer-social {
    justify-content: center;
  }

  .hp-footer-brand .hp-footer-logo {
    display: flex;
    justify-content: center;
  }

  .hp-footer-col:not(.hp-footer-brand) {
    padding: 0 6px;
  }

  .hp-footer-col h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .hp-footer-col a,
  .hp-footer-col p {
    font-size: 13px;
  }

  .hp-footer-seals {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .hp-footer-seal img {
    height: 28px;
    max-width: 100%;
  }

  .hp-footer-bottom {
    font-size: 11px;
  }

  .hp-footer-brands {
    gap: 4px;
  }

  .hp-footer-brands svg {
    width: 30px;
    height: 19px;
  }

  .hp-footer-pay-icons {
    gap: 4px;
  }

  .hp-footer-pay-icon svg {
    width: 32px;
    height: 21px;
  }

  /* Cart bar */
  .hp-cart-bar {
    border-radius: 14px 14px 0 0;
  }

  .hp-cart-bar-header {
    padding: 10px 16px;
  }

  .hp-cart-bar-label {
    font-size: 14px;
  }
  .hp-cart-bar-total {
    font-size: 15px;
  }
  .hp-cart-bar-icon svg {
    width: 20px;
    height: 20px;
  }

  .hp-cart-panel {
    max-height: 0;
  }

  .hp-cart-bar.expanded .hp-cart-panel {
    max-height: 55vh;
  }

  .hp-cart-items {
    max-height: calc(55vh - 100px);
    padding: 6px 12px;
  }

  .hp-cart-item {
    gap: 10px;
    padding: 8px 0;
  }

  .hp-cart-item-img {
    width: 46px;
    height: 46px;
    border-radius: 6px;
  }

  .hp-cart-item-name {
    font-size: 12px;
  }

  .hp-cart-item-price {
    font-size: 12px;
  }

  .hp-cart-item-qty button {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .hp-cart-item-qty span {
    font-size: 12px;
    min-width: 20px;
  }

  .hp-cart-item-remove {
    width: 26px;
    height: 26px;
  }

  .hp-cart-footer {
    padding: 10px 12px;
  }

  .hp-cart-total {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .hp-cart-total-value {
    font-size: 15px;
  }

  .hp-cart-checkout-btn {
    padding: 11px;
    font-size: 13px;
    border-radius: 8px;
  }
}

/* ── Mobile (< 480px): newsletter empilhada ── */
@media (max-width: 480px) {
  .hp-newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .hp-newsletter-form input {
    width: 100%;
    text-align: center;
  }

  .hp-newsletter-form button {
    width: 100%;
  }
}

/* ── Dispositivos médios (< 414px): iPhone 12/13/14, Galaxy S ── */
@media (max-width: 414px) {
  .hp-header {
    padding: 8px 10px;
    gap: 6px;
  }

  .hp-header-logo span {
    font-size: 15px;
  }

  .hp-header-actions {
    gap: 10px;
  }

  .hp-section {
    padding: 16px 10px;
  }

  .hp-section-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .hp-products-grid {
    gap: 8px;
  }

  .hp-product-info {
    padding: 8px;
  }

  .hp-product-name {
    font-size: 12px;
    min-height: calc(12px * 1.3 * 2);
  }

  .hp-product-price-main {
    font-size: 14px;
  }

  .hp-product-price-orig {
    font-size: 11px;
  }

  .hp-product-installment {
    font-size: 10px;
  }

  .hp-product-badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .hp-product-cart-btn {
    width: 28px;
    height: 28px;
  }

  .hp-product-cart-btn svg {
    width: 13px;
    height: 13px;
  }

  .hp-banner-overlay h2 {
    font-size: 1.2rem;
  }

  .hp-banner-overlay p {
    font-size: 13px;
  }

  .hp-banner-cta {
    font-size: 12px;
    padding: 8px 16px;
  }

  .hp-info {
    gap: 12px;
    padding: 16px 10px;
  }

  .hp-info-item {
    min-width: 100px;
  }

  .hp-info-item h4 {
    font-size: 12px;
  }

  .hp-info-item p {
    font-size: 11px;
  }

  .hp-newsletter {
    padding: 24px 16px;
  }

  .hp-newsletter h3 {
    font-size: 1.1rem;
  }

  .hp-newsletter p {
    font-size: 12px;
  }

  .hp-newsletter-form {
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    padding: 0;
  }

  .hp-newsletter-form input {
    width: 100%;
    height: 44px;
    font-size: 14px;
    text-align: center;
  }

  .hp-newsletter-form button {
    width: 100%;
    height: 44px;
    font-size: 14px;
    padding: 0 16px;
  }

  .hp-footer {
    padding: 24px 16px 20px;
  }

  .hp-footer-content {
    gap: 20px 12px;
  }

  .hp-footer-col h4 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .hp-footer-col a,
  .hp-footer-col p {
    font-size: 12px;
  }

  .hp-footer-bottom {
    font-size: 10px;
  }

  .hp-footer-brands svg {
    width: 26px;
    height: 17px;
  }

  .hp-footer-pay-icon svg {
    width: 28px;
    height: 18px;
  }

  .hp-footer-seal img {
    height: 24px;
  }

  .hp-footer-content {
    gap: 20px 12px;
  }

  .hp-footer-col h4 {
    font-size: 12px;
  }

  .hp-footer-col a,
  .hp-footer-col p {
    font-size: 12px;
  }

  .hp-footer-bottom {
    font-size: 10px;
  }

  .hp-footer-brands svg {
    width: 26px;
    height: 17px;
  }

  .hp-footer-pay-icon svg {
    width: 28px;
    height: 18px;
  }

  .hp-cart-bar-header {
    padding: 8px 12px;
  }

  .hp-cart-bar-label {
    font-size: 13px;
  }

  .hp-cart-bar-total {
    font-size: 14px;
  }

  .hp-cart-items {
    padding: 4px 10px;
  }

  .hp-cart-item-img {
    width: 40px;
    height: 40px;
  }

  .hp-cart-item-name {
    font-size: 11px;
  }

  .hp-cart-checkout-btn {
    padding: 10px;
    font-size: 12px;
  }
}

/* ── Dispositivos pequenos (< 375px): iPhone SE, Galaxy S mini ── */
@media (max-width: 375px) {
  .hp-products-grid {
    gap: 6px;
  }

  .hp-product-info {
    padding: 6px;
  }

  .hp-product-name {
    font-size: 11px;
    min-height: calc(11px * 1.3 * 2);
  }

  .hp-product-price-main {
    font-size: 13px;
  }

  .hp-section-title {
    font-size: 14px;
  }

  .hp-header-logo span {
    font-size: 14px;
  }
}

/* ── Cart bar (sticky bottom) ──────────────────────────────────── */
.hp-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--hp-primary, #d4910a);
  color: #fff;
  display: none;
  flex-direction: column;
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .2);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.hp-cart-bar.visible {
  display: flex;
}

.hp-cart-bar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  cursor: pointer;
  user-select: none;
}

.hp-cart-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-cart-bar-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.hp-cart-bar-icon svg {
  width: 24px;
  height: 24px;
}
.hp-cart-bar-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: rgba(255,255,255,.3);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 3px;
}
.hp-cart-bar-label {
  font-size: 16px;
  font-weight: 700;
}
.hp-cart-bar-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.hp-cart-bar-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.hp-cart-bar-count {
  font-size: 12px;
  font-weight: 400;
  opacity: .75;
}
.hp-cart-bar-total {
  font-size: 17px;
  font-weight: 700;
}

.hp-cart-bar-chevron {
  transition: transform .25s;
  opacity: .7;
  flex-shrink: 0;
}
.hp-cart-bar.expanded .hp-cart-bar-chevron {
  transform: rotate(180deg);
}

.hp-cart-item-orig {
  color: var(--hp-cart-item-discount, #999);
  font-weight: 400;
  font-size: 12px;
  margin-right: 4px;
}

/* ── Cart panel (expandable) ──────────────────────────────────── */
.hp-cart-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: #fff;
  color: #1f2937;
}

.hp-cart-bar.expanded .hp-cart-panel {
  max-height: 60vh;
}

.hp-cart-items {
  max-height: calc(60vh - 60px);
  overflow-y: auto;
  padding: 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.hp-cart-items::-webkit-scrollbar { display: none; }

.hp-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
}

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

.hp-cart-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.hp-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-cart-item-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-cart-item-noimg svg {
  width: 20px;
  height: 20px;
  color: #ccc;
}

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

.hp-cart-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--hp-cart-item-title, #1f2937);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.hp-cart-item-remove {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .12s;
}
.hp-cart-item-remove:hover { color: #ef4444; }

.hp-cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.hp-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hp-cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--hp-cart-item-price, var(--hp-price-color, var(--hp-green, #1A8A52)));
}

.hp-cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}
.hp-cart-item-qty button {
  width: 30px;
  height: 30px;
  border: none;
  background: #fff;
  color: #555;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s;
}
.hp-cart-item-qty button:hover { background: #f3f4f6; }
.hp-cart-item-qty span {
  font-size: 13px;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
  color: #1f2937;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  line-height: 30px;
}

.hp-cart-footer {
  padding: 12px 20px 16px;
}

.hp-cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--hp-green, #16a34a);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: .03em;
  transition: background .15s;
}
.hp-cart-checkout-btn:hover { background: #15803d; }

/* old cart styles removed */

/* ── Cart limit toast ─────────────────────────────────────────── */
.hp-cart-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #1a1a1a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--hp-font-body, 'DM Sans', sans-serif);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  max-width: calc(100vw - 32px);
  text-align: left;
  line-height: 1.4;
}
.hp-cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hp-cart-toast svg { stroke: #facc15; flex-shrink: 0; }

/* ── Categories section ─────────────────────────────────────────── */
.hp-categories { padding: 48px 24px; }
.hp-cat-grid-wrap { width: 80%; max-width: 1200px; margin: 0 auto; }
.hp-cat-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.hp-cat-grid[data-cols-d="1"] { grid-template-columns: 1fr; }
.hp-cat-grid[data-cols-d="2"] { grid-template-columns: repeat(2, 1fr); }
.hp-cat-grid[data-cols-d="3"] { grid-template-columns: repeat(3, 1fr); }
.hp-cat-grid[data-cols-d="4"] { grid-template-columns: repeat(4, 1fr); }
.hp-cat-grid[data-cols-d="5"] { grid-template-columns: repeat(5, 1fr); }
.hp-cat-grid[data-cols-d="6"] { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 768px) {
  .hp-categories { padding: 32px 16px; }
  .hp-cat-grid-wrap { width: 100%; }
  .hp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-cat-grid[data-cols-m="1"] { grid-template-columns: 1fr; }
  .hp-cat-grid[data-cols-m="2"] { grid-template-columns: repeat(2, 1fr); }
  .hp-cat-grid[data-cols-m="3"] { grid-template-columns: repeat(3, 1fr); }
  .hp-cat-grid[data-cols-m="4"] { grid-template-columns: repeat(4, 1fr); }
}
.hp-cat-card { text-decoration: none; color: inherit; display: block; transition: transform .18s; }
.hp-cat-card:hover { transform: translateY(-3px); }
.hp-cat-card-inner { overflow: hidden; background: #f5f5f5; }
.hp-cat-img { aspect-ratio: 1; overflow: hidden; background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.hp-cat-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.hp-cat-card:hover .hp-cat-img img { transform: scale(1.04); }
.hp-cat-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1; }
.hp-cat-name { padding: 8px 4px 2px; font-size: 14px; font-weight: 600; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; background: transparent; }
.hp-categories .hp-section-title::after { height: var(--hp-cat-bar-h, 3px); }

/* ── Image Section ──────────────────────────────────────────────── */
.hp-image-section { padding: 40px 0; }
.hp-img-sec-wrap { width: 80%; max-width: 1200px; margin: 0 auto; }
.hp-img-sec-inner { width: 100%; }
.hp-img-sec-img { display: block; width: 100%; height: auto; }
.hp-img-sec-ratio { position: relative; width: 100%; overflow: hidden; }
.hp-img-sec-ratio img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-img-sec-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1 / 1; background: #f5f5f5; }
.hp-img-sec-text { margin-bottom: 16px; }
.hp-img-sec-text + .hp-img-sec-img,
.hp-img-sec-text + .hp-img-sec-ratio,
.hp-img-sec-text + .hp-img-sec-placeholder { margin-top: 0; }
.hp-img-sec-ratio + .hp-img-sec-text,
.hp-img-sec-img + .hp-img-sec-text,
.hp-img-sec-placeholder + .hp-img-sec-text { margin-top: 16px; margin-bottom: 0; }
.hp-img-sec-title { font-family: var(--hp-font-display, serif); font-size: 20px; font-weight: 600; color: #1a1a1a; margin: 0 0 8px; line-height: 1.3; }
.hp-img-sec-desc { font-size: 15px; color: #4b5563; margin: 0; line-height: 1.6; }
/* text alignment — desktop */
.hp-img-sec-text--d-left { text-align: left; }
.hp-img-sec-text--d-center { text-align: center; }
.hp-img-sec-text--d-right { text-align: right; }
/* text alignment — mobile */
@media (max-width: 768px) {
  .hp-image-section { padding: 28px 0; }
  .hp-img-sec-wrap { width: 100%; padding: 0 16px; }
  .hp-img-sec-text--m-left { text-align: left; }
  .hp-img-sec-text--m-center { text-align: center; }
  .hp-img-sec-text--m-right { text-align: right; }
}

/* ── Video Section ──────────────────────────────────────────────── */
.hp-video-section { padding: 40px 0; }
.hp-vid-sec-ratio { position: relative; width: 100%; overflow: hidden; }
.hp-vid-sec-ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.hp-vid-sec-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: #f5f5f5; }
@media (max-width: 768px) {
  .hp-video-section { padding: 28px 0; }
}

/* ── Marquee Text ──────────────────────────────────────────────── */
.hp-marquee-text { overflow: hidden; padding: 14px 0; cursor: default; display: block; }
.hp-mq-track { display: flex; align-items: center; width: max-content; animation: hp-mq-scroll var(--mq-dur, 40s) linear infinite; }
.hp-mq-half { display: flex; align-items: center; flex-shrink: 0; }
.hp-mq-item { white-space: nowrap; font-size: 15px; font-weight: 600; padding: 0 12px; }
.hp-mq-sep { white-space: nowrap; font-size: 14px; padding: 0 4px; opacity: 0.7; }
.hp-marquee-text:hover .hp-mq-track { animation-play-state: paused; }
@keyframes hp-mq-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ── FAQ Section ──────────────────────────────────────────────── */
.hp-faq-section { padding: 48px 0; }
.hp-faq-wrap { width: 80%; max-width: 860px; margin: 0 auto; }
.hp-faq-title { font-family: var(--hp-font-display, serif); font-size: 34px; font-weight: 700; color: #1a1a1a; margin: 0 0 28px; text-align: center; -webkit-font-smoothing: auto; }
.hp-faq-list { display: flex; flex-direction: column; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.hp-faq-item { border-bottom: 1px dashed #e5e7eb; }
.hp-faq-item:last-child { border-bottom: none; }
.hp-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; background: none; border: none; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600; color: #1a1a1a; line-height: 1.4;
}
.hp-faq-q:hover { color: var(--hp-primary, #48A880); }
.hp-faq-q span { flex: 1; }
.hp-faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.25s; stroke: currentColor; }
.hp-faq-item.open .hp-faq-icon { transform: rotate(180deg); }
.hp-faq-a { display: none; padding: 0 20px 18px; }
.hp-faq-item.open .hp-faq-a { display: block; }
.hp-faq-ans-body { font-size: 15px; color: #4b5563; line-height: 1.7; }
.hp-faq-ans-body ul, .hp-faq-ans-body ol { padding-left: 20px; margin: 6px 0; }
.hp-faq-ans-body p { margin: 0 0 6px; }
@media (max-width: 768px) {
  .hp-faq-section { padding: 32px 0; }
  .hp-faq-wrap { width: 92%; }
  .hp-faq-title { font-size: 24px; margin-bottom: 20px; }
  .hp-faq-q { font-size: 15px; padding: 15px 14px; }
  .hp-faq-ans-body { font-size: 14px; }
}

/* ── Customer Gallery Section ──────────────────────────────────── */
.hp-cg-section { padding: 36px 0 48px; overflow: hidden; }
.hp-cg-header { text-align: center; padding: 0 20px 32px; }
.hp-cg-title { font-family: var(--hp-font-display, serif); font-size: 26px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; -webkit-font-smoothing: auto; }
.hp-cg-subtitle { font-size: 16px; color: #3b9b74; line-height: 1.5; }
.hp-cg-track-wrap { position: relative; overflow: hidden; }
.hp-cg-track { display: flex; align-items: stretch; width: max-content; animation: hp-cg-scroll linear infinite; }
.hp-cg-card { flex-shrink: 0; height: var(--hp-cg-h-d, 240px); width: calc(var(--hp-cg-h-d, 240px) * 0.75); overflow: hidden; background: #e5e7eb; }
.hp-cg-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-cg-card--ph { display: flex; align-items: center; justify-content: center; }
.hp-cg-ph-icon { width: 50%; height: 50%; color: #c4c9d0; flex-shrink: 0; }
.hp-cg-fade-left, .hp-cg-fade-right { position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.hp-cg-fade-left { left: 0; background: linear-gradient(to right, var(--hp-cg-bg, #fff), transparent); }
.hp-cg-fade-right { right: 0; background: linear-gradient(to left, var(--hp-cg-bg, #fff), transparent); }
@keyframes hp-cg-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 768px) {
  .hp-cg-section { padding: 24px 0 36px; }
  .hp-cg-card { height: var(--hp-cg-h-m, 160px); width: calc(var(--hp-cg-h-m, 160px) * 0.75); }
  .hp-cg-title { font-size: 20px; }
  .hp-cg-subtitle { font-size: 14px; }
}

/* ── Produto em destaque (espelha produto/index.html) ────────────── */
.hp-fp-section { background: var(--hp-bg, #fff); }
.hp-fp-section-desc { font-size: 15px; color: #6b7280; margin: -16px 0 24px; }
.hp-fp-empty { border: 2px dashed #d1d5db; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; gap: 16px; }
.hp-fp-ph-icon { width: 60px; height: 60px; color: #9ca3af; }
.hp-fp-empty-text { font-size: 16px; color: #6b7280; margin: 0; }

.hp-fp-layout { display: flex; gap: 0; align-items: flex-start; }
.hp-fp-gallery { flex: 1; padding-right: 24px; position: relative; min-width: 0; }
.hp-fp-body { flex: 1; min-width: 0; }
.hp-fp-gal-main { position: relative; width: 100%; border-radius: 12px; overflow: hidden; background: var(--hp-bg, #fff); aspect-ratio: 4 / 3; }
.hp-fp-gal-track { display: flex; transition: transform .35s cubic-bezier(.4,0,.2,1); }
.hp-fp-gal-slide { width: 100%; flex-shrink: 0; }
.hp-fp-gal-slide img { width: 100%; height: 100%; object-fit: contain; object-position: top; display: block; }
.hp-fp-gal-prev, .hp-fp-gal-next { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); border: 1px solid #e5e7eb; box-shadow: 0 2px 6px rgba(0,0,0,.08); font-size: 22px; color: #333; display: flex; align-items: center; justify-content: center; z-index: 3; cursor: pointer; transition: background .15s; }
.hp-fp-gal-prev:hover, .hp-fp-gal-next:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.hp-fp-gal-prev { left: 10px; }
.hp-fp-gal-next { right: 10px; }
.hp-fp-badge { position: absolute; top: 12px; left: 12px; background: var(--hp-badge-color, #16a34a); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; z-index: 2; }
.hp-fp-gal-thumbs { display: flex; gap: 8px; padding: 10px 0; overflow-x: auto; scrollbar-width: none; }
.hp-fp-gal-thumbs::-webkit-scrollbar { display: none; }
.hp-fp-gal-thumb { width: 64px; height: 64px; border-radius: 8px; border: 2px solid transparent; cursor: pointer; flex-shrink: 0; overflow: hidden; transition: border-color .15s; }
.hp-fp-gal-thumb.active { border-color: #333; }
.hp-fp-gal-thumb:hover { border-color: #999; }
.hp-fp-gal-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hp-fp-details-card { background: #f9fafb; border-radius: 12px; padding: 16px 20px; margin-top: 12px; overflow: hidden; }
.hp-fp-details-title { font-size: 13px; font-weight: 700; letter-spacing: .05em; color: #374151; margin: 0 0 10px; }
.hp-fp-details-body { font-size: 14px; color: #4b5563; line-height: 1.65; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
.hp-fp-details-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 8px 0; }
.hp-fp-details-body table { width: 100%; max-width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13px; table-layout: fixed; }
.hp-fp-details-body table td, .hp-fp-details-body table th { border: 1px solid #e5e7eb; padding: 8px 12px; text-align: left; word-break: break-word; }
.hp-fp-details-body table tr:first-child td, .hp-fp-details-body table th { background: #f9fafb; font-weight: 600; color: #1f2937; }
.hp-fp-details-body iframe, .hp-fp-details-body video { max-width: 100%; }

.hp-fp-info-card { background: #fff; border-radius: 12px; padding: 24px 28px; box-shadow: 0 1px 8px rgba(0,0,0,.07), 0 0 1px rgba(0,0,0,.08); }

.hp-fp-badge-line { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #9ca3af; margin-bottom: 8px; }
.hp-fp-badge-sep { color: #d1d5db; }

.hp-fp-title-wrap { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 4px; }
.hp-fp-product-title { font-size: 15px; font-weight: 500; color: #111; line-height: 1.2; margin: 0; letter-spacing: -0.01em; }
.hp-fp-verified { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; background: #2196F3; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.hp-fp-verified svg { width: 14px; height: 14px; fill: #fff; }

.hp-fp-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; font-size: 14px; }
.hp-fp-stars-icons { display: inline-flex; gap: 3px; }
.hp-fp-stars-icons svg { width: 18px; height: 18px; }
.hp-fp-stars-score { font-weight: 700; color: #1a1a1a; }
.hp-fp-stars-count { color: #b0b8c4; }

.hp-fp-divider { border: none; border-top: 1px solid #eee; margin: 4px 0 20px; }

.hp-fp-price-box { margin-bottom: 20px; }
.hp-fp-price-de { font-size: 13px; color: #9ca3af; margin-bottom: 2px; }
.hp-fp-price-main-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; width: 100%; }
.hp-fp-price-por { font-size: 13px; color: #9ca3af; }
.hp-fp-price-main { font-size: 28px; font-weight: 700; color: var(--hp-price-color, var(--hp-green, #16a34a)); line-height: 1.1; }
.hp-fp-discount-tag { display: inline-flex; align-items: center; gap: 3px; background: #1a1a1a; color: #fff; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.hp-fp-install { font-size: 13px; color: #1a1a1a; margin: 8px 0 0; }
.hp-fp-savings { display: inline-flex; align-items: center; gap: 5px; background: #222; color: #fff; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin-top: 8px; }

.hp-fp-qty-wrap { display: inline-flex; align-items: center; border: 1px solid #e0e0e0; overflow: hidden; background: #fff; }
.hp-fp-qty-btn { width: 40px; height: 40px; background: #F1F3F2; border: none; font-size: 18px; cursor: pointer; color: #333; display: flex; align-items: center; justify-content: center; }
.hp-fp-qty-btn:hover { background: #e8ebe9; }
.hp-fp-qty-val { min-width: 40px; text-align: center; font-size: 16px; font-weight: 700; color: #333; border-left: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0; height: 40px; line-height: 40px; }

.hp-fp-trust { border-radius: 12px; padding: 2px 0; margin-bottom: 20px; display: flex; flex-direction: column; gap: 2px; }
.hp-fp-trust-item { display: flex; align-items: stretch; padding: 8px 4px; border-bottom: 1px solid #f0f0f0; }
.hp-fp-trust-item:last-child { border-bottom: none; }
.hp-fp-trust-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; align-self: center; }
.hp-fp-trust-icon svg { width: 26px; height: 26px; flex-shrink: 0; }
.hp-fp-trust-divider { width: 1.5px; border-radius: 2px; flex-shrink: 0; margin: 4px 12px; align-self: stretch; }
.hp-fp-trust-content { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.hp-fp-trust-label { display: block; font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; }
.hp-fp-trust-text { display: block; font-size: 12.5px; line-height: 1.4; }

.hp-fp-buy-btn, .hp-fp-cart-btn { display: block; width: 100%; border: none; padding: 16px; font-family: inherit; font-size: 16px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 12px; cursor: pointer; transition: background .15s, color .15s, transform .1s, box-shadow .15s; text-align: center; margin-top: 16px; }
.hp-fp-buy-btn { box-shadow: 0 2px 8px rgba(22,163,74,.25); }
.hp-fp-buy-btn:hover { background: var(--hpfp-btn-hover-bg, #15803d); color: var(--hpfp-btn-hover-color, inherit); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(22,163,74,.35); }
.hp-fp-cart-btn:hover { background: var(--hpfp-cart-hover-bg, #333); color: var(--hpfp-cart-hover-color, inherit); transform: translateY(-1px); }
.hp-fp-buy-btn:active, .hp-fp-cart-btn:active { transform: translateY(0); }
.hp-fp-buy-btn.hover-none:hover, .hp-fp-cart-btn.hover-none:hover { transform: none; box-shadow: none; }
.hp-fp-buy-btn.hover-pulse:hover, .hp-fp-cart-btn.hover-pulse:hover { animation: hpFpBtnPulse 1s ease-in-out infinite; }
.hp-fp-buy-btn.hover-shine, .hp-fp-cart-btn.hover-shine { position: relative; overflow: hidden; }
.hp-fp-buy-btn.hover-shine::after, .hp-fp-cart-btn.hover-shine::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); }
.hp-fp-buy-btn.hover-shine:hover::after, .hp-fp-cart-btn.hover-shine:hover::after { left: 100%; transition: left .5s ease; }
.hp-fp-buy-btn.hover-glow:hover { box-shadow: 0 0 20px var(--hpfp-btn-glow, rgba(22,163,74,.5)); transform: translateY(-1px); }
.hp-fp-cart-btn.hover-glow:hover { box-shadow: 0 0 20px var(--hpfp-cart-glow, rgba(26,26,26,.4)); transform: translateY(-1px); }
.hp-fp-buy-btn.hover-scale:hover, .hp-fp-cart-btn.hover-scale:hover { transform: scale(1.04); }
.hp-fp-buy-btn.hover-elevate:hover, .hp-fp-cart-btn.hover-elevate:hover { transform: translateY(-2px); }
@keyframes hpFpBtnPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }

.hp-fp-payment-card { background: #f9fafb; border-radius: 10px; padding: 18px 20px; margin-top: 16px; text-align: center; }
.hp-fp-payment-header { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.hp-fp-payment-icon { width: 22px; height: 22px; color: #6b7280; }
.hp-fp-payment-header-text { font-size: 13px; color: #6b7280; text-align: left; }
.hp-fp-payment-header-text strong { color: #16a34a; }
.hp-fp-payment-brands { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.hp-fp-payment-brands-row { display: flex; align-items: center; justify-content: center; gap: 5px; flex-wrap: wrap; width: 100%; }
.hp-fp-payment-brand { display: inline-flex; align-items: center; }
.hp-fp-payment-brand svg { width: 34px; height: 22px; }

.hp-fp-countdown { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.hp-fp-cd-block { display: flex; flex-direction: column; align-items: center; }
.hp-fp-cd-h, .hp-fp-cd-m, .hp-fp-cd-s { font-size: 32px; font-weight: 700; color: #1a1a1a; line-height: 1; font-variant-numeric: tabular-nums; }
.hp-fp-cd-unit { font-size: 10px; font-weight: 400; color: #9ca3af; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.hp-fp-cd-sep { font-size: 28px; font-weight: 700; color: #d1d5db; align-self: flex-start; margin-top: 2px; }

@media (max-width: 768px) {
  .hp-fp-layout { flex-direction: column; }
  .hp-fp-gallery { padding-right: 0; padding-bottom: 16px; width: 100%; }
  .hp-fp-gal-thumb { width: 52px; height: 52px; }
  .hp-fp-gal-prev, .hp-fp-gal-next { width: 32px; height: 32px; font-size: 16px; }
  .hp-fp-info-card { padding: 18px 14px; }
  .hp-fp-product-title { font-size: 13px; }
  .hp-fp-price-main { font-size: 22px; }
}