:root {
  --jj-bg: #103b2c;
  --jj-bg-soft: #17513d;
  --jj-gold: #d4b06a;
  --jj-gold-deep: #b68f4e;
  --jj-ivory: #f6f0e4;
  --jj-ink: #1f1f1f;
}

html, body {
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top right, #2d6d55 0%, var(--jj-bg) 45%, #0a261b 100%);
  color: #f2f2f2;
}

h1, h2, h3, h4, h5, .brand-name, .footer-title {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

.top-header {
  background: rgba(9, 31, 22, 0.92);
  border-bottom: 1px solid rgba(212, 176, 106, 0.25);
}

.top-logo {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid rgba(212, 176, 106, 0.75);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.brand-strip {
  min-width: 0;
}

.top-brand-title {
  color: var(--jj-gold);
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
  line-height: 1;
}

.social-mini,
.social-pill {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--jj-ivory);
  border: 1px solid rgba(212, 176, 106, 0.55);
  transition: transform .2s ease, background .2s ease;
}

.social-mini:hover,
.social-pill:hover {
  transform: translateY(-2px);
  background: rgba(212, 176, 106, 0.2);
  color: #fff;
}

.site-nav {
  background: rgba(16, 59, 44, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 176, 106, 0.35);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(212, 176, 106, 0.8);
}

.brand-name {
  color: var(--jj-gold);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
}

.site-nav .nav-link {
  color: #e8dfca;
  font-weight: 600;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--jj-gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--jj-gold), #efd39f);
  color: #1e201e;
  border: 0;
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e0bf82, #f3ddb4);
}

.btn-outline-ivory {
  border: 1px solid rgba(246, 240, 228, 0.65);
  color: #f6f0e4;
  font-weight: 600;
}

.btn-outline-ivory:hover {
  background: rgba(246, 240, 228, 0.12);
  color: #fff;
}

.btn-cart-green {
  background: #0f5e2c;
  color: #fff;
  border: 1px solid #0f5e2c;
  font-weight: 700;
}

.btn-cart-green:hover,
.btn-cart-green:focus {
  background: #1a7f3b;
  color: #fff;
  border-color: #1a7f3b;
}

.cart-modal-image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.qty-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  min-width: 40px;
  height: 38px;
  border: 1px solid #ced4da;
  background: #f8f9fa;
  color: #212529;
  font-weight: 700;
}

.qty-input {
  max-width: 88px;
  text-align: center;
}

.hero-slide {
  min-height: 76vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(9, 30, 22, 0.85), rgba(25, 63, 49, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.hero-heading {
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.05;
  color: var(--jj-ivory);
}

.hero-sub {
  max-width: 630px;
  color: rgba(246, 240, 228, 0.94);
}

.content-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--jj-ink);
  border-radius: 24px;
  border: 1px solid rgba(212, 176, 106, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.section-title {
  color: var(--jj-gold);
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.product-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 176, 106, 0.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.product-image {
  height: 230px;
  object-fit: cover;
  width: 100%;
}

.site-footer {
  background: #0d2e22;
  border-top: 1px solid rgba(212, 176, 106, 0.28);
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(212, 176, 106, 0.7);
}

.footer-link {
  color: #ded3bd;
  text-decoration: none;
  margin-bottom: .2rem;
}

.footer-link:hover {
  color: #fff;
}

.copyright {
  background: #082116;
  color: #c7bca7;
}

.admin-shell {
  min-height: calc(100vh - 220px);
}

.admin-sidebar {
  width: 235px;
  min-width: 235px;
  background: #0c2f22;
  border-right: 1px solid rgba(212, 176, 106, 0.35);
  padding: 1rem;
}

.admin-link {
  display: block;
  color: #efe4cb;
  text-decoration: none;
  border: 1px solid rgba(212, 176, 106, 0.35);
  border-radius: 10px;
  padding: .5rem .7rem;
  margin-bottom: .55rem;
}

.admin-link:hover {
  background: rgba(212, 176, 106, 0.2);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  z-index: 999;
  font-size: 2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1db954;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

.map-embed iframe {
  width: 100%;
  border: 0;
  border-radius: 14px;
  min-height: 330px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .45s ease, transform .45s ease;
}

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

@media (max-width: 991.98px) {
  .brand-name {
    font-size: 1.45rem;
  }

  .hero-slide {
    min-height: 67vh;
  }

  .admin-sidebar {
    position: fixed;
    inset: auto auto 0 0;
    height: calc(100vh - 140px);
    z-index: 30;
  }
}

/* ── Modal redesign ─────────────────────────────── */
.modal-popup-jj { max-width: 440px; }

.modal-jj-card {
  border: 0;
  border-radius: 24px !important;
  box-shadow: 0 32px 70px rgba(0,0,0,.45);
  overflow: hidden;
}

.modal-jj-header {
  background: linear-gradient(135deg, #0f4a33 0%, #1a6b4a 60%, #0d3524 100%);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(212,176,106,.4);
  position: relative;
}
.modal-jj-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--jj-gold), transparent);
}

.modal-jj-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  border: 2.5px solid rgba(212,176,106,.75);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  flex-shrink: 0;
}

.modal-jj-product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--jj-ivory);
  letter-spacing: .02em;
  line-height: 1.2;
}

