/*
Theme Name:   The Jewels Child
Theme URI:    https://jewels-fabrics.com
Description:  Child theme for The Jewels Fabrics & Accessories — built on Astra
Author:       The Jewels Fabrics & Accessories
Author URI:   https://jewels-fabrics.com
Template:     astra
Version:      1.0.0
Text Domain:  jewels-child
*/

/* ============================================================
   DESIGN SYSTEM — The Jewels Fabrics & Accessories
   Aesthetic: Refined Nigerian luxury. Gold leaf on deep forest.
   Fonts: Cormorant Garamond (display) + DM Sans (body)
============================================================ */
:root {
  --green-deep:    #1a3a2a;
  --green-mid:     #2d5a3d;
  --green-light:   #3d7a52;
  --green-pale:    #e8f0ea;
  --gold:          #c9a84c;
  --gold-light:    #e4c97e;
  --gold-pale:     #fdf6e3;
  --cream:         #faf8f3;
  --warm-white:    #fffef9;
  --text-dark:     #1a1a1a;
  --text-mid:      #4a4a4a;
  --text-light:    #7a7a7a;
  --border:        rgba(201,168,76,0.2);
  --shadow-gold:   0 4px 30px rgba(201,168,76,0.15);
  --shadow-green:  0 4px 30px rgba(26,58,42,0.12);
  --radius:        10px;
  --radius-lg:     16px;
}

/* ============================================================
   GLOBAL RESETS & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--green-deep);
}

p {
  line-height: 1.75;
  color: var(--text-mid);
}

a {
  color: var(--green-mid);
  transition: color 0.2s;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   ASTRA OVERRIDES — Header
============================================================ */

/* Main header background */
.site-header,
#masthead,
.ast-primary-header-bar {
  background: var(--warm-white) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: none !important;
}

/* Sticky header */
.ast-sticky-active .site-header,
.ast-sticky-active #masthead {
  background: rgba(255,254,249,0.96) !important;
  backdrop-filter: blur(12px);
}

/* Site title / logo text */
.site-title a,
.ast-site-name-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--green-deep) !important;
  letter-spacing: -0.01em;
}

/* Tagline under logo */
.site-description,
.ast-site-tagline {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Primary navigation links */
.main-navigation a,
.ast-primary-header-bar .main-header-bar-navigation .ast-builder-menu-1 .menu-link,
#ast-hf-menu-1 .menu-item > a,
.ast-primary-menu-area .main-navigation ul li a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--text-mid) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.2s !important;
}

.main-navigation a:hover,
.ast-primary-menu-area .main-navigation ul li a:hover {
  color: var(--green-deep) !important;
  background: transparent !important;
}

/* Nav underline hover effect */
.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.main-navigation ul li a:hover::after {
  width: calc(100% - 28px);
}

/* Dropdown menus */
.main-navigation .sub-menu,
.ast-primary-menu-area .main-navigation ul .sub-menu {
  background: white !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  box-shadow: var(--shadow-green) !important;
  padding: 8px !important;
  min-width: 200px !important;
}

.main-navigation .sub-menu li a,
.ast-primary-menu-area .main-navigation ul .sub-menu li a {
  font-size: 13px !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  color: var(--text-mid) !important;
}

.main-navigation .sub-menu li a:hover {
  background: var(--green-pale) !important;
  color: var(--green-deep) !important;
}

/* Header WhatsApp CTA button */
.ast-header-custom-widget .whatsapp-header-btn,
.header-wa-btn {
  background: var(--green-deep) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: 'DM Sans', sans-serif !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  transition: background 0.2s, transform 0.15s !important;
  letter-spacing: 0.01em !important;
}

.header-wa-btn:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px) !important;
  color: white !important;
}

/* ============================================================
   ASTRA OVERRIDES — Footer
============================================================ */
.site-footer,
#colophon,
.ast-footer-widgets-area,
.ast-small-footer {
  background: var(--green-deep) !important;
  color: rgba(255,255,255,0.6) !important;
  border-top: none !important;
}

.site-footer a,
#colophon a {
  color: rgba(255,255,255,0.55) !important;
  transition: color 0.2s !important;
}

.site-footer a:hover,
#colophon a:hover {
  color: var(--gold-light) !important;
}

.site-footer .widget-title,
#colophon .widget-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 16px !important;
}

