/*
 Theme Name:  Chocolatier UAE
 Theme URI:   https://chocolatieruae.com
 Description: Custom dark luxury child theme for Chocolatier UAE
 Author:      Chocolatier UAE
 Template:    oceanwp
 Version:     1.0.0
 Text Domain: choc-child
*/

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --bg:       #121414;
  --bg-2:     #1a1c1c;
  --bg-3:     #1e2020;
  --bg-4:     #282a2b;
  --bg-5:     #37393a;
  --gold:     #e6c354;
  --gold-dk:  #ac8e21;
  --cream:    #e2e2e2;
  --muted:    #cfc4c5;
  --border:   #4c4546;
  --serif:    'Playfair Display', 'Libre Caslon Text', Georgia, serif;
  --sans:     'Manrope', system-ui, -apple-system, sans-serif;
  --W:        1280px;
  --pad:      56px;
}

/* ═══════════════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Outer body = dark background visible on both sides of the box */
body {
  background: #050403 !important;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Strip OceanWP's white background from wrappers */
#wrap, #outer-wrap, #page { background: transparent !important; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }

/* ═══════════════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════════════ */
#choc-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #0a0808;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
#choc-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.choc-loader-inner { text-align: center; }
.choc-drop-wrap { width: 60px; height: 60px; margin: 0 auto 26px; position: relative; }
.choc-drop {
  width: 18px; height: 18px; background: var(--gold);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  position: absolute; top: 6px; left: 21px;
  animation: chocDropFall 1.2s cubic-bezier(.4,0,.2,1) infinite;
}
.choc-pool {
  width: 44px; height: 9px; background: rgba(230,195,84,.22);
  border-radius: 50%; position: absolute; bottom: 0; left: 8px;
  animation: chocPoolGrow 1.2s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes chocDropFall {
  0%   { top: 0; opacity: 1; }
  70%  { top: 34px; opacity: 1; }
  80%  { top: 36px; opacity: 0; }
  100% { top: 0; opacity: 0; }
}
@keyframes chocPoolGrow {
  0%, 60% { transform: scaleX(.3); opacity: 0; }
  80%     { transform: scaleX(1);  opacity: 1; }
  100%    { transform: scaleX(.3); opacity: 0; }
}
.choc-loader-name {
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  color: var(--cream); letter-spacing: .04em; margin-bottom: 20px;
  animation: chocFade .5s ease both .2s;
}
.choc-loader-name span { color: var(--gold); }
.choc-loader-bar { width: 180px; height: 1px; background: rgba(230,195,84,.15); overflow: hidden; margin: 0 auto 14px; }
.choc-loader-fill { height: 100%; width: 0; background: var(--gold); animation: chocBar 1.4s cubic-bezier(.4,0,.2,1) forwards .15s; }
@keyframes chocBar { to { width: 100%; } }
.choc-loader-tag { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); animation: chocFade .5s ease both .75s; }
@keyframes chocFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════
   SITE BOX  (the centred container like touriae.com)
═══════════════════════════════════════════════════ */
.choc-site-box {
  max-width: var(--W);
  margin: 0 auto;
  background: var(--bg);
  color: var(--cream);
  box-shadow: 0 0 140px rgba(0,0,0,.95);
  position: relative;
  min-height: 100vh;
}

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.choc-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex; align-items: center;
  transition: background .3s, backdrop-filter .3s;
}
.choc-nav.scrolled { background: rgba(18,20,20,.92); backdrop-filter: blur(20px); }
.choc-nav-inner {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
}
.choc-logo { font-family: var(--serif); font-size: 19px; font-weight: 700; letter-spacing: .04em; color: var(--cream); }
.choc-logo span { color: var(--gold); }
.choc-nav-links { display: flex; gap: 30px; }
.choc-nav-links a {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  transition: color .25s; position: relative;
}
.choc-nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 50%; right: 50%;
  height: 1px; background: var(--gold); transition: left .3s, right .3s;
}
.choc-nav-links a:hover,
.choc-nav-links a.current,
.choc-nav-links a.active { color: var(--gold); }
.choc-nav-links a:hover::after,
.choc-nav-links a.current::after,
.choc-nav-links a.active::after { left: 0; right: 0; }
.choc-nav-actions { display: flex; align-items: center; gap: 16px; }
.choc-nav-icon {
  background: none; border: none; color: var(--gold);
  display: flex; align-items: center; padding: 4px;
  cursor: pointer; position: relative; transition: opacity .2s;
}
.choc-nav-icon:hover { opacity: .65; }
.choc-nav-icon svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.choc-cart-count {
  position: absolute; top: -4px; right: -6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); color: #1a1208;
  font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════ */
