:root{
  --brand-emerald: #0F6B54;
  --brand-gold:    #C59C4F;
  --bg-cream:      #FFF8F0;
  --surface:       #E9E4DE;
  --text:          #1F2A2E;
  --accent-ruby:   #B02A37;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* Base */
body { background: var(--bg-cream); color: var(--text); font-family: var(--font-body); line-height:1.5; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); color:var(--brand-emerald); margin:0 0 .5rem 0; }

/* Hero */
.ramya-hero{ padding:48px 16px; background: linear-gradient(135deg, rgba(15,107,84,0.92), rgba(10,78,61,0.9) 60%, rgba(197,156,79,0.88)); color: #fff; }
.ramya-hero-inner{ max-width:1200px; margin:0 auto; display:flex; gap:24px; align-items:center; justify-content:space-between; }
.ramya-hero-copy{ max-width:560px; }
.ramya-hero-title{ font-size:36px; margin-bottom:12px; }
.ramya-hero-sub{ opacity:0.95; margin-bottom:16px; }

/* Buttons */
.ramya-btn{ display:inline-block; padding:10px 18px; border-radius:8px; text-decoration:none; font-weight:600; }
.ramya-btn-gold{ background:var(--brand-gold); color:#fff; box-shadow: 0 6px 18px rgba(197,156,79,0.18); }
.ramya-btn-emerald{ background:var(--brand-emerald); color:#fff; }
.ramya-btn-ghost{ background:transparent; border:1px solid rgba(255,255,255,0.3); color:#fff; }

/* Showcase product card */
.ramya-product-card{ width:320px; border-radius:14px; overflow:hidden; background:rgba(255,255,255,0.9); color:var(--text); box-shadow:0 12px 34px rgba(0,0,0,0.18); }
.ramya-product-visual{ height:260px; background-size:cover; background-position:center; }

/* Featured grid */
.ramya-featured-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-top:20px; }
.ramya-card{ background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 8px 22px rgba(0,0,0,0.08); text-decoration:none; color:inherit; }
.ramya-card-img{ height:240px; background-size:cover; background-position:center; }
.ramya-card-body{ padding:14px; }
.ramya-price{ font-weight:700; color:var(--brand-emerald); }

/* Trust band */
.ramya-trust-band{ background:var(--surface); padding:18px 0; border-top:1px solid rgba(0,0,0,0.04); position:relative; z-index:10; }
.ramya-trust-inner{ max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; gap:12px; font-size:14px; color:#333; }

/* Responsiveness */
@media (max-width:900px){
  .ramya-hero-inner{ flex-direction:column; }
  .ramya-featured-grid{ grid-template-columns: 1fr; }
}
