/*
Theme Name: Royal Hive
Theme URI: https://royalhive.pk
Author: Royal Hive
Description: Premium WooCommerce theme for Royal Hive Natural Honey — Rose, Ginger & Cardamom infused honeys.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
WC requires at least: 7.0
WC tested up to: 8.4
License: Private
Text Domain: royal-hive
Tags: woocommerce, ecommerce, honey, premium, cream
*/

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --bg:          #FBF7EE;
  --bg2:         #F4EDD8;
  --bg3:         #EDE4CC;
  --gold:        #B8860B;
  --gold2:       #D4A012;
  --gold-light:  #F0D080;
  --charcoal:    #2D2920;
  --ch2:         #4A4030;
  --ch3:         #6B5E48;
  --white:       #FFFFFF;
  --rose-tint:   #FDF3EE;
  --rose-mid:    #F5DDD4;
  --ginger-tint: #FDF8EE;
  --ginger-mid:  #F5E4C0;
  --card-tint:   #F0F5EC;
  --card-mid:    #D8EAD0;
  --border:      rgba(184,134,11,0.2);
  --border2:     rgba(45,41,32,0.1);
  --radius:      2px;
  --shadow:      0 8px 36px rgba(45,41,32,0.1);
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.1;
}
p { line-height: 1.85; }

/* ═══════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════ */
.rh-container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.rh-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rh-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.text-center { text-align: center; }
.sec-eye {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.sec-h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--charcoal);
}
.sec-h2 em { font-style: italic; color: var(--gold); }
.gold-bar   { width: 50px; height: 2px; background: var(--gold); margin-top: 18px; }
.gold-bar-c { width: 50px; height: 2px; background: var(--gold); margin: 18px auto 0; }
.gold-bar-l { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; }
.rh-sec { padding: 88px 60px; }
.rh-sec-sm { padding: 56px 60px; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .25s;
}
.btn-gold:hover { background: var(--gold2); color: var(--white); }

.btn-charcoal {
  background: var(--charcoal);
  color: var(--white);
  padding: 13px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .25s;
}
.btn-charcoal:hover { background: var(--ch2); color: var(--white); }

.btn-outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  padding: 12px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  transition: all .25s;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 12px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  transition: all .25s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-wa {
  background: none;
  border: 1.5px solid #25D366;
  color: #25D366;
  padding: 13px 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}
.btn-wa:hover { background: #25D366; color: var(--white); }

/* ═══════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════ */
.rh-announce {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.rh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  border-bottom: 1px solid var(--border2);
  position: sticky;
  top: 0;
  background: rgba(251,247,238,.96);
  backdrop-filter: blur(12px);
  z-index: 200;
}
.rh-nav-links { display: flex; gap: 34px; align-items: center; }
.rh-nav-links a {
  color: var(--ch3);
  font-size: 13px;
  font-weight: 400;
  transition: color .25s;
  position: relative;
}
.rh-nav-links a:hover,
.rh-nav-links a.current-menu-item,
.rh-nav-links a.active { color: var(--gold); }
.rh-logo { flex: 0 0 auto; }
.rh-logo img { width: 72px; height: 72px; }
.rh-logo svg { width: 72px; height: 72px; }
.rh-nav-right { display: flex; align-items: center; gap: 18px; }

/* Cart icon */
.rh-cart-link {
  position: relative;
  color: var(--charcoal);
  font-size: 20px;
  text-decoration: none;
}
.rh-cart-link .count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: var(--white);
  width: 17px; height: 17px;
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.rh-nav-cta {
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s;
}
.rh-nav-cta:hover { background: var(--ch2); color: var(--gold-light); }

/* Hamburger */
.rh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.rh-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  transition: all .3s;
}

/* Mobile overlay & drawer */
.rh-mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,41,32,.65);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.rh-mob-overlay.open { opacity: 1; pointer-events: all; }

.rh-mob-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 950;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.rh-mob-drawer.open { right: 0; }
.rh-mob-close {
  align-self: flex-end;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--ch3); margin-bottom: 24px;
}
.rh-mob-nav {
  border-top: 1px solid var(--border2);
}
.rh-mob-nav li a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border2);
}
.rh-mob-cta {
  display: block;
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 500;
}
.rh-mob-social {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
  flex-wrap: wrap;
}
.rh-mob-social a { font-size: 12px; color: var(--ch3); }