.modal-jj-tagline {
  font-size: .8rem;
  color: rgba(212,176,106,.9);
  margin-top: 4px;
}

.modal-jj-close {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.modal-jj-close:hover { background: rgba(255,255,255,.22); }

.modal-jj-body {
  background: #fff;
  padding: 1.6rem 1.5rem 1rem;
}

.modal-jj-chips {
  display: flex;
  gap: 12px;
}

.modal-jj-chip {
  flex: 1;
  background: linear-gradient(135deg, #f8f4ec, #fdf9f1);
  border: 1.5px solid rgba(212,176,106,.45);
  border-radius: 14px;
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.modal-jj-chip-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7a6a4a;
}

.modal-jj-chip-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1f3d2a;
  line-height: 1;
}

.modal-jj-chip-unit {
  font-size: .72rem;
  color: #7a6a4a;
  font-weight: 600;
}

.modal-jj-field-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #5a4a2a;
  margin-bottom: 8px;
}

.modal-jj-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-jj-qty-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid rgba(212,176,106,.5);
  background: linear-gradient(135deg, #f8f4ec, #fff);
  color: #1f3d2a;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.modal-jj-qty-btn:hover {
  background: linear-gradient(135deg, var(--jj-gold), #efd39f);
  border-color: var(--jj-gold);
  color: #1e201e;
}

.modal-jj-qty-input {
  width: 72px;
  height: 42px;
  text-align: center;
  border: 1.5px solid rgba(212,176,106,.45);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f3d2a;
  outline: none;
}
.modal-jj-qty-input:focus { border-color: var(--jj-gold-deep); }

.modal-jj-textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 14px;
  padding: .75rem 1rem;
  font-size: .95rem;
  color: #1f1f1f;
  resize: vertical;
  outline: none;
  transition: border-color .2s;
  font-family: "Manrope", sans-serif;
}
.modal-jj-textarea:focus { border-color: var(--jj-gold-deep); }

.modal-jj-footer {
  background: #fff;
  padding: .8rem 1.5rem 1.5rem;
}

.btn-jj-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .85rem 1.5rem;
  background: linear-gradient(135deg, #128c2e, #25d366);
  color: #fff;
  border: 0;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter .2s, transform .15s;
  box-shadow: 0 8px 20px rgba(18,140,46,.3);
}
.btn-jj-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}

/* ── Stats strip ────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, #0d3524 0%, #1a6b4a 50%, #0d3524 100%);
  border-top: 1px solid rgba(212,176,106,.3);
  border-bottom: 1px solid rgba(212,176,106,.3);
  padding: 2.5rem 0;
  margin-bottom: 0;
}

.stats-item {
  padding: 1rem;
  border-right: 1px solid rgba(212,176,106,.2);
}
.stats-item:last-child { border-right: 0; }

.stats-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--jj-gold);
  line-height: 1;
}
.stats-plus { font-size: 1.6rem; vertical-align: super; }
.stats-label {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(246,240,228,.75);
  margin-top: 6px;
}

/* ── Category cards ─────────────────────────────── */
.category-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(212,176,106,.25);
  border-radius: 18px;
  padding: 1.5rem .5rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
}
.category-card:hover {
  transform: translateY(-5px);
  background: rgba(212,176,106,.12);
  border-color: var(--jj-gold);
}

.category-icon {
  font-size: 2rem;
  color: var(--jj-gold);
  margin-bottom: .5rem;
}
.category-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jj-ivory);
}

/* ── Testimonials ───────────────────────────────── */
.testimonial-section {
  background: linear-gradient(135deg, #082116 0%, #103b2c 100%);
  border-top: 1px solid rgba(212,176,106,.2);
  border-bottom: 1px solid rgba(212,176,106,.2);
  padding: 4rem 0;
}

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,176,106,.25);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  height: 100%;
  transition: transform .2s, background .2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
}

