
/* ============================================================
   PLYZEN HOMEPAGE v2 — NEW DESIGN SYSTEM
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* --- Google Fonts loaded via enqueue.php --- */

/* --- HP CSS Variables --- */
:root {
  --hp-gold:    #C8773A;
  --hp-dark:    #1C1C1E;
  --hp-darker:  #111113;
  --hp-grey:    #F5F4F2;
  --hp-border:  #E8E5DF;
  --hp-text:    #1C1C1E;
  --hp-muted:   #6B6860;
  --hp-white:   #FFFFFF;
  --hp-wa:      #25D366;
  --hp-radius:  8px;
  --hp-radius-lg: 14px;
  --hp-shadow:  0 4px 24px rgba(0,0,0,.10);
  --hp-transition: .22s ease;
}

/* ============================================================
   HP BUTTONS
   ============================================================ */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .7rem 1.5rem;
  border-radius: var(--hp-radius);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--hp-transition);
  white-space: nowrap;
  line-height: 1;
}
.hp-btn:focus-visible { outline: 3px solid var(--hp-gold); outline-offset: 3px; }
.hp-btn--gold  { background: var(--hp-gold); color: #fff; border-color: var(--hp-gold); }
.hp-btn--gold:hover { background: #b3631f; border-color: #b3631f; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,119,58,.35); }
.hp-btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.hp-btn--ghost:hover { background: rgba(255,255,255,.2); }
.hp-btn--outline { background: transparent; color: var(--hp-text); border-color: var(--hp-border); }
.hp-btn--outline:hover { border-color: var(--hp-gold); color: var(--hp-gold); }
.hp-btn--whatsapp { background: var(--hp-wa); color: #fff; border-color: var(--hp-wa); }
.hp-btn--whatsapp:hover { background: #1da851; }
.hp-btn--lg  { padding: .875rem 2rem; font-size: 1rem; }
.hp-btn--sm  { padding: .45rem 1rem; font-size: .8125rem; }

/* ============================================================
   HP SECTION SHARED
   ============================================================ */
.hp-section { padding: 88px 0; }
.hp-section--grey { background: var(--hp-grey); }
.hp-section-head { margin-bottom: 48px; }
.hp-section-head.centered { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 48px; }
.hp-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hp-gold);
  margin-bottom: 12px;
}
.hp-section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--hp-dark);
  line-height: 1.2;
  margin: 0 0 14px;
}
.hp-section-head p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: var(--hp-muted);
  line-height: 1.65;
  margin: 0;
}
.hp-section-foot { text-align: center; margin-top: 44px; }
.hp-empty { text-align: center; color: var(--hp-muted); padding: 32px; background: var(--hp-grey); border-radius: var(--hp-radius-lg); }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hp-hero__bg {
  position: absolute; inset: 0;
}
.hp-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18,18,20,.82) 0%, rgba(18,18,20,.55) 55%, rgba(18,18,20,.2) 100%);
}
.hp-hero__content {
  position: relative; z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 680px;
}
.hp-hero__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hp-gold);
  background: rgba(200,119,58,.12);
  border: 1px solid rgba(200,119,58,.3);
  border-radius: 99px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.hp-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -.5px;
}
.hp-hero__accent { color: var(--hp-gold); }
.hp-hero__desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 560px;
}
.hp-hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
}
.hp-hero__pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hp-pill {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  padding: 6px 14px;
}

/* ============================================================
   SECTION 2 — CATEGORIES
   ============================================================ */
.hp-cats-section { background: #fff; }
.hp-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .hp-cats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .hp-cats-grid { grid-template-columns: 1fr; } }

.hp-cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 20px 18px;
  border: 1.5px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  text-decoration: none;
  background: #fff;
  transition: all var(--hp-transition);
  position: relative;
  overflow: hidden;
}
.hp-cat-card:hover {
  border-color: var(--hp-gold);
  box-shadow: 0 8px 28px rgba(200,119,58,.12);
  transform: translateY(-2px);
}
.hp-cat-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--cc) 12%, white);
  border: 1.5px solid color-mix(in srgb, var(--cc) 25%, white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cc);
}
.hp-cat-icon svg { width: 26px; height: 26px; }
.hp-cat-body { flex: 1; min-width: 0; }
.hp-cat-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--hp-dark);
  margin: 0 0 4px;
  line-height: 1.25;
}
.hp-cat-body span {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--hp-muted);
}
.hp-cat-arrow { color: var(--hp-muted); transition: color var(--hp-transition), transform var(--hp-transition); }
.hp-cat-card:hover .hp-cat-arrow { color: var(--hp-gold); transform: translateX(3px); }

/* ============================================================
   SECTION 3 — PRODUCTS
   ============================================================ */
.hp-prods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .hp-prods-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px)  { .hp-prods-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .hp-prods-grid { grid-template-columns: 1fr; } }

.hp-prod-card {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  border: 1.5px solid var(--hp-border);
  overflow: hidden;
  transition: all var(--hp-transition);
}
.hp-prod-card:hover { box-shadow: var(--hp-shadow); transform: translateY(-2px); border-color: var(--hp-gold); }

.hp-prod-card__img {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--hp-grey);
  text-decoration: none;
}
.hp-prod-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.hp-prod-card:hover .hp-prod-card__img img { transform: scale(1.04); }
.hp-prod-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #ccc;
  background: var(--hp-grey);
}
.hp-prod-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--hp-gold); color: #fff;
  padding: 4px 10px; border-radius: 99px;
}
.hp-prod-card__body { padding: 16px; }
.hp-prod-cat {
  font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--hp-gold);
  display: block; margin-bottom: 6px;
}
.hp-prod-name {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem; font-weight: 700;
  margin: 0 0 4px; line-height: 1.35;
}
.hp-prod-name a { color: var(--hp-dark); text-decoration: none; }
.hp-prod-name a:hover { color: var(--hp-gold); }
.hp-prod-sku {
  font-family: 'Inter', sans-serif;
  font-size: .75rem; color: var(--hp-muted);
  display: block; margin-bottom: 10px;
}
.hp-prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; }
.hp-prod-price { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; color: var(--hp-dark); }
.hp-prod-price .woocommerce-Price-amount { font-weight: 700; }