/* ═══════════════════════════════════════════════════
   QUIZ MODAL
═══════════════════════════════════════════════════ */
.rh-quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,41,32,.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.rh-quiz-overlay.open { opacity: 1; pointer-events: all; }
.rh-quiz-box {
  background: var(--white);
  max-width: 580px;
  width: 100%;
  transform: translateY(30px);
  transition: transform .4s;
  position: relative;
  overflow: hidden;
}
.rh-quiz-overlay.open .rh-quiz-box { transform: translateY(0); }
.rh-quiz-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  font-size: 22px; cursor: pointer;
  color: var(--ch3); z-index: 2;
}
.rh-quiz-head {
  background: var(--charcoal);
  padding: 30px 38px;
}
.rh-quiz-head p {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240,208,128,.6);
  margin-bottom: 8px;
}
.rh-quiz-head h2 {
  font-size: clamp(18px,2.5vw,26px);
  font-weight: 400;
  color: var(--white);
}
.rh-quiz-body { padding: 32px 38px; }
.rh-quiz-q { font-size: 15px; color: var(--charcoal); margin-bottom: 22px; font-weight: 400; }
.rh-quiz-opts { display: flex; flex-direction: column; gap: 11px; }
.rh-quiz-opt {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1.5px solid var(--border2);
  padding: 15px 18px;
  cursor: pointer;
  transition: all .25s;
  background: var(--bg);
}
.rh-quiz-opt:hover { border-color: var(--gold); background: var(--bg2); }
.rh-quiz-opt-icon { font-size: 22px; flex-shrink: 0; }
.rh-quiz-opt-text strong { display: block; font-size: 14px; font-weight: 500; color: var(--charcoal); }
.rh-quiz-opt-text span { font-size: 12px; color: var(--ch3); }
.rh-quiz-skip { text-align: center; margin-top: 18px; }
.rh-quiz-skip button { background: none; border: none; font-size: 12px; color: var(--ch3); cursor: pointer; text-decoration: underline; }
/* Quiz result */
.rh-quiz-result { padding: 36px; text-align: center; display: none; }
.rh-quiz-result.show { display: block; }
.rh-quiz-jar {
  width: 96px; height: 144px;
  border-radius: 5px 5px 14px 14px;
  margin: 0 auto 22px;
  position: relative; overflow: hidden;
}
.rh-quiz-jar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg,rgba(255,255,255,.24) 0%,transparent 55%);
}
.qrj-rose { background: linear-gradient(150deg,#E8948A,#C8705A,#A84838); }
.qrj-ginger { background: linear-gradient(150deg,#E0A030,#B8780A,#8C5004); }
.qrj-cardamom { background: linear-gradient(150deg,#C8C04A,#A09020,#706800); }
.rh-quiz-match-lbl { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.rh-quiz-match-name { font-family: 'Playfair Display',serif; font-size: 28px; color: var(--charcoal); margin-bottom: 12px; }
.rh-quiz-match-desc { font-size: 14px; color: var(--ch3); line-height: 1.75; max-width: 360px; margin: 0 auto 26px; }
.rh-quiz-result-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════ */
.rh-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
}
.rh-hero-left {
  padding: 80px 70px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rh-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 26px;
}
.rh-hero h1 {
  font-size: clamp(42px, 5vw, 78px);
  color: var(--charcoal);
  margin-bottom: 26px;
}
.rh-hero h1 em { font-style: italic; color: var(--gold); }
.rh-hero-sub {
  font-size: 15px;
  color: var(--ch3);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 48px;
}
.rh-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.rh-hero-right {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.rh-hero-right .product-image-hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 22px;
}
.rh-hero-right .product-image-hero img {
  width: 80px;
  border-radius: 5px 5px 14px 14px;
  box-shadow: 0 20px 56px rgba(45,41,32,.2);
}
.rh-hero-stripe {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(184,134,11,.04) 40px,rgba(184,134,11,.04) 41px);
}
.rh-hero-deco1 { position: absolute; font-size: 200px; opacity: .05; top: 5%; right: -20px; transform: rotate(15deg); pointer-events: none; }
.rh-hero-deco2 { position: absolute; font-size: 140px; opacity: .04; bottom: 10%; left: -20px; transform: rotate(-20deg); pointer-events: none; }
.rh-hero-glow { position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(0deg,rgba(184,134,11,.08) 0%,transparent 100%); pointer-events: none; }

/* Jar CSS illustrations (shown when no product images set) */
.jar-css { text-align: center; }
.jar-css-lid   { margin: 0 auto; height: 10px; border-radius: 3px 3px 0 0; }
.jar-css-neck  { margin: 0 auto; height: 13px; }
.jar-css-body  {
  margin: 0 auto;
  border-radius: 5px 5px 16px 16px;
  position: relative; overflow: hidden;
}
.jar-css-body::after  { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg,rgba(255,255,255,.24) 0%,transparent 55%); }
.jar-css-body::before { content: ''; position: absolute; top: 15px; left: 9px; right: 9px; bottom: 12px; background: rgba(255,255,255,.09); border-radius: 2px; }
.jar-css-label { margin-top: 12px; font-family: 'Playfair Display',serif; font-size: 13px; font-style: italic; color: var(--ch3); }
/* Rose */
.jc-rose .jar-css-lid  { width: 58px; background: #8B1A1A; }
.jc-rose .jar-css-neck { width: 68px; background: #A02424; }
.jc-rose .jar-css-body { width: 78px; height: 118px; background: linear-gradient(150deg,#E8948A,#C8705A,#A84838); box-shadow: 0 18px 52px rgba(200,100,80,.28); }
/* Ginger */
.jc-ginger .jar-css-lid  { width: 58px; background: #4A2A04; }
.jc-ginger .jar-css-neck { width: 68px; background: #6A3A08; }
.jc-ginger .jar-css-body { width: 78px; height: 146px; background: linear-gradient(150deg,#E0A030,#B8780A,#8C5004); box-shadow: 0 18px 52px rgba(184,120,10,.3); }
/* Cardamom */
.jc-cardamom .jar-css-lid  { width: 58px; background: #2A3A14; }
.jc-cardamom .jar-css-neck { width: 68px; background: #3A5020; }
.jc-cardamom .jar-css-body { width: 78px; height: 126px; background: linear-gradient(150deg,#C8C04A,#A09020,#706800); box-shadow: 0 18px 52px rgba(160,144,32,.22); }

/* ═══════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════ */
.rh-trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border2);
  padding: 20px 60px;
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.rh-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--ch3);
}
.rh-trust-item strong { color: var(--charcoal); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   HOMEPAGE PRODUCTS SECTION
═══════════════════════════════════════════════════ */
.rh-home-products { padding: 88px 60px; background: var(--bg); }
.rh-home-products .sec-head { text-align: center; margin-bottom: 56px; }
.rh-prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ═══════════════════════════════════════════════════
   HOME STORY SECTION
═══════════════════════════════════════════════════ */
.rh-home-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.rh-story-vis {
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.rh-story-vis-word {
  position: absolute;
  font-family: 'Playfair Display',serif;
  font-size: 180px;
  font-style: italic;
  color: rgba(184,134,11,.06);
  user-select: none;
  white-space: nowrap;
}
.rh-story-jars {
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.sm-jar { width: 50px; height: 76px; border-radius: 3px 3px 10px 10px; position: relative; overflow: hidden; }
.sm-jar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg,rgba(255,255,255,.2) 0%,transparent 55%); }
.smj-r { background: linear-gradient(150deg,#E8948A,#A84838); }
.smj-g { background: linear-gradient(150deg,#E0A030,#8C5004); }
.smj-c { background: linear-gradient(150deg,#C8C04A,#706800); }
.rh-story-text { padding: 72px; display: flex; flex-direction: column; justify-content: center; background: var(--bg); }

/* ═══════════════════════════════════════════════════
   INGREDIENT SECTIONS
═══════════════════════════════════════════════════ */
.rh-ing-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.rh-ing-block.rev { direction: rtl; }
.rh-ing-block.rev > * { direction: ltr; }
.rh-ing-color {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.ic-rose    { background: var(--rose-mid); }
.ic-ginger  { background: var(--ginger-mid); }
.ic-card    { background: var(--card-mid); }
.rh-ing-jar-big {
  width: 106px; height: 158px;
  border-radius: 6px 6px 18px 18px;
  margin: 0 auto;
  position: relative; overflow: hidden;
}
.rh-ing-jar-big::after  { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg,rgba(255,255,255,.26) 0%,transparent 55%); }
.rh-ing-jar-big::before { content: ''; position: absolute; top: 18px; left: 10px; right: 10px; bottom: 14px; background: rgba(255,255,255,.09); border-radius: 3px; }
.ijb-rose     { background: linear-gradient(150deg,#E8948A,#C8705A,#A84838); box-shadow: 0 22px 64px rgba(200,100,80,.24); }
.ijb-ginger   { background: linear-gradient(150deg,#E0A030,#B8780A,#8C5004); box-shadow: 0 22px 64px rgba(184,120,10,.28); }
.ijb-cardamom { background: linear-gradient(150deg,#C8C04A,#A09020,#706800); box-shadow: 0 22px 64px rgba(160,144,32,.22); }
.rh-ing-label { text-align: center; margin-top: 16px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ch3); font-weight: 500; }
.rh-ing-text { padding: 72px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.rh-ing-h { font-size: clamp(28px,3vw,46px); margin-bottom: 18px; }
.rh-ing-h em { font-style: italic; color: var(--gold); }
.rh-ing-p { font-size: 14.5px; line-height: 1.9; color: var(--ch3); max-width: 380px; margin-bottom: 24px; }
.rh-ing-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 30px; }
.rh-ing-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ch3); }
.rh-ing-item::before { content: '✦'; color: var(--gold); font-size: 9px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   WHY GLASS
═══════════════════════════════════════════════════ */
.rh-glass-sec { padding: 88px 60px; background: var(--bg2); text-align: center; }
.rh-glass-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 52px; }
.rh-glass-card { background: var(--white); border: 1px solid var(--border2); padding: 38px 22px; transition: box-shadow .3s; }
.rh-glass-card:hover { box-shadow: var(--shadow); }
.rh-glass-card .gc-icon { font-size: 26px; margin-bottom: 18px; display: block; }
.rh-glass-card h3 { font-size: 19px; margin-bottom: 10px; }
.rh-glass-card p { font-size: 13px; color: var(--ch3); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   QUIZ CTA SECTION
═══════════════════════════════════════════════════ */
.rh-quiz-cta-sec { background: var(--bg3); padding: 88px 60px; text-align: center; }
.rh-quiz-cards { display: flex; justify-content: center; gap: 16px; margin: 36px 0; flex-wrap: wrap; }
.rh-qcard {
  background: var(--white);
  border: 1.5px solid var(--border2);
  padding: 20px 18px;
  text-align: center;
  width: 158px;
  cursor: pointer;
  transition: all .3s;
}
.rh-qcard:hover { border-color: var(--gold); box-shadow: 0 4px 18px rgba(184,134,11,.15); }
.rh-qcard-icon { font-size: 26px; margin-bottom: 8px; display: block; }
.rh-qcard h4 { font-size: 13.5px; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.rh-qcard p { font-size: 11px; color: var(--ch3); }

/* ═══════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════ */
.rh-reviews-sec { padding: 88px 60px; background: var(--white); text-align: center; }
.rh-reviews-placeholder {
  border: 2px dashed var(--border);
  padding: 56px 40px;
  margin-top: 44px;
  background: var(--bg);
  color: var(--ch3);
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════
   GIFT BANNER
═══════════════════════════════════════════════════ */
.rh-gift-banner {
  background: var(--charcoal);
  padding: 60px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.rh-gift-banner h3 { font-size: 30px; color: var(--gold-light); font-weight: 400; margin-bottom: 8px; }
.rh-gift-banner p  { font-size: 14px; color: rgba(251,247,238,.5); }
.rh-gift-banner .btn-gift {
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  background: none;
  padding: 13px 30px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s;
}
.rh-gift-banner .btn-gift:hover { background: var(--gold); color: var(--charcoal); }

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════ */
.rh-page-hero {
  background: var(--bg2);
  padding: 64px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border2);
}
.rh-page-hero h1 { font-size: clamp(32px,4vw,56px); color: var(--charcoal); }
.rh-page-hero h1 em { font-style: italic; color: var(--gold); }
.rh-page-hero p { font-size: 15px; color: var(--ch3); margin-top: 14px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE SHOP / ARCHIVE
═══════════════════════════════════════════════════ */
.rh-shop-sec { padding: 48px 60px 88px; }
.rh-filter-bar {
  padding: 28px 60px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.rh-filter-btn {
  border: 1.5px solid var(--border2);
  color: var(--ch3);
  padding: 9px 22px;
  font-size: 12px;
  cursor: pointer;
  background: none;
  transition: all .25s;
}
.rh-filter-btn.on, .rh-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,134,11,.06);
}

/* WooCommerce product card */
.rh-prod-card {
  background: var(--white);
  border: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.rh-prod-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s;
}
.rh-prod-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.rh-prod-card:hover::after { transform: scaleX(1); }
.rh-prod-card .pc-img-area {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.rh-prod-card .pc-img-area img { width: 100%; height: 100%; object-fit: cover; }
.pc-rose-bg    { background: linear-gradient(150deg,#F5DDD4,#E8B8A8); }
.pc-ginger-bg  { background: linear-gradient(150deg,#F5E4C0,#E8C880); }
.pc-card-bg    { background: linear-gradient(150deg,#D8EAD0,#C0D8B0); }
.rh-prod-card .prod-info { padding: 22px 22px 26px; }
.rh-prod-card .onsale {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
}
.rh-prod-card .woocommerce-loop-product__title {
  font-family: 'Playfair Display',serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 5px;
}
.rh-prod-card .price {
  font-family: 'Playfair Display',serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}
.rh-prod-card .price ins { text-decoration: none; }
.rh-prod-card .price del { opacity: .5; font-size: 14px; }
.rh-prod-card .button,
.rh-prod-card .add_to_cart_button {
  display: block;
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background .25s;
}
.rh-prod-card .button:hover,
.rh-prod-card .add_to_cart_button:hover { background: var(--ch2); color: var(--white); }

/* ═══════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
═══════════════════════════════════════════════════ */
.rh-single-product { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.rh-sp-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px;
}
.rh-sp-gallery img { max-height: 480px; object-fit: contain; position: relative; z-index: 2; }
.rh-sp-gallery .rh-gallery-deco { position: absolute; font-size: 280px; opacity: .05; user-select: none; }

/* WooCommerce summary area */
.rh-sp-summary { padding: 64px 64px 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.rh-sp-summary .product_title {
  font-size: clamp(30px,4vw,52px);
  font-family: 'Playfair Display',serif;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 10px;
}
.rh-sp-summary .rh-prod-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.rh-sp-summary .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.rh-sp-summary .price {
  font-family: 'Playfair Display',serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.rh-sp-summary .price ins { text-decoration: none; }
.rh-sp-summary .woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ch3);
  margin-bottom: 26px;
}
/* Variations (size dropdown) */
.rh-sp-summary .variations_form .variations { width: 100%; margin-bottom: 20px; }
.rh-sp-summary .variations_form .label label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.rh-sp-summary select,
.rh-sp-summary .rh-size-btns { margin-bottom: 18px; }
.rh-size-btns { display: flex; gap: 12px; }
.rh-size-btn {
  border: 1.5px solid var(--border2);
  padding: 12px 22px;
  cursor: pointer;
  background: none;
  transition: all .25s;
  font-family: 'DM Sans',sans-serif;
}
.rh-size-btn.on, .rh-size-btn:hover {
  border-color: var(--gold);
  background: rgba(184,134,11,.06);
  color: var(--gold);
}
/* Quantity */
.rh-sp-summary .quantity { display: flex; align-items: center; margin-bottom: 22px; }
.rh-sp-summary .qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--border2); }
.rh-sp-summary .qty-btn { width: 42px; height: 44px; background: none; border: none; font-size: 18px; cursor: pointer; }
.rh-sp-summary .qty-btn:hover { background: var(--bg2); }
.rh-sp-summary input.qty {
  width: 52px; height: 44px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  background: var(--bg);
  -moz-appearance: textfield;
}
/* Add to cart */
.rh-sp-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.rh-sp-summary .single_add_to_cart_button,
.rh-sp-summary .button {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: background .25s;
  width: 100%;
}
.rh-sp-summary .single_add_to_cart_button:hover { background: var(--ch2); }
/* Feature pills */
.rh-feat-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.rh-feat-pill { background: var(--bg2); border: 1px solid var(--border2); padding: 7px 14px; font-size: 11.5px; color: var(--ch3); }

/* Product tabs */
.rh-prod-tabs-wrap { border-top: 1px solid var(--border2); }
.rh-prod-tabs {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--border2);
}
.rh-prod-tab {
  padding: 18px 28px;
  font-size: 13px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ch3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .25s;
}
.rh-prod-tab.on, .rh-prod-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }
.rh-prod-tab-panels { padding: 48px 60px; background: var(--white); }
.rh-tab-panel { display: none; max-width: 720px; }
.rh-tab-panel.on { display: block; }
/* WooCommerce native tabs override */
.woocommerce-tabs { display: none; }
/* Product data table */
.shop_attributes { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.shop_attributes tr { border-bottom: 1px solid var(--border2); }
.shop_attributes td, .shop_attributes th { padding: 12px 16px; color: var(--ch3); text-align: left; font-weight: 400; }
.shop_attributes th { font-weight: 500; color: var(--charcoal); width: 40%; }

/* Related products */
.rh-related-sec { padding: 72px 60px; background: var(--bg); }
.rh-related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 720px; margin: 48px auto 0; }

/* ═══════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════ */
.rh-breadcrumb {
  padding: 14px 60px;
  font-size: 12px;
  color: var(--ch3);
  border-bottom: 1px solid var(--border2);
  background: var(--white);
}
.rh-breadcrumb a { color: var(--ch3); }
.rh-breadcrumb a:hover { color: var(--gold); }
.rh-breadcrumb .sep { color: var(--gold); margin: 0 8px; }

/* ═══════════════════════════════════════════════════
   CART & CHECKOUT
═══════════════════════════════════════════════════ */
.rh-cart-wrap { padding: 60px 60px 88px; max-width: 1280px; margin: 0 auto; }
.woocommerce-cart-form { margin-bottom: 48px; }
.shop_table { width: 100%; border-collapse: collapse; }
.shop_table th {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ch3);
  font-weight: 500;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
  font-family: 'DM Sans',sans-serif;
}
.shop_table td { padding: 20px 16px; border-bottom: 1px solid var(--border2); vertical-align: middle; color: var(--charcoal); }
.shop_table .product-name a { font-size: 15px; color: var(--charcoal); font-weight: 400; }
.shop_table .product-price, .shop_table .product-subtotal { font-family: 'Playfair Display',serif; font-size: 18px; color: var(--gold); }
.wc-proceed-to-checkout .checkout-button,
.woocommerce #payment #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  font-family: 'DM Sans',sans-serif;
  font-weight: 500;
  transition: background .25s;
}
.wc-proceed-to-checkout .checkout-button:hover { background: var(--ch2); color: var(--white); }
.cart_totals { background: var(--bg2); padding: 32px; }
.cart_totals h2 { font-size: 22px; margin-bottom: 20px; }
.cart_totals .shop_table td { padding: 12px 0; border-bottom: 1px solid var(--border2); }
.order-total .amount { font-family: 'Playfair Display',serif; font-size: 22px; color: var(--gold); font-weight: 500; }
/* Checkout */
.rh-checkout-wrap { padding: 60px 60px 88px; max-width: 1280px; margin: 0 auto; }
.woocommerce-checkout .form-row { margin-bottom: 16px; }
.woocommerce-checkout label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ch3);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  border: 1.5px solid var(--border2);
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'DM Sans',sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  outline: none;
  transition: border-color .25s;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus { border-color: var(--gold); }

/* ═══════════════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════════════ */
.rh-faq-wrap { max-width: 820px; margin: 0 auto; padding: 64px 40px; }
.rh-faq-cat { margin-bottom: 52px; }
.rh-faq-cat-title {
  font-size: 20px;
  color: var(--gold);
  font-family: 'Playfair Display',serif;
  font-weight: 400;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.rh-faq-item { border-bottom: 1px solid var(--border2); overflow: hidden; }
.rh-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  gap: 16px;
}
.rh-faq-q-text { font-size: 15px; font-weight: 400; color: var(--charcoal); line-height: 1.4; }
.rh-faq-toggle { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform .3s; font-weight: 300; }
.rh-faq-item.open .rh-faq-toggle { transform: rotate(45deg); }
.rh-faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.rh-faq-item.open .rh-faq-a { max-height: 400px; }
.rh-faq-a-inner { padding: 0 0 18px; font-size: 14px; line-height: 1.85; color: var(--ch3); }
.rh-faq-a-inner strong { color: var(--charcoal); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */
.rh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.rh-contact-info { background: var(--charcoal); padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; }
.rh-contact-info h2 { font-size: 32px; color: var(--gold-light); font-weight: 400; margin-bottom: 18px; }
.rh-contact-info p { font-size: 14px; color: rgba(251,247,238,.5); line-height: 1.85; margin-bottom: 36px; }
.rh-cc-channels { display: flex; flex-direction: column; gap: 18px; }
.rh-cc-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border: 1px solid rgba(251,247,238,.1); transition: border-color .25s; }
.rh-cc-item:hover { border-color: rgba(240,208,128,.3); }
.rh-cc-icon { font-size: 20px; flex-shrink: 0; }
.rh-cc-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,208,128,.5); margin-bottom: 4px; }
.rh-cc-val { font-size: 14px; color: rgba(251,247,238,.7); }
.rh-cc-val a { color: inherit; }
.rh-cc-sub { font-size: 11.5px; color: rgba(251,247,238,.35); margin-top: 2px; }
.rh-contact-form-side { padding: 72px 60px; background: var(--white); }
.rh-contact-form-side h2 { font-size: 26px; color: var(--charcoal); font-weight: 400; margin-bottom: 28px; }
.rh-form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.rh-form-group label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ch3); font-weight: 500; margin-bottom: 7px; }
.rh-form-group input,
.rh-form-group select,
.rh-form-group textarea {
  border: 1.5px solid var(--border2);
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'DM Sans',sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  outline: none;
  transition: border-color .25s;
  appearance: none;
}
.rh-form-group input:focus,
.rh-form-group select:focus,
.rh-form-group textarea:focus { border-color: var(--gold); }
.rh-form-group textarea { resize: vertical; min-height: 130px; }
.rh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */
.rh-about-hero { background: var(--charcoal); min-height: 70vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.rh-ah-left { padding: 80px 70px 80px 80px; display: flex; flex-direction: column; justify-content: center; }
.rh-ah-right { background: var(--bg3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.rh-stats-bar { background: var(--gold); padding: 26px 60px; display: flex; justify-content: center; gap: 72px; flex-wrap: wrap; }
.rh-stat-item { text-align: center; }
.rh-stat-num { font-family: 'Playfair Display',serif; font-size: 30px; color: var(--charcoal); display: block; }
.rh-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(45,41,32,.65); }
.rh-story-ch { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.rh-story-ch.flip { direction: rtl; }
.rh-story-ch.flip > * { direction: ltr; }
.rh-sch-vis { display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.rh-sch-text { padding: 72px; display: flex; flex-direction: column; justify-content: center; }
.rh-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.rh-val-card { background: var(--white); border: 1px solid var(--border2); padding: 38px 26px; text-align: center; transition: box-shadow .3s; }
.rh-val-card:hover { box-shadow: var(--shadow); }
.rh-val-card .val-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.rh-val-card h3 { font-size: 19px; margin-bottom: 10px; }
.rh-val-card p { font-size: 13px; color: var(--ch3); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   POLICIES PAGE (tabs)
═══════════════════════════════════════════════════ */
.rh-policy-tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border2);
  background: var(--white);
  flex-wrap: wrap;
}
.rh-ptab {
  padding: 16px 26px;
  font-size: 12.5px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ch3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .25s;
}
.rh-ptab.on, .rh-ptab:hover { color: var(--gold); border-bottom-color: var(--gold); }
.rh-policy-wrap { max-width: 820px; margin: 0 auto; padding: 64px 40px; }
.rh-policy-panel { display: none; }
.rh-policy-panel.on { display: block; }
.rh-policy-date { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ch3); margin-bottom: 24px; display: block; }
.rh-policy-h1 { font-size: 30px; color: var(--charcoal); font-weight: 400; margin-bottom: 8px; }
.rh-policy-intro { font-size: 15px; line-height: 1.85; color: var(--ch3); margin-bottom: 32px; padding-bottom: 22px; border-bottom: 1px solid var(--border2); }
.rh-policy-sec { margin-bottom: 28px; }
.rh-policy-sec h2 { font-size: 19px; color: var(--charcoal); font-weight: 400; margin-bottom: 12px; }
.rh-policy-sec p { font-size: 14px; line-height: 1.9; color: var(--ch3); margin-bottom: 10px; }
.rh-policy-list { list-style: none; }
.rh-policy-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ch3); line-height: 1.75; margin-bottom: 7px; }
.rh-policy-list li::before { content: '✦'; color: var(--gold); font-size: 9px; flex-shrink: 0; margin-top: 5px; }
.rh-policy-note { background: var(--bg2); border-left: 3px solid var(--gold); padding: 14px 18px; font-size: 13.5px; color: var(--ch2); line-height: 1.7; margin-top: 18px; }
.rh-policy-contact { background: var(--charcoal); padding: 24px 28px; margin-top: 32px; }
.rh-policy-contact .pc-h { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,208,128,.55); margin-bottom: 12px; }
.rh-policy-contact a { display: block; color: rgba(251,247,238,.6); text-decoration: none; font-size: 13px; margin-bottom: 6px; }
.rh-policy-contact a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.rh-footer {
  background: var(--charcoal);
  color: rgba(251,247,238,.75);
  padding: 68px 60px 36px;
}
.rh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.rh-footer-brand-name { font-family: 'Playfair Display',serif; font-size: 28px; color: var(--gold-light); }
.rh-footer-brand-sub  { font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,208,128,.4); margin-top: 4px; }
.rh-footer-brand-p    { font-size: 13px; color: rgba(251,247,238,.4); line-height: 1.85; margin-top: 16px; }
.rh-footer-social { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.rh-footer-social a { font-size: 12px; color: rgba(251,247,238,.4); text-decoration: none; transition: color .25s; }
.rh-footer-social a:hover { color: var(--gold-light); }
.rh-footer-col-h { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,208,128,.6); margin-bottom: 18px; display: block; }
.rh-footer-list { list-style: none; }
.rh-footer-list li { margin-bottom: 9px; }
.rh-footer-list a { color: rgba(251,247,238,.4); text-decoration: none; font-size: 13px; transition: color .25s; }
.rh-footer-list a:hover { color: rgba(251,247,238,.9); }
.rh-footer-btm {
  border-top: 1px solid rgba(251,247,238,.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.rh-footer-btm p { font-size: 12px; color: rgba(251,247,238,.28); }

/* ═══════════════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════════════ */
.rh-wa-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 500;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform .25s;
}
.rh-wa-float:hover { transform: scale(1.1); }
.rh-top-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--charcoal);
  color: var(--gold-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 500;
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rh-top-btn.vis { opacity: 1; }

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE NOTICES & MISC
═══════════════════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 14px 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
  background: var(--bg2);
  font-size: 14px;
}
.woocommerce-error { border-color: #c0392b; background: #fdf2f2; }
.woocommerce-message a,
.woocommerce-info a { color: var(--gold); font-weight: 500; }
.woocommerce-pagination ul { display: flex; gap: 8px; justify-content: center; margin: 40px 0; flex-wrap: wrap; }
.woocommerce-pagination .page-numbers {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border2);
  color: var(--ch3);
  font-size: 13px;
  transition: all .25s;
}
.woocommerce-pagination .page-numbers.current,
.woocommerce-pagination .page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,134,11,.06);
}
.woocommerce-result-count { font-size: 13px; color: var(--ch3); margin-bottom: 20px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rh-glass-grid { grid-template-columns: repeat(2,1fr); }
  .rh-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .rh-nav { padding: 14px 20px; }
  .rh-nav-links { display: none; }
  .rh-hamburger { display: flex; }
  .rh-nav-cta { display: none; }
  .rh-container, .rh-sec, .rh-sec-sm { padding-left: 20px; padding-right: 20px; }
  .rh-sec { padding-top: 60px; padding-bottom: 60px; }
  .rh-hero { grid-template-columns: 1fr; }
  .rh-hero-left { padding: 52px 24px; }
  .rh-hero-right { min-height: 280px; }
  .rh-trust-strip { padding: 18px 20px; gap: 18px; }
  .rh-home-products, .rh-glass-sec, .rh-quiz-cta-sec, .rh-reviews-sec { padding: 60px 20px; }
  .rh-prod-grid { grid-template-columns: 1fr; }
  .rh-home-story { grid-template-columns: 1fr; }
  .rh-story-vis { min-height: 240px; }
  .rh-story-text { padding: 48px 24px; }
  .rh-ing-block { grid-template-columns: 1fr; }
  .rh-ing-block.rev { direction: ltr; }
  .rh-ing-color { padding: 44px 24px; }
  .rh-ing-text { padding: 48px 24px; }
  .rh-glass-grid { grid-template-columns: 1fr; }
  .rh-gift-banner { flex-direction: column; text-align: center; padding: 48px 24px; }
  .rh-page-hero { padding: 48px 24px; }
  .rh-shop-sec { padding: 32px 20px 60px; }
  .rh-filter-bar { padding: 20px 20px 0; }
  .rh-single-product { grid-template-columns: 1fr; }
  .rh-sp-gallery { min-height: 320px; padding: 40px; }
  .rh-sp-summary { padding: 44px 24px; }
  .rh-prod-tabs-wrap .rh-prod-tabs { flex-wrap: wrap; }
  .rh-prod-tab-panels { padding: 36px 20px; }
  .rh-related-sec { padding: 52px 20px; }
  .rh-related-grid { grid-template-columns: 1fr; max-width: 400px; }
  .rh-breadcrumb { padding: 12px 20px; }
  .rh-cart-wrap, .rh-checkout-wrap { padding: 40px 20px 60px; }
  .rh-faq-wrap { padding: 44px 20px; }
  .rh-contact-grid { grid-template-columns: 1fr; }
  .rh-contact-info, .rh-contact-form-side { padding: 52px 24px; }
  .rh-form-row { grid-template-columns: 1fr; }
  .rh-about-hero { grid-template-columns: 1fr; }
  .rh-ah-left { padding: 56px 24px; }
  .rh-ah-right { min-height: 280px; }
  .rh-stats-bar { padding: 22px 20px; gap: 32px; }
  .rh-story-ch { grid-template-columns: 1fr; }
  .rh-story-ch.flip { direction: ltr; }
  .rh-sch-vis { min-height: 220px; }
  .rh-sch-text { padding: 52px 24px; }
  .rh-values-grid { grid-template-columns: 1fr; }
  .rh-policy-tabs { flex-wrap: wrap; }
  .rh-ptab { padding: 12px 16px; font-size: 12px; }
  .rh-policy-wrap { padding: 44px 20px; }
  .rh-footer { padding: 48px 20px 32px; }
  .rh-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .rh-footer-btm { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .rh-footer-grid { grid-template-columns: 1fr; }
  .rh-values-grid { grid-template-columns: 1fr; }
  .rh-glass-grid { grid-template-columns: 1fr; }
}