.testimonial-stars {
  color: var(--jj-gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: .8rem;
}
.testimonial-text {
  font-style: italic;
  color: rgba(246,240,228,.88);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testimonial-author {
  font-weight: 700;
  color: var(--jj-gold);
  font-size: .9rem;
}

/* ── WhatsApp CTA Banner ────────────────────────── */
.wa-cta-banner {
  background: linear-gradient(135deg, #0d3524, #1a6b4a);
  border: 1.5px solid rgba(212,176,106,.35);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.wa-cta-content { display: flex; align-items: center; gap: 1.2rem; }
.wa-cta-icon {
  font-size: 2.8rem;
  color: #25d366;
  flex-shrink: 0;
}
.wa-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jj-ivory);
}
.wa-cta-sub { color: rgba(246,240,228,.75); font-size: .9rem; margin-top: 2px; }
.wa-cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #128c2e, #25d366);
  color: #fff;
  font-weight: 700;
  padding: .75rem 1.8rem;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
  transition: filter .2s, transform .15s;
  box-shadow: 0 8px 20px rgba(18,140,46,.35);
}
.wa-cta-btn:hover { filter: brightness(1.1); transform: translateY(-1px); color: #fff; }

/* ── Profile page ───────────────────────────────── */
.profile-hero {
  background: linear-gradient(135deg, #082116 0%, #17513d 60%, #0d3524 100%);
  border-bottom: 1px solid rgba(212,176,106,.3);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,176,106,.08) 0%, transparent 70%);
}

.profile-hero-badge {
  display: inline-block;
  border: 1.5px solid rgba(212,176,106,.55);
  color: var(--jj-gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.profile-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--jj-ivory);
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}
.profile-hero-sub {
  color: rgba(212,176,106,.85);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.profile-pillar-card {
  background: rgba(255,255,255,.95);
  color: var(--jj-ink);
  border-radius: 22px;
  border: 1px solid rgba(212,176,106,.2);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding: 2rem 1.8rem;
  text-align: center;
}

.profile-pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jj-gold), #efd39f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1e201e;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(212,176,106,.35);
}

.profile-pillar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--jj-bg);
  margin-bottom: .5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 0 0 0 2.5rem;
  border-left: 2px solid rgba(212,176,106,.4);
  max-width: 640px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.2rem;
}

.timeline-dot {
  position: absolute;
  left: -2.9rem;
  top: .35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--jj-gold);
  border: 3px solid var(--jj-bg);
  box-shadow: 0 0 0 3px rgba(212,176,106,.35);
}

.timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--jj-gold);
  line-height: 1;
  margin-bottom: .3rem;
}

.timeline-event {
  color: rgba(246,240,228,.85);
  line-height: 1.6;
}

/* Trust badges */
.trust-badge-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(212,176,106,.25);
  border-radius: 18px;
  padding: 2rem 1rem;
  transition: transform .2s, background .2s;
}
.trust-badge-card:hover {
  transform: translateY(-4px);
  background: rgba(212,176,106,.08);
}

.trust-badge-icon {
  font-size: 2.2rem;
  color: var(--jj-gold);
  display: block;
  margin-bottom: .8rem;
}
.trust-badge-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jj-ivory);
  margin-bottom: .3rem;
}
.trust-badge-sub {
  font-size: .8rem;
  color: rgba(246,240,228,.65);
}

/* Visit us card */
.visit-us-card {
  background: rgba(255,255,255,.95);
  color: var(--jj-ink);
  border-radius: 24px;
  border: 1px solid rgba(212,176,106,.25);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  padding: 2.5rem 2.5rem;
}
.visit-us-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--jj-bg);
  margin-bottom: .5rem;
}
.visit-us-sub { color: #555; }

/* ── Instagram section ──────────────────────────── */
.insta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0d1117 0%, #1a1035 50%, #0d1117 100%);
  border-top: 1px solid rgba(193,53,132,.3);
  border-bottom: 1px solid rgba(193,53,132,.3);
}

.insta-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  justify-content: center;
  text-align: left;
}

.insta-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(220,39,67,.4);
}

.insta-handle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
}

.insta-tagline {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-top: 3px;
}

.insta-embed-wrap {
  display: flex;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  border: 1px solid rgba(193,53,132,.3);
  background: #fff;
  max-width: 500px;
  margin: 0 auto;
}

.insta-embed-frame {
  width: 100%;
  min-width: 320px;
  min-height: 540px;
  border: 0;
  display: block;
}

.btn-insta-follow {
  display: inline-flex;
  align-items: center;
  padding: .85rem 2.2rem;
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(220,39,67,.4);
  transition: filter .2s, transform .15s;
}
.btn-insta-follow:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 575.98px) {
  .top-header .small {
    font-size: .72rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .top-logo {
    width: 56px;
    height: 56px;
  }

  .top-brand-title {
    font-size: 1rem;
  }

  .footer-logo {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .content-card {
    border-radius: 18px;
  }

  .product-image {
    height: 190px;
  }
}