/* RELX site6 — PDP specs + buy buttons */
:root {
  --relx-ink: #0b0b0b;
  --relx-line: #e6e6e6;
  --relx-paper: #f5f5f5;
  --relx-accent: #c8a24a;
}

.vape-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--relx-ink);
  margin: 10px 0 16px;
}

.vape-spec-caption {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
}

.vape-spec-list {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  background: #fff;
  border: 1px solid var(--relx-line);
}
.vape-spec-list th,
.vape-spec-list td {
  border: 1px solid var(--relx-line);
  padding: 10px 12px;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
}
.vape-spec-list th {
  width: 34%;
  background: var(--relx-paper);
  font-weight: 600;
}

.vape-rich p {
  line-height: 1.85;
  margin: 0 0 12px;
  color: #333;
}

.vape-buybox {
  margin: 10px 0 6px;
  padding: 16px;
  background: linear-gradient(180deg, #fafafa, #f2f2f2);
  border: 1px solid var(--relx-line);
}
.vape-buybox__qty {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  background: #fff;
  overflow: hidden;
}
.vape-buybox__qty button {
  width: 40px;
  height: 40px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}
.vape-buybox__qty button:hover { background: #eee; }
.vape-buybox__qty input {
  width: 54px;
  height: 40px;
  border: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 15px;
}
.vape-buybox__btns,
.vape-buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.vape-btn-cart,
.vape-btn-buy {
  min-width: 158px;
  height: 48px;
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.vape-btn-cart {
  background: var(--relx-ink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.vape-btn-cart:hover {
  background: #000;
  transform: translateY(-1px);
}
.vape-btn-buy {
  background: var(--relx-accent);
  color: #111;
  box-shadow: 0 6px 14px rgba(200,162,74,.28);
}
.vape-btn-buy:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.header__logo img,
img.header__logo-img,
a.header__logo img {
  max-height: 78px !important;
  min-width: 168px !important;
  width: auto !important;
  height: 78px !important;
  object-fit: contain !important;
  border-radius: 0;
  background: transparent !important;
}
@media (max-width: 767px) {
  .header__logo img,
  img.header__logo-img,
  a.header__logo img {
    max-height: 56px !important;
    min-width: 120px !important;
    height: 56px !important;
  }
}

.vape-site6-footer {
  background: #111;
  color: #eee;
  padding: 36px 16px;
  text-align: center;
}
.vape-site6-footer a { color: #c8a24a; text-decoration: none; margin: 0 8px; }
.vape-site6-footer p { margin: 8px 0; line-height: 1.7; }

.vape-cart-mask {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 80;
}
.vape-cart-mask.is-show { display: block; }
.vape-cart-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 90;
  box-shadow: -8px 0 28px rgba(0,0,0,.18);
  flex-direction: column;
}
.vape-cart-panel.is-show { display: flex; }
.vape-cart-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--relx-line);
}
.vape-cart-close {
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.vape-local-cart { flex: 1; overflow: auto; padding: 14px 16px 24px; }
.vape-local-cart-empty { color: #777; padding: 24px 8px; text-align: center; }
.vape-local-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--relx-line);
}
.vape-local-cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: var(--relx-paper);
}
.vape-local-cart-item .title { font-size: 14px; line-height: 1.4; margin-bottom: 6px; }
.vape-local-cart-item .row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: #555;
}
.vape-local-cart-item .remove { cursor: pointer; text-decoration: underline; color: #111; }
.vape-local-cart-total {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--relx-line);
  font-weight: 700;
}
.vape-checkout-form label { display: block; font-size: 13px; margin: 10px 0 4px; }
.vape-checkout-form input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--relx-line);
  padding: 0 10px;
  box-sizing: border-box;
}
.vape-checkout-btn {
  width: 100%;
  height: 46px;
  margin-top: 14px;
  border: 0;
  background: var(--relx-ink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
#vape-cart-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  background: #111;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 100;
}
#vape-cart-toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 575px) {
  .vape-btn-cart,
  .vape-btn-buy {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }
}
