
/* =========================
BACKGROUND
========================= */
.hp-hero{
  background:radial-gradient(circle at top left, rgba(87,175,225,.22), transparent 32%),
    linear-gradient(135deg,#f6fbff 0%, #eef6fd 48%, #ffffff 100%);
  padding:50px 0;
}

/* =========================
GRID
========================= */
.hp-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:flex-start; /* 🔥 FIX */
}

@media(max-width:900px){
  .hp-hero-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
}

/* =========================
IMAGE WRAP
========================= */
.hp-main-image{
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:320px;
}

.hp-main-image img{
  max-width:100%;
  height:auto;
  object-fit:contain;
  transition:0.3s ease;
}

.hp-main-image img:hover{
  transform:scale(1.04);
}

/* =========================
THUMBNAILS
========================= */
.hp-thumbs{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.hp-thumb{
  width:70px;
  height:70px;
  border-radius:10px;
  object-fit:cover;
  cursor:pointer;
  border:2px solid transparent;
  transition:0.2s ease;
}

.hp-thumb:hover{
  transform:scale(1.08);
}

.hp-thumb.active{
  border-color:#f4c430;
}

/* =========================
RIGHT SIDE (PREMIUM LOOK)
========================= */
.hp-hero-right{
  padding:5px 10px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start; /* 🔥 IMPORTANT */
}

/* =========================
PRICE
========================= */
.hp-price{
  font-size:14px;
  color:#666;
  margin-bottom:12px;
}

/* =========================
TITLE (STRONG VISUAL)
========================= */
.hp-hero-title{
  font-size:38px;
  font-weight:800;
  line-height:1.2;
  color:#111;
  margin-bottom:10px;
}

@media(max-width:768px){
  .hp-hero-title{
    font-size:26px;
  }
}

/* =========================
REVIEWS
========================= */
.hp-product-reviews{
  display:flex;
  align-items:center;
  gap:8px;
  margin:10px 0;
  font-size:14px;
}

.hp-stars{
  color:#00b67a;
}

/* =========================
DIVIDER
========================= */
.hp-divider{
  width:60px;
  height:4px;
  background:#f4c430;
  margin:15px 0;
  border-radius:10px;
}

/* =========================
DESCRIPTION
========================= */
.hp-hero-desc{
  font-size:15px;
  color:#444;
  line-height:1.6;
  max-width:520px;
}

/* =========================
TRUST POINTS (NO CTA)
========================= */
.hp-cta-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:15px;
  font-size:13px;
}

.hp-cta-trust span{
  background:#fff;
  padding:6px 10px;
  border-radius:6px;
  border:1px solid #eee;
}

/* =========================
TOP BAR
========================= */
.hp-hero-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.hp-hero-badges{
  display:flex;
  gap:8px;
}

.hp-hero-badges span{
  background:#f4c430;
  color:#000;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
}

/* =========================
MOBILE FIXES
========================= */
@media(max-width:768px){

  .hp-main-image{
    min-height:250px;
    padding:15px;
  }

  .hp-thumb{
    width:60px;
    height:60px;
  }

  .hp-hero-desc{
    font-size:14px;
  }
.hp-hero-breadcrumb{
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}

.hp-hero-breadcrumb a{
  color: #111;
  text-decoration: none;
}

.hp-hero-breadcrumb a:hover{
  color: #f4c430;
}

.hp-hero-breadcrumb .delimiter{
  margin: 0 6px;
  color: #999;
}
}
/* ==========================================================
   FINAL SAFE REDESIGNED PRODUCT CSS (FIXED VERSION)
========================================================== */

.hp-product-redesign {
	--hp-yellow: #f4c430;
	--hp-black: #000;
	--hp-white: #fff;
	--hp-text: #151515;
	--hp-text-soft: #151515;
	--hp-border: rgba(0,0,0,0.08);
	font-family: inherit;
}

/* ================= CONTAINER FIX ================= */

.hp-product-redesign .hp-shell {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
	width: 100%;
}

.hp-product-redesign section {
	padding: 30px 0;
}

/* ================= HEADINGS ================= */

.hp-section-title {
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 800;
	color: var(--hp-black);
	margin-bottom: 10px;
}

.hp-section-copy {
	font-size: 15px;
	line-height: 1.7;
	color: var(--hp-text-soft);
}

/* ================= TRUST GRID ================= */

.hp-certifications__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
	gap: 15px;
}

.hp-certification-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--hp-border);
	transition: 0.3s;
}