/* ============================================================
   SECTION 4 — REVIEWS
   ============================================================ */
.hp-reviews-section { background: #fff; }
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .hp-reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .hp-reviews-grid { grid-template-columns: 1fr; } }

.hp-review-card {
  background: var(--hp-grey);
  border-radius: var(--hp-radius-lg);
  padding: 28px;
  border: 1.5px solid var(--hp-border);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--hp-transition);
}
.hp-review-card:hover { box-shadow: var(--hp-shadow); }
.hp-review-stars { display: flex; gap: 3px; }
.hp-review-text {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--hp-text);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.hp-review-author { display: flex; align-items: center; gap: 12px; }
.hp-review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .875rem; font-weight: 700;
  flex-shrink: 0;
}
.hp-review-author strong {
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 700;
  display: block; color: var(--hp-dark);
}
.hp-review-author span {
  font-family: 'Inter', sans-serif;
  font-size: .8rem; color: var(--hp-muted);
}
.hp-stats-bar {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: 0;
  background: var(--hp-dark);
  border-radius: var(--hp-radius-lg);
  padding: 28px 32px;
}
.hp-stat { text-align: center; padding: 8px 36px; }
.hp-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 800;
  color: var(--hp-gold);
}
.hp-stat span {
  font-family: 'Inter', sans-serif;
  font-size: .8rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: 1px;
}
.hp-stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,.1); }
@media (max-width: 640px) { .hp-stat { padding: 12px 20px; } .hp-stat-sep { display: none; } }

/* ============================================================
   SECTION 5 — BLOG
   ============================================================ */
.hp-blog-section {}
.hp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .hp-blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .hp-blog-grid { grid-template-columns: 1fr; } }

.hp-blog-card {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  border: 1.5px solid var(--hp-border);
  overflow: hidden;
  transition: box-shadow var(--hp-transition), transform var(--hp-transition);
}
.hp-blog-card:hover { box-shadow: var(--hp-shadow); transform: translateY(-2px); }
.hp-blog-img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--hp-grey);
  text-decoration: none;
}
.hp-blog-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.hp-blog-card:hover .hp-blog-img img { transform: scale(1.04); }
.hp-blog-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #ccc;
}
.hp-blog-body { padding: 20px 22px 22px; }
.hp-blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hp-blog-cat {
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--hp-gold);
}
.hp-blog-date {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; color: var(--hp-muted);
}
.hp-blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--hp-dark); margin: 0 0 10px;
  line-height: 1.35;
}
.hp-blog-body h3 a { color: inherit; text-decoration: none; }
.hp-blog-body h3 a:hover { color: var(--hp-gold); }
.hp-blog-body p { font-family: 'Inter', sans-serif; font-size: .875rem; color: var(--hp-muted); line-height: 1.6; margin: 0 0 14px; }
.hp-read-more { font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 600; color: var(--hp-gold); text-decoration: none; }
.hp-read-more:hover { text-decoration: underline; }

/* ============================================================
   SECTION 6 — LOCATION
   ============================================================ */
.hp-location-section { background: #fff; }
.hp-location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 860px) { .hp-location-inner { grid-template-columns: 1fr; gap: 40px; } }
.hp-location-info {}
.hp-location-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--hp-dark);
  margin: 8px 0 14px;
}
.hp-location-info > p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; color: var(--hp-muted); line-height: 1.65; margin-bottom: 32px;
}
.hp-loc-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.hp-loc-item { display: flex; gap: 16px; align-items: flex-start; }
.hp-loc-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(200,119,58,.08);
  border: 1.5px solid rgba(200,119,58,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--hp-gold); flex-shrink: 0;
}
.hp-loc-item strong { font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700; color: var(--hp-dark); display: block; margin-bottom: 3px; }
.hp-loc-item p { font-family: 'Inter', sans-serif; font-size: .875rem; color: var(--hp-muted); line-height: 1.55; margin: 0; }
.hp-loc-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hp-map-wrap {
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1.5px solid var(--hp-border);
  box-shadow: var(--hp-shadow);
}
.hp-map-wrap iframe { display: block; min-height: 420px; }

/* ============================================================
   SECTION 7 — GET IN TOUCH CTA
   ============================================================ */
.hp-cta-section {
  background: var(--hp-darker);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.hp-cta-section__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,119,58,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hp-cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.hp-cta-text { max-width: 520px; }
.hp-cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.hp-cta-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem; color: rgba(255,255,255,.7);
  line-height: 1.65; margin-bottom: 28px;
}
.hp-cta-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.hp-cta-list li {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 10px;
}
.hp-cta-list li svg { color: var(--hp-gold); flex-shrink: 0; }
.hp-cta-btns {
  display: flex; flex-direction: column; gap: 14px;
  min-width: 260px;
}
.hp-cta-btns .hp-btn { justify-content: center; }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .hp-hero { min-height: 100svh; }
  .hp-hero__content { padding-top: 100px; }
  .hp-section { padding: 64px 0; }
  .hp-cta-inner { flex-direction: column; }
  .hp-cta-btns { width: 100%; }
}
@media (max-width: 480px) {
  .hp-hero__actions { flex-direction: column; }
  .hp-hero__actions .hp-btn { justify-content: center; }
  .hp-cats-grid { grid-template-columns: 1fr; }
}