.choc-ticker { background: var(--gold); overflow: hidden; height: 38px; display: flex; align-items: center; }
.choc-ticker-track { display: flex; animation: chocTicker 28s linear infinite; white-space: nowrap; }
.choc-ticker-item { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #1a1208; padding: 0 34px; }
@keyframes chocTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════
   CONTENT WRAPPER (OceanWP inner divs)
═══════════════════════════════════════════════════ */
.choc-site-box .container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.choc-site-box #content-wrap {
  max-width: none !important;
  padding: 64px var(--pad) 80px !important;
  background: var(--bg);
}
.choc-site-box #primary { width: 100% !important; float: none !important; }
.choc-site-box .sidebar { display: none; }  /* hide sidebars - clean layout */
.entry-title {
  font-family: var(--serif) !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 700 !important;
  color: var(--cream) !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
}
.entry-content { color: var(--muted); line-height: 1.85; }
.entry-content h2, .entry-content h3 {
  font-family: var(--serif);
  color: var(--cream);
  margin: 32px 0 14px;
}
.entry-content a { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.choc-btn-gold, .woocommerce a.button, .woocommerce button.button,
.woocommerce input.button, .woocommerce #respond input#submit {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 13px 32px !important;
  background: var(--gold) !important; color: #1a1208 !important;
  font-family: var(--sans) !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: .16em !important; text-transform: uppercase !important;
  border: none !important; border-radius: 0 !important;
  cursor: pointer; transition: filter .25s, transform .25s;
}
.choc-btn-gold:hover, .woocommerce a.button:hover, .woocommerce button.button:hover {
  filter: brightness(1.1) !important; transform: translateY(-2px);
  background: var(--gold) !important; color: #1a1208 !important;
}
.choc-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; background: transparent; color: var(--gold);
  border: 1px solid var(--gold); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
  transition: background .25s, transform .25s; font-family: var(--sans);
}
.choc-btn-outline:hover { background: rgba(230,195,84,.08); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.sr {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.sr.on { opacity: 1; transform: none; }
.sr-d1 { transition-delay: .1s; } .sr-d2 { transition-delay: .2s; } .sr-d3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════════════ */
.choc-hero {
  position: relative; height: 88vh; min-height: 580px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.choc-hero-img { position: absolute; inset: 0; }
.choc-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: chocHeroZoom 18s ease-in-out infinite alternate; }
@keyframes chocHeroZoom { from { transform: scale(1); } to { transform: scale(1.05); } }
.choc-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.85) 0%, rgba(10,8,6,.45) 50%, rgba(10,8,6,.25) 100%);
}
.choc-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 var(--pad); width: 100%; }
.choc-hero-eye { font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; animation: chocFade .9s ease both .1s; }
.choc-hero-title {
  font-family: var(--serif); font-size: clamp(52px, 6vw, 88px);
  font-weight: 700; line-height: 1.0; letter-spacing: -.01em;
  color: var(--cream); margin-bottom: 36px; animation: chocFade .9s ease both .25s;
}
.choc-hero-ctas { display: flex; gap: 14px; justify-content: center; animation: chocFade .9s ease both .4s; }
.choc-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px; z-index: 2;
  animation: chocFade .9s ease both .85s;
}
.choc-scroll-cue span { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.choc-cue-line { width: 1px; height: 42px; background: linear-gradient(to bottom, var(--gold), transparent); position: relative; }
.choc-cue-line::after {
  content: ''; position: absolute; bottom: 0; left: -3px;
  width: 6px; height: 6px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  transform: rotate(45deg); animation: chocCueBounce 1.5s ease-in-out infinite;
}
@keyframes chocCueBounce { 0%,100%{transform:translateY(0) rotate(45deg)} 50%{transform:translateY(5px) rotate(45deg)} }

/* ═══════════════════════════════════════════════════
   BRANDS BENTO (homepage)
═══════════════════════════════════════════════════ */
.choc-brands { padding: 88px 0; }
.choc-brands-pad { padding-left: var(--pad); padding-right: var(--pad); }
.choc-brands-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; }
.choc-brands-header h2 { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--cream); margin-top: 8px; }
.choc-brands-header p { font-size: 14px; line-height: 1.75; color: var(--muted); margin-top: 10px; max-width: 480px; }
.choc-view-all {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  white-space: nowrap; transition: opacity .2s;
}
.choc-view-all:hover { opacity: .65; }
.choc-label { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); }
.choc-bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 320px 320px; gap: 10px; }
.bc-1 { grid-column: span 8; }
.bc-2 { grid-column: span 4; }
.bc-3 { grid-column: span 4; }
.bc-4 { grid-column: span 8; }
.choc-bcard { position: relative; overflow: hidden; background: var(--bg-3); border: 1px solid var(--border); cursor: pointer; }
.choc-bcard-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .65s cubic-bezier(.16,1,.3,1); }
.choc-bcard:hover .choc-bcard-bg { transform: scale(1.06); }
.choc-bcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,.94) 0%, rgba(10,8,6,.3) 55%, rgba(10,8,6,.05) 100%);
  transition: background .5s;
}
.choc-bcard:hover .choc-bcard-overlay { background: linear-gradient(to top, rgba(10,8,6,.75) 0%, rgba(10,8,6,.1) 55%, transparent 100%); }
.choc-bcard-text { position: absolute; bottom: 0; left: 0; padding: 24px 28px; }
.choc-bcard-name { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--gold); margin-bottom: 5px; }
.choc-bcard-desc { font-size: 13px; line-height: 1.6; color: rgba(226,226,226,.75); max-width: 260px; }