.ast-small-footer,
.ast-footer-copyright {
  background: var(--green-deep) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 12px !important;
}

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.jewels-announce-bar {
  background: var(--green-deep);
  color: var(--gold-light);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: 'DM Sans', sans-serif;
}

.jewels-announce-bar span.sep {
  margin: 0 16px;
  opacity: 0.4;
}

/* ============================================================
   BUTTONS — Global
============================================================ */
.btn-jewels-primary,
.wp-block-button__link,
.ast-button,
button[type="submit"],
input[type="submit"] {
  background: var(--green-deep) !important;
  color: white !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  border-radius: 6px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.btn-jewels-primary:hover,
.wp-block-button__link:hover,
.ast-button:hover {
  background: var(--green-mid) !important;
  transform: translateY(-2px) !important;
  color: white !important;
}

.btn-jewels-gold {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
}

.btn-jewels-gold:hover {
  background: var(--gold-light) !important;
  color: var(--green-deep) !important;
}

.btn-jewels-outline {
  background: transparent !important;
  color: var(--green-deep) !important;
  border: 2px solid var(--green-deep) !important;
}

.btn-jewels-outline:hover {
  background: var(--green-deep) !important;
  color: white !important;
}

/* ============================================================
   WHATSAPP STICKY BUTTON
============================================================ */
.jewels-wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.jewels-wa-bubble {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-mid);
  box-shadow: var(--shadow-green);
  animation: fadeSlideIn 0.5s ease 2s both;
  white-space: nowrap;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.jewels-wa-float {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  font-size: 26px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 3s infinite 3s;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

.jewels-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ============================================================
   SECTION HELPERS — Reusable layout utilities
============================================================ */
.jewels-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.jewels-section {
  padding: 96px 24px;
}

.jewels-section-sm {
  padding: 64px 24px;
}

.jewels-section-dark {
  background: var(--green-deep);
}

.jewels-section-cream {
  background: var(--cream);
}

.jewels-section-pale {
  background: var(--green-pale);
}

.jewels-section-gold {
  background: var(--gold-pale);
}

/* Section eyebrow label */
.jewels-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
}

.jewels-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.jewels-eyebrow-center {
  justify-content: center;
}

.jewels-eyebrow-center::before {
  display: none;
}

/* Section titles */
.jewels-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 20px;
}

.jewels-title-white {
  color: white;
}

.jewels-title em {
  font-style: italic;
  color: var(--green-light);
}

.jewels-title-white em {
  color: var(--gold-light);
}

/* ============================================================
   HERO — Homepage
============================================================ */
.jewels-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 108px);
  max-height: 780px;
}

.jewels-hero-left {
  background: var(--green-deep);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.jewels-hero-left::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.jewels-hero-left::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.jewels-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
}

.jewels-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.jewels-hero-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 8px;
}

.jewels-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.jewels-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 20px 0 40px;
  max-width: 380px;
  font-weight: 300;
}

.jewels-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.jewels-hero-trust {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.jewels-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jewels-trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.jewels-trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  line-height: 1.3;
}

/* Hero right — fabric grid */
.jewels-hero-right {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.jewels-fabric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}

.jewels-fabric-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.jewels-fabric-tile-1 {
  background:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.12) 0, rgba(201,168,76,0.12) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.08) 0, rgba(201,168,76,0.08) 1px, transparent 0, transparent 50%),
    linear-gradient(135deg, #2d5a3d 0%, #1a3a2a 100%);
  background-size: 12px 12px, 12px 12px, 100% 100%;
}

.jewels-fabric-tile-2 {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 0, transparent 8px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 0, transparent 8px),
    linear-gradient(135deg, #c9a84c 0%, #a07830 100%);
  background-size: 8px 8px, 8px 8px, 100% 100%;
}

.jewels-fabric-tile-3 {
  background:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(61,122,82,0.3) 0%, transparent 50%),
    linear-gradient(135deg, #f5efe6 0%, #e8ddd0 100%);
}

.jewels-fabric-tile-4 {
  background:
    repeating-linear-gradient(90deg, rgba(26,58,42,0.07) 0, rgba(26,58,42,0.07) 2px, transparent 0, transparent 14px),
    linear-gradient(135deg, #3d7a52 0%, #2d5a3d 100%);
  background-size: 14px 100%, 100% 100%;
}

.jewels-fabric-label {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
}

/* Floating WhatsApp badge on hero */
.jewels-hero-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.jewels-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.jewels-badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.2;
}

