/* ==============================================
   MAIDAM GOLD - HOME PAGE
   Bright & Professional Design
   ============================================== */

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-hero);
  overflow: hidden;
}

/* Decorative shapes */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-bg-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(197, 150, 12, 0.12);
  top: -15%;
  right: -5%;
}

.hero-bg-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(232, 176, 14, 0.08);
  bottom: -5%;
  left: -3%;
  animation-delay: -5s;
}

/* Subtle dot pattern */
.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(197, 150, 12, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Hero Content */
.hero-content { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-lighter);
  border: 1px solid var(--gold-light);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 11px;
  color: var(--gold-dark);
  margin-bottom: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-badge i {
  color: var(--gold);
}

.hero-content h1 {
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.hero-content h1 .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-content > p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 44px;
  max-width: 440px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Hero Metrics Strip */
.hero-metrics {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.hero-metric {
  text-align: left;
}

.hero-metric .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-metric .label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
}

.hero-card {
  position: absolute;
  width: 85%;
  height: 75%;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  box-shadow: var(--shadow-card);
}

.hero-card-1 {
  top: 0;
  right: 0;
  z-index: 3;
}

.hero-card-2 {
  top: 12%;
  right: 8%;
  z-index: 2;
  opacity: 0.7;
  transform: scale(0.95);
}

.hero-card-3 {
  top: 22%;
  right: 14%;
  z-index: 1;
  opacity: 0.4;
  transform: scale(0.9);
}

.hero-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  position: relative;
  background: linear-gradient(180deg, var(--gold-lighter) 0%, var(--bg-primary) 100%);
}

.hero-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.12;
}

.hero-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.hero-card-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Floating tag on hero card */
.hero-card-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold-gradient);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(197, 150, 12, 0.3);
}

/* ========================
   MARQUEE / TRUST STRIP
   ======================== */
.trust-strip {
  background: var(--gold-gradient);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.trust-marquee {
  display: flex;
  animation: marquee 25s linear infinite;
  gap: 60px;
  white-space: nowrap;
}

.trust-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.trust-marquee-item i {
  font-size: 16px;
}

.trust-marquee-divider {
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================
   PRODUCT HIGHLIGHTS
   ======================== */
.product-highlights {
  background: var(--bg-secondary);
}

.product-highlights .section-header h2 { color: var(--text-primary); }
.product-highlights .section-header p { color: var(--text-secondary); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.product-card-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(160deg, var(--gold-lighter) 0%, var(--bg-tertiary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, var(--bg-primary));
  pointer-events: none;
}

.product-card-image i {
  font-size: 72px;
  color: var(--gold);
  opacity: 0.15;
  transition: all 0.5s var(--ease-out-expo);
}

.product-card:hover .product-card-image i {
  opacity: 0.25;
  transform: scale(1.1) rotate(3deg);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold-gradient);
  color: white;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(197, 150, 12, 0.3);
}

.product-card-body {
  padding: 28px;
}

.product-card-body h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
  transition: color 0.3s;
}

.product-card:hover .product-card-body h3 {
  color: var(--gold-dark);
}

.product-card-body p {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-footer .btn {
  flex: 1;
}

.product-card-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.4s var(--ease-out-expo);
  margin-left: 12px;
  flex-shrink: 0;
}

.product-card:hover .product-card-arrow {
  border-color: var(--gold);
  color: white;
  background: var(--gold);
  transform: translateX(4px);
}

/* ========================
   FEATURES / WHY US
   ======================== */
.why-us {
  background: var(--bg-primary);
  position: relative;
}

.why-us .section-header h2 { color: var(--text-primary); }
.why-us .section-header p { color: var(--text-secondary); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  padding: 36px 32px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.why-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.why-item .icon {
  min-width: 56px;
  height: 56px;
  background: var(--gold-lighter);
  border: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  transition: all 0.4s var(--ease-out-expo);
}

.why-item:hover .icon {
  background: var(--gold-gradient);
  color: white;
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 4px 16px rgba(197, 150, 12, 0.3);
}

.why-item-text h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--text-primary);
}

.why-item-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ========================
   CUSTOM DESIGN SHOWCASE
   ======================== */
.custom-showcase {
  background: var(--bg-secondary);
  overflow: hidden;
}