/* ═══════════════════════════════════════════════════
   FEATURE SECTION (homepage)
═══════════════════════════════════════════════════ */
.choc-feature { background: #0e0c0a; padding: 88px 0; }
.choc-feature-inner { display: flex; align-items: center; gap: 72px; padding: 0 var(--pad); }
.choc-feature-img-wrap { flex: 0 0 44%; position: relative; }
.choc-feature-frame { border: 1px solid var(--gold); padding: 12px; position: relative; }
.choc-feature-frame::before { content: ''; position: absolute; top: -18px; right: -18px; width: 70px; height: 70px; border-top: 1px solid rgba(230,195,84,.3); border-right: 1px solid rgba(230,195,84,.3); }
.choc-feature-frame::after { content: ''; position: absolute; bottom: -18px; left: -18px; width: 70px; height: 70px; border-bottom: 1px solid rgba(230,195,84,.3); border-left: 1px solid rgba(230,195,84,.3); }
.choc-feature-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.choc-feature-body { flex: 1; }
.choc-feature-title { font-family: var(--serif); font-size: 38px; font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 18px; margin-top: 12px; }
.choc-feature-desc { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 30px; }
.choc-feature-list { list-style: none; margin-bottom: 38px; display: flex; flex-direction: column; gap: 13px; }
.choc-feature-list li { display: flex; align-items: center; gap: 12px; }
.choc-feature-list li::before { content: ''; width: 7px; height: 7px; background: var(--gold); flex-shrink: 0; }
.choc-feature-list li span { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); }