.jewels-badge-text span {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   CATEGORY STRIP
============================================================ */
.jewels-cat-strip {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.jewels-cat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-width: max-content;
}

.jewels-cat-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 16px;
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.jewels-cat-item:last-child {
  border-right: none;
}

.jewels-cat-item:hover {
  background: rgba(201,168,76,0.08);
}

.jewels-cat-icon {
  font-size: 22px;
  line-height: 1;
}

.jewels-cat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.03em;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

/* ============================================================
   VALUE / FEATURE CARDS
============================================================ */
.jewels-value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.jewels-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.jewels-value-card.dark {
  background: var(--green-deep);
  border-color: transparent;
}

.jewels-value-card .card-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.jewels-value-card .card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.jewels-value-card.dark .card-title {
  color: var(--gold-light);
}

.jewels-value-card .card-body {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.jewels-value-card.dark .card-body {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SERVICE CARDS
============================================================ */
.jewels-service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.jewels-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}

.jewels-service-header {
  padding: 40px 40px 32px;
  position: relative;
  overflow: hidden;
}

.jewels-service-header.green {
  background: var(--green-deep);
}

.jewels-service-header.gold {
  background: linear-gradient(135deg, #c9a84c 0%, #a07830 100%);
}

.jewels-service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  pointer-events: none;
}

.jewels-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.jewels-service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.jewels-service-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

.jewels-service-body {
  padding: 32px 40px 40px;
}

.jewels-feature-list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

.jewels-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid #f5f5f5;
  font-family: 'DM Sans', sans-serif;
}

.jewels-feature-list li:last-child {
  border: none;
}

.jewels-feature-check {
  color: var(--green-mid);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ============================================================
   PRODUCT CARDS
============================================================ */
.jewels-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jewels-product-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
  background: white;
}

.jewels-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.jewels-product-card.dashed {
  border-style: dashed;
  border-color: var(--gold);
  background: var(--gold-pale);
}

.jewels-product-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.jewels-product-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
}

.jewels-product-badge {
  background: var(--gold);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
}

.jewels-product-badge.green {
  background: var(--green-mid);
  color: white;
}

.jewels-product-info {
  padding: 16px;
}

.jewels-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.jewels-product-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.jewels-product-action {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-mid);
  font-family: 'DM Sans', sans-serif;
}