.hp-certification-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.hp-certification-card__icon {
	width: 44px;
	height: 44px;
	background: #000;
	color: #f4c430;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}

/* ================= TABS SYSTEM ================= */

.hp-tabs-shell {
	background: #fff;
	border: 1px solid var(--hp-border);
	border-radius: 16px;
	padding: 20px;
}

/* NAV */
.hp-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

/* BUTTON */
.hp-tab-button {
	padding: 10px 16px;
	border-radius: 30px;
	border: 1px solid #ddd;
	background: #f5c431;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
}

/* ACTIVE */
.hp-tab-button.is-active {
	background: #000;
	color: #f4c430;
	border-color: #000;
}

/* PANELS */
.hp-tab-panel {
	display: none;
}

.hp-tab-panel.is-active {
	display: block;
}

/* CARD */
.hp-panel-card {
	background: #fff;
	border: 1px solid var(--hp-border);
	border-radius: 14px;
	padding: 20px;
}

/* ================= CONTENT ================= */

.hp-wysiwyg p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--hp-text-soft);
}

/* ================= PACKAGING GRID ================= */

.hp-option-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
	gap: 20px;
}

.hp-option-card {
	background: #fff;
	border: 1px solid var(--hp-border);
	border-radius: 16px;
	overflow: hidden;
	transition: 0.3s;
}

.hp-option-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.hp-option-card__media {
	background: #f5f5f5;
	padding: 15px;
	text-align: center;
}

.hp-option-card__body {
	padding: 16px;
}

.hp-option-card__title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 6px;
}

.hp-option-card__meta {
	font-size: 13px;
	color: #b28a00;
	margin-bottom: 8px;
}

.hp-option-card__description p {
	font-size: 14px;
	color: var(--hp-text-soft);
}

/* TAGS */
.hp-option-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.hp-option-card__tags span {
	background: rgba(244,196,48,0.15);
	padding: 6px 10px;
	border-radius: 20px;
	font-size: 12px;
}

/* ================= TRUST + PROCESS ================= */

.hp-confidence-layout {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
	gap: 20px;
}

.hp-confidence-card {
	background: #fff;
	padding: 20px;
	border-radius: 16px;
	border: 1px solid var(--hp-border);
}

.hp-confidence-card--process {
	background: #111;
	color: #fff;
}

/* PROCESS STEPS */
.hp-process-steps {
	display: grid;
	gap: 15px;
	margin-top: 15px;
}

.hp-process-step {
	display: flex;
	gap: 12px;
}

.hp-process-step__number {
	width: 50px;
	height: 50px;
	background: #f4c430;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: bold;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

	.hp-tabs-nav {
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.hp-tab-button {
		white-space: nowrap;
	}

	.hp-section-title {
		font-size: 22px;
	}
}
/* ================= REMOVE BLUE HOVER / FOCUS ================= */

.hp-tab-button:hover,
.hp-tab-button:focus,
.hp-tab-button:active {
	background: #000 !important;
	color: #f4c430 !important;
	border-color: #000 !important;
	outline: none !important;
	box-shadow: none !important;
}

/* REMOVE BROWSER DEFAULT FOCUS */
.hp-tab-button:focus-visible {
	outline: none !important;
}

/* FORCE NORMAL STATE */
.hp-tab-button {
	background: #fff;
	color: #000;
}

/* ACTIVE STATE */
.hp-tab-button.is-active {
	background: #000 !important;
	color: #f4c430 !important;
}
/* ==========================================================
   PRO RELATED PRODUCTS SLIDER
========================================================== */

.hp-related-products{
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.hp-center{
  text-align: center;
}

.hp-section-title{
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #000;
}

/* SLIDER */
.hp-related-slider{
  overflow: hidden;
  position: relative;
}

/* TRACK */
.hp-slider-track{
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* CARD */
.hp-product-card{
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 18px;
  transition: all 0.35s ease;
}

.hp-product-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* IMAGE */
.hp-product-img{
  text-align: center;
  margin-bottom: 12px;
}

.hp-product-img img{
  max-height: 170px;
  object-fit: contain;
}

/* TITLE */
.hp-product-title{
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
  line-height: 1.3;
}

/* PRICE */
.hp-product-price{
  font-size: 14px;
  font-weight: 700;
  color: #f4c430;
}

/* HOVER EFFECT */
.hp-product-card:hover .hp-product-title{
  color: #f4c430;
}

/* MOBILE */
@media(max-width:768px){
  .hp-product-card{
    min-width: 200px;
  }
}