/* ═══════════════════════════════════════════════════
   EXP BANNER (homepage)
═══════════════════════════════════════════════════ */
.choc-exp { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.choc-exp-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.32) saturate(.6); }
.choc-exp-overlay { position: absolute; inset: 0; background: rgba(18,20,20,.45); }
.choc-exp-content { position: relative; z-index: 2; text-align: center; padding: 0 var(--pad); }
.choc-exp-content h3 { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.choc-exp-content p { font-size: 14px; line-height: 1.75; color: var(--muted); max-width: 500px; margin: 0 auto 22px; }
.choc-exp-link { display: inline-flex; align-items: center; gap: 9px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.choc-exp-link svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.choc-exp-link:hover svg { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE — SHOP (ARCHIVE)
═══════════════════════════════════════════════════ */
/* Remove OceanWP WC sidebar */
.woocommerce-page .sidebar,
.woocommerce-page #sidebar { display: none !important; }

/* Full-width shop layout */
.woocommerce-page #primary { width: 100% !important; float: none !important; }

/* Shop page hero area (handled by page header below) */
.choc-shop-hero { position: relative; height: 280px; display: flex; align-items: center; overflow: hidden; }
.choc-shop-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.3) saturate(.5); }
.choc-shop-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(18,20,20,.95) 0%, rgba(18,20,20,.55) 100%); }
.choc-shop-hero-content { position: relative; z-index: 2; padding: 0 var(--pad); }
.choc-shop-hero-content h1 { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 700; color: var(--cream); line-height: 1.1; margin-top: 8px; }
.choc-shop-hero-content p { font-size: 15px; color: var(--muted); margin-top: 10px; max-width: 420px; line-height: 1.7; }

/* WooCommerce ordering / result count bar */
.woocommerce-notices-wrapper { display: none; }
.woocommerce-result-count { font-size: 11px; color: var(--muted); letter-spacing: .08em; margin-bottom: 16px !important; }
.woocommerce-result-count strong { color: var(--cream); }
.woocommerce-ordering select {
  background: var(--bg-3); color: var(--cream);
  border: 1px solid var(--border); padding: 8px 12px;
  font-family: var(--sans); font-size: 11px;
  appearance: none; cursor: pointer;
}

/* Product grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  float: none !important;
  width: 100% !important;
}

/* Product card */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--bg-3) !important;
  border: 1px solid var(--border) !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: border-color .3s, transform .3s !important;
  position: relative;
  float: none !important;
  width: auto !important;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: var(--gold) !important;
  transform: translateY(-4px);
}