.custom-showcase .section-label { color: var(--gold-dark); }
.custom-showcase h2 { color: var(--text-primary); }
.custom-showcase .custom-content > p { color: var(--text-secondary); }
.custom-showcase .custom-step-text { color: var(--text-secondary); }

.custom-showcase .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.custom-visual {
  position: relative;
}

/* Custom Gallery with real product images */
.custom-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.custom-gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.custom-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.custom-gallery-main:hover img {
  transform: scale(1.03);
}

.custom-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.custom-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.custom-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.custom-gallery-item:hover img {
  transform: scale(1.05);
}

/* Legacy card fallback */
.custom-visual-card {
  background: var(--gold-gradient);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold-lg);
}

.custom-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.custom-visual-card i {
  font-size: 100px;
  color: white;
  opacity: 0.25;
  margin-bottom: 24px;
  position: relative;
}

.custom-visual-card h3 {
  color: white;
  margin-bottom: 8px;
  position: relative;
}

.custom-visual-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  position: relative;
}

/* Floating badges around the card */
.custom-float-badge {
  position: absolute;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}

.custom-float-badge i {
  color: var(--gold);
}

.custom-float-badge:nth-child(2) {
  top: -10px;
  right: -20px;
  animation-delay: -1s;
}

.custom-float-badge:nth-child(3) {
  bottom: 20px;
  left: -30px;
  animation-delay: -2.5s;
}

.custom-content h2 {
  margin-bottom: 20px;
}

.custom-content > p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* Steps */
.custom-steps {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.custom-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s var(--ease-out-expo);
}

.custom-step:last-child {
  border-bottom: none;
}

.custom-step:hover {
  padding-left: 12px;
}

.custom-step .step-number {
  min-width: 36px;
  height: 36px;
  background: var(--gold-lighter);
  color: var(--gold);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s var(--ease-out-expo);
}

.custom-step:hover .step-number {
  background: var(--gold-gradient);
  color: white;
  box-shadow: 0 2px 8px rgba(197, 150, 12, 0.3);
}