/* Product visual backgrounds */
.pv-ankara {
  background:
    repeating-conic-gradient(rgba(201,168,76,0.3) 0% 25%, transparent 0% 50%) 0 0/20px 20px,
    linear-gradient(135deg, #2d5a3d, #1a3a2a);
}

.pv-crepe {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 1px, transparent 0, transparent 8px),
    linear-gradient(135deg, #c9a84c, #8b6914);
  background-size: 8px 8px, 100% 100%;
}

.pv-asoke {
  background:
    repeating-linear-gradient(0deg, rgba(201,168,76,0.2) 0, rgba(201,168,76,0.2) 2px, transparent 0, transparent 10px),
    repeating-linear-gradient(90deg, rgba(201,168,76,0.15) 0, rgba(201,168,76,0.15) 2px, transparent 0, transparent 10px),
    linear-gradient(135deg, #3d2b1f, #5c3d2e);
  background-size: 10px 10px, 10px 10px, 100% 100%;
}

.pv-lace {
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.1) 2px, transparent 2px, transparent 12px),
    linear-gradient(135deg, #2a1a3a, #1a0a2e);
  background-size: 12px 12px, 100% 100%;
}

.pv-chiffon {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(135deg, #c9a84c55, #2d5a3d);
}

.pv-socks {
  background:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.15) 0, rgba(201,168,76,0.15) 4px, transparent 0, transparent 16px),
    linear-gradient(135deg, #e8f0ea, #c8dece);
  background-size: 16px 16px, 100% 100%;
}

.pv-underwear {
  background: linear-gradient(135deg, #f5efe6, #e8ddd0);
}

.pv-coming {
  background: linear-gradient(135deg, #fdf6e3, #f5e8c0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

/* ============================================================
   CREPE CARDS (Modest Wear Section)
============================================================ */
.jewels-crepe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.jewels-crepe-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.jewels-crepe-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
}

.jewels-crepe-swatch {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin: 0 auto 12px;
}

.swatch-london  { background: linear-gradient(135deg, #2d2d2d, #1a1a1a); }
.swatch-korean  { background: linear-gradient(135deg, #4a6741, #2d5a3d); }
.swatch-jonkoso { background: linear-gradient(135deg, #8b6914, #c9a84c); }

.jewels-crepe-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.jewels-crepe-use {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  font-family: 'DM Sans', sans-serif;
}

/* Essential tags */
.jewels-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.jewels-essential-tag {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   TRUST CARDS
============================================================ */
.jewels-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jewels-trust-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.jewels-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.jewels-trust-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.jewels-trust-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.jewels-trust-card-body {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   CTA BANNER
============================================================ */
.jewels-cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jewels-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04) 0,
    rgba(255,255,255,0.04) 1px,
    transparent 0,
    transparent 20px
  );
  pointer-events: none;
}

.jewels-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.jewels-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.jewels-cta-sub {
  font-size: 15px;
  color: rgba(26,58,42,0.7);
  margin-bottom: 32px;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

.jewels-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   BLOG / POSTS
============================================================ */

/* Post title */
.entry-title a {
  font-family: 'Cormorant Garamond', serif !important;
  color: var(--green-deep) !important;
  font-size: clamp(22px, 2.5vw, 32px) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}

.entry-title a:hover {
  color: var(--green-mid) !important;
}

/* Post meta */
.entry-meta,
.ast-post-meta {
  font-size: 12px !important;
  color: var(--text-light) !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Post excerpt */
.entry-summary p,
.entry-content p {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: var(--text-mid) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
}

/* Read more link */
.read-more-container a,
.ast-read-more {
  color: var(--green-mid) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* Single post content headings */
.entry-content h2 {
  font-size: clamp(24px, 2.5vw, 34px) !important;
  color: var(--green-deep) !important;
  margin-top: 48px !important;
  margin-bottom: 16px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--border) !important;
}

.entry-content h3 {
  font-size: clamp(20px, 2vw, 26px) !important;
  color: var(--green-deep) !important;
  margin-top: 36px !important;
  margin-bottom: 12px !important;
}

.entry-content h4 {
  font-size: 18px !important;
  color: var(--green-mid) !important;
  margin-top: 28px !important;
  margin-bottom: 10px !important;
  font-style: italic !important;
}

/* Blockquote */
.entry-content blockquote {
  border-left: 3px solid var(--gold) !important;
  background: var(--gold-pale) !important;
  padding: 20px 24px !important;
  border-radius: 0 8px 8px 0 !important;
  margin: 28px 0 !important;
  font-style: italic !important;
  color: var(--green-deep) !important;
}

/* ============================================================
   SIDEBAR
============================================================ */
.widget-area .widget-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--border) !important;
  margin-bottom: 16px !important;
}

/* WhatsApp CTA widget */
.widget-wa-cta {
  background: var(--green-deep);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.widget-wa-cta h3 {
  color: white !important;
  font-size: 20px !important;
  margin-bottom: 8px !important;
}

.widget-wa-cta p {
  color: rgba(255,255,255,0.6) !important;
  font-size: 13px !important;
  margin-bottom: 16px !important;
}

.widget-wa-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.widget-wa-cta a:hover {
  background: #1da851;
}

/* ============================================================
   FADE-UP ANIMATION
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WOOCOMMERCE (ready for when you add it later)
============================================================ */
.woocommerce .price,
.woocommerce-Price-amount {
  color: var(--green-deep) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--green-deep) !important;
  color: white !important;
  border-radius: 6px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.woocommerce .button:hover {
  background: var(--green-mid) !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .jewels-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .jewels-hero {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .jewels-hero-right {
    height: 300px;
  }

  .jewels-hero-left {
    padding: 60px 32px;
  }

  .jewels-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jewels-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .jewels-crepe-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .jewels-section {
    padding: 64px 16px;
  }

  .jewels-product-grid {
    grid-template-columns: 1fr;
  }

  .jewels-trust-grid {
    grid-template-columns: 1fr;
  }

  .jewels-hero-left {
    padding: 48px 20px;
  }

  .jewels-hero-trust {
    flex-wrap: wrap;
    gap: 20px;
  }
}