/* Product image */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
}
.woocommerce ul.products li.product img {
  width: 100% !important; height: 220px !important;
  object-fit: cover !important; margin: 0 !important;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.woocommerce ul.products li.product:hover img { transform: scale(1.06); }

/* Product info inside card */
.woocommerce ul.products li.product .product-inner-info {
  padding: 16px 18px 20px;
}
.woocommerce ul.products li.product .choc-pcard-brand {
  font-size: 9px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 5px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--serif) !important;
  font-size: 14px !important; font-weight: 600 !important;
  color: var(--cream) !important; line-height: 1.4 !important;
  padding: 0 !important; margin-bottom: 12px !important;
}
.woocommerce ul.products li.product .price {
  font-size: 15px !important; font-weight: 700 !important;
  color: var(--cream) !important;
}
.woocommerce ul.products li.product .price del { color: var(--muted) !important; opacity: .7; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce span.onsale {
  background: var(--gold) !important; color: #1a1208 !important;
  font-size: 9px !important; font-weight: 700 !important;
  letter-spacing: .12em !important; text-transform: uppercase !important;
  padding: 3px 9px !important; border-radius: 0 !important;
  top: 10px !important; left: 10px !important; right: auto !important;
  min-height: auto !important; min-width: auto !important; line-height: 1.5 !important;
}

/* Add to cart button inside card */
.woocommerce ul.products li.product .button.add_to_cart_button {
  display: flex !important; align-items: center; justify-content: center;
  width: 32px !important; height: 32px !important;
  padding: 0 !important;
  background: transparent !important; color: var(--gold) !important;
  border: 1px solid var(--border) !important; border-radius: 0 !important;
  font-size: 0 !important;
  transition: background .25s, border-color .25s !important;
  position: absolute; bottom: 18px; right: 18px;
}
.woocommerce ul.products li.product .button.add_to_cart_button::after {
  content: '+'; font-size: 18px; font-weight: 300; color: var(--gold); line-height: 1;
}
.woocommerce ul.products li.product .button.add_to_cart_button:hover {
  background: var(--gold) !important; border-color: var(--gold) !important;
}
.woocommerce ul.products li.product .button.add_to_cart_button:hover::after { color: #1a1208; }

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE — SINGLE PRODUCT
═══════════════════════════════════════════════════ */
.single-product .site-main, .single-product #content { background: var(--bg); }
.woocommerce div.product { padding: 56px var(--pad) 80px !important; }
.woocommerce div.product div.images { width: 50% !important; float: left !important; }
.woocommerce div.product div.summary { width: 46% !important; float: right !important; }

/* Product gallery */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { border: 1px solid var(--border); background: var(--bg-3); }
.woocommerce div.product div.images .flex-viewport img { background: var(--bg-3); }
.woocommerce div.product div.images .flex-control-thumbs { display: flex; gap: 8px; margin-top: 10px !important; }
.woocommerce div.product div.images .flex-control-thumbs li { width: 72px !important; height: 72px !important; float: none !important; }
.woocommerce div.product div.images .flex-control-thumbs li img { width: 100% !important; height: 100% !important; object-fit: cover !important; border: 1px solid var(--border) !important; transition: border-color .25s; }
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover { border-color: var(--gold) !important; }

/* Product title & meta */
.woocommerce div.product .product_title {
  font-family: var(--serif) !important;
  font-size: clamp(26px,3vw,36px) !important;
  font-weight: 700 !important; color: var(--cream) !important;
  line-height: 1.15 !important; margin-bottom: 16px !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 28px !important; font-weight: 700 !important;
  color: var(--cream) !important; margin-bottom: 20px !important;
  display: block;
}
.woocommerce div.product .woocommerce-product-rating .star-rating { color: var(--gold) !important; }
.woocommerce div.product .woocommerce-product-rating a { color: var(--muted) !important; font-size: 12px; }
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 14px !important; line-height: 1.8 !important; color: var(--muted) !important;
  margin-bottom: 24px;
}

/* Variations */
.woocommerce div.product form.cart .variations { width: 100%; margin-bottom: 16px; }
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th { padding: 6px 0; color: var(--cream); font-size: 12px; }
.woocommerce div.product form.cart .variations select {
  background: var(--bg-3); color: var(--cream); border: 1px solid var(--border);
  padding: 9px 14px; font-family: var(--sans); font-size: 12px; width: 100%;
}

/* Qty + cart */
.woocommerce div.product form.cart { display: flex; gap: 12px; margin-bottom: 20px; }
.woocommerce div.product form.cart .qty {
  background: var(--bg-3) !important; color: var(--cream) !important;
  border: 1px solid var(--border) !important;
  padding: 12px 16px !important; width: 70px !important;
  font-family: var(--sans) !important; font-size: 14px !important; text-align: center;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  flex: 1; height: 48px; padding: 0 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs { margin-top: 24px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--border) !important; display: flex !important; gap: 0; list-style: none !important; padding: 0 !important; margin: 0 0 24px !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important; border: none !important;
  border-bottom: 2px solid transparent !important;
  padding: 0 !important; margin: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: .1em !important; text-transform: uppercase !important;
  color: var(--muted) !important; padding: 14px 22px !important;
  display: block; transition: color .25s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--gold) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover { color: var(--gold) !important; }
.woocommerce div.product .woocommerce-tabs .panel { color: var(--muted) !important; font-size: 14px !important; line-height: 1.8 !important; }
.woocommerce div.product .woocommerce-tabs .panel h2, .woocommerce div.product .woocommerce-tabs .panel h3 { color: var(--cream) !important; font-family: var(--serif) !important; }

/* Related products */
.related.products { padding: 0 var(--pad) 80px; background: var(--bg-2); clear: both; margin-top: 0; }
.related.products > h2 { font-family: var(--serif) !important; font-size: 28px !important; font-weight: 600 !important; color: var(--cream) !important; padding-top: 56px !important; margin-bottom: 28px !important; }
.related.products ul.products { grid-template-columns: repeat(4, 1fr) !important; }

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE — CART & CHECKOUT
═══════════════════════════════════════════════════ */
.woocommerce-cart .cart-collaterals,
.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout { background: transparent; }
.woocommerce table.shop_table { border-color: var(--border) !important; }
.woocommerce table.shop_table th { background: var(--bg-3) !important; color: var(--gold) !important; border-color: var(--border) !important; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.woocommerce table.shop_table td { border-color: var(--border) !important; color: var(--muted) !important; background: var(--bg-2) !important; }
.woocommerce table.shop_table td.product-name a { color: var(--cream) !important; font-family: var(--serif); }
.woocommerce form .form-row label { color: var(--muted) !important; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: var(--bg-3) !important; color: var(--cream) !important;
  border: 1px solid var(--border) !important; font-family: var(--sans) !important;
  font-size: 14px !important; padding: 11px 14px !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--gold) !important; outline: none; box-shadow: none !important; }
.cart_totals, .woocommerce-cart-form { background: transparent; }
.woocommerce .cart_totals h2, .woocommerce .checkout h3 { font-family: var(--serif) !important; color: var(--cream) !important; }
.select2-container--default .select2-selection--single { background: var(--bg-3) !important; border-color: var(--border) !important; color: var(--cream) !important; }

/* ═══════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════ */
.choc-newsletter { padding: 80px 0; border-top: 1px solid var(--border); background: var(--bg); }
.choc-newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; padding: 0 24px; }
.choc-newsletter h2 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.choc-newsletter p { font-size: 14px; line-height: 1.75; color: var(--muted); margin-bottom: 32px; }
.choc-nl-form { display: flex; border-bottom: 1px solid var(--gold); }
.choc-nl-form input { flex: 1; background: transparent; border: none; outline: none; color: var(--cream); padding: 12px 0; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-family: var(--sans); }
.choc-nl-form input::placeholder { color: rgba(207,196,197,.35); }
.choc-nl-form button { background: transparent; color: var(--gold); border: none; padding: 12px 0 12px 20px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-family: var(--sans); transition: color .25s; cursor: pointer; }
.choc-nl-form button:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
/* Hide OceanWP footer */
#footer, #footer-widgets, #footer-bottom, .site-footer { display: none !important; }