.custom-step-text {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================
   STATS BANNER
   ======================== */
.stats-banner {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(232, 176, 14, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.stats-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(197, 150, 12, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  background: var(--bg-primary);
  text-align: center;
}

.cta-card {
  background: var(--gold-gradient);
  border-radius: var(--radius-2xl);
  padding: 80px 60px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card h2 {
  margin-bottom: 16px;
  position: relative;
  color: white;
}

.cta-card p {
  margin-bottom: 36px;
  font-size: 15px;
  position: relative;
  color: rgba(255,255,255,0.8);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-buttons .btn-gold {
  background: white;
  color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-buttons .btn-gold:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cta-buttons .btn-gold::before {
  background: linear-gradient(90deg, transparent, rgba(197, 150, 12, 0.1), transparent);
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -30px); }
  50% { transform: translate(-10px, 20px); }
  75% { transform: translate(15px, 10px); }
}

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

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content > p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .hero-visual { display: none; }
  .hero { min-height: 80vh; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-metrics { flex-wrap: wrap; gap: 24px; }

  .products-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .custom-showcase .container { grid-template-columns: 1fr; gap: 40px; }
  .custom-float-badge { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .cta-card { padding: 50px 28px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-metrics { flex-direction: column; align-items: center; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================
   TODAY'S GOLD PRICE SECTION
   Premium Card Grid Design
   ========================== */
.gold-price-section {
  position: relative;
  background: var(--gold-gradient-soft);
  padding: 90px 0 100px;
  overflow: hidden;
}

.gold-price-bg-accent {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(232, 176, 14, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.gold-price-section .container { position: relative; z-index: 1; }

/* Effective-date meta with LIVE pill */
.gold-price-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 500;
  justify-content: center;
}
.gold-price-sep { color: var(--gold-dark); opacity: 0.45; }
.gold-price-effective-text strong { color: var(--text-primary); }

.gold-price-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px 4px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.35);
}
.gold-price-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: gold-price-pulse 1.4s ease-in-out infinite;
}
@keyframes gold-price-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}

/* ---- Hero card (999) ---- */
.gold-price-hero-slot { max-width: 820px; margin: 44px auto 0; }

.gold-price-hero {
  position: relative;
  background: linear-gradient(135deg, #1A1710 0%, #2A2318 50%, #1A1710 100%);
  border: 1px solid rgba(232, 176, 14, 0.28);
  border-radius: 24px;
  padding: 44px 48px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 23, 16, 0.28);
}
.gold-price-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(232, 176, 14, 0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gold-price-hero-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 229, 160, 0.08), transparent);
  pointer-events: none;
  animation: gold-price-shine 5s ease-in-out infinite;
}
@keyframes gold-price-shine {
  0%   { left: -100%; }
  50%  { left: 120%; }
  100% { left: 120%; }
}

.gold-price-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.gold-price-hero-left { position: relative; }

.gold-price-hero-grade {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 8vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #FBE5A0 0%, #E8B00E 55%, #FBE5A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.gold-price-hero-karat {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.gold-price-hero-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(251, 229, 160, 0.6);
  font-weight: 700;
}
.gold-price-hero-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 110px;
  color: rgba(232, 176, 14, 0.08);
  pointer-events: none;
}

.gold-price-hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.gold-price-hero-cell {
  background: rgba(251, 229, 160, 0.04);
  border: 1px solid rgba(232, 176, 14, 0.18);
  border-radius: 14px;
  padding: 18px 18px 16px;
}
.gold-price-hero-cell-sell {
  background: linear-gradient(160deg, rgba(232, 176, 14, 0.14) 0%, rgba(232, 176, 14, 0.03) 100%);
  border-color: rgba(232, 176, 14, 0.38);
}
.gold-price-hero-cell-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(251, 229, 160, 0.65);
  font-weight: 700;
  margin-bottom: 10px;
}
.gold-price-hero-cell-value {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
}
.gold-price-hero-cell-unit {
  font-size: 11px;
  color: rgba(251, 229, 160, 0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ---- Purity grid (916, 750, 585) ---- */
.gold-price-purity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

/* ---- Bar heading divider ---- */
.gold-price-bar-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 52px auto 24px;
  max-width: 620px;
}
.gold-price-bar-heading-line {
  flex: 1;
  height: 1px;
  background: rgba(154, 116, 0, 0.28);
}
.gold-price-bar-heading-text {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ---- Bar grid (GB, GB05) ---- */
.gold-price-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

/* ---- Shared card (purity + bar) ---- */
.gold-price-card {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid rgba(197, 150, 12, 0.16);
  border-radius: 18px;
  padding: 26px 24px 22px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 16px rgba(154, 116, 0, 0.06);
  overflow: hidden;
}
.gold-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.85;
}
.gold-price-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(154, 116, 0, 0.16);
}

.gold-price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(197, 150, 12, 0.18);
}

.gold-price-card-grade {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.5px;
}
.gold-price-card-karat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  text-align: right;
  padding-top: 4px;
}

/* Bar-card specific head layout */
.gold-price-card-bar .gold-price-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
}
.gold-price-bar-icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-lighter);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gold-price-card-grade-bar {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.5px;
}
.gold-price-card-bar .gold-price-card-karat {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 0;
}

/* Card body rows (Jual / Beli) */
.gold-price-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gold-price-card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.gold-price-card-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.gold-price-card-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.1;
}
.gold-price-card-unit {
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 3px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Disclaimer */
.gold-price-disclaimer {
  text-align: center;
  margin: 40px auto 0;
  color: var(--text-muted);
  font-size: 12px;
  font-style: italic;
  line-height: 1.7;
  max-width: 700px;
}

/* Loading / error states */
.gold-price-loading,
.gold-price-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.gold-price-error { color: #c0392b; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .gold-price-hero { padding: 36px 30px; }
  .gold-price-hero-inner { gap: 28px; }
  .gold-price-hero-icon { font-size: 80px; right: -10px; }
  .gold-price-purity-grid { gap: 14px; }
}

@media (max-width: 768px) {
  .gold-price-section { padding: 60px 0 70px; }
  .gold-price-hero { padding: 32px 26px; }
  .gold-price-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gold-price-hero-icon { display: none; }
  .gold-price-hero-right { gap: 14px; }
  .gold-price-purity-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .gold-price-bar-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

@media (max-width: 480px) {
  .gold-price-hero { padding: 28px 22px; border-radius: 18px; }
  .gold-price-hero-right { grid-template-columns: 1fr; }
  .gold-price-card { padding: 22px 20px 20px; }
  .gold-price-card-grade { font-size: 1.8rem; }
  .gold-price-card-grade-bar { font-size: 1.5rem; }
}