.choc-footer { background: var(--bg-3) !important; border-top: 1px solid var(--border) !important; padding: 48px var(--pad) !important; display: block !important; }
.choc-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.choc-footer-logo { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.choc-footer-logo span { color: var(--gold); }
.choc-footer-copy { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.choc-footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.choc-footer-links a { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .25s; }
.choc-footer-links a:hover { color: var(--gold); }
.choc-footer-social { display: flex; gap: 18px; }
.choc-footer-social a { color: var(--muted); transition: color .25s; }
.choc-footer-social a:hover { color: var(--gold); }
.choc-footer-social svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════ */
.choc-wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 9998;
  width: 50px; height: 50px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: transform .25s;
}
.choc-wa:hover { transform: scale(1.1); }
.choc-wa svg { width: 25px; height: 25px; fill: white; }

/* ═══════════════════════════════════════════════════
   PAGE CONTENT (Our Story, Our Brands, Contact pages)
═══════════════════════════════════════════════════ */
.choc-page-hero { position: relative; height: 300px; display: flex; align-items: center; overflow: hidden; }
.choc-page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.28) saturate(.6); }
.choc-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(18,20,20,.95) 0%, rgba(18,20,20,.55) 100%); }
.choc-page-hero-content { position: relative; z-index: 2; padding: 0 var(--pad); }
.choc-page-hero-content h1 { font-family: var(--serif) !important; font-size: clamp(34px, 4vw, 54px) !important; font-weight: 700 !important; color: var(--cream) !important; line-height: 1.1 !important; margin-top: 10px !important; }
.choc-page-hero-content p { font-size: 15px; line-height: 1.7; color: var(--muted); margin-top: 12px; max-width: 480px; }
