@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600&display=swap');

/* ==========================================================
   GLOBAL
   ========================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

img { max-width: 100%; display: block; }

/* Shared floating animation used by hero leaves, deco leaves/coconuts */
@keyframes floatLeaf {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-22px) rotate(6deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes floatDeco {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-16px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .leaf, .deco { animation: none !important; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 800px;
  background:
    linear-gradient(180deg, rgba(10,30,20,0.55) 0%, rgba(8,26,17,0.65) 40%, rgba(6,20,13,0.85) 100%),
    url('images/bg.jpg') center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 100px;
}

.hero-content { position: relative; z-index: 3; max-width: 780px; width: 100%; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(24px, 4.5vw, 44px);
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero-content h2 {
  font-weight: 600;
  color: #a4e666;
  font-size: clamp(15px, 2.4vw, 20px);
  margin-bottom: 14px;
}

.hero-content p {
  color: #e4ede2;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 0 10px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 55px; flex-wrap: wrap; }

.btn {
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary { background: #a4e666; color: #123a1e; }
.btn-primary:hover { background: #8fd94e; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #123a1e; }

.hero-stats { display: flex; justify-content: center; gap: 70px; flex-wrap: wrap; }
.stat h3 { font-family: 'Playfair Display', serif; color: #a4e666; font-size: clamp(20px, 3vw, 32px); margin-bottom: 4px; }
.stat span { color: #d9e6d4; font-size: 12.5px; font-weight: 500; }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 90px; display: block; }

.leaf {
  position: absolute;
  z-index: 2;
  width: 90px;
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  animation: floatLeaf 6s ease-in-out infinite;
}
.leaf-top-right   { top: 6%;  right: 4%; width: 80px; animation-duration: 7s; }
.leaf-mid-left    { top: 42%; left: 3%;  width: 60px; animation-duration: 5.5s; animation-delay: -2s; }
.leaf-mid-right   { top: 46%; right: 6%; width: 55px; animation-duration: 6.5s; animation-delay: -1s; }
.leaf-bottom-left { bottom: 18%; left: 6%; width: 70px; animation-duration: 6s; animation-delay: -3s; }

/* ==========================================================
   WHO WE ARE + WHY CHOOSE US
   ========================================================== */
.who-why-section { position: relative; background: #f2f7ee;  overflow: hidden; }

.top-wave { position: absolute; top: 0; left: 0; width: 100%; line-height: 0; z-index: 1; }
.top-wave svg { width: 100%; height: 60px; display: block; }

.section-inner { position: relative; z-index: 2; max-width: 1250px; margin: 0 auto; }

.who-we-are { display: flex; align-items: center; gap: 60px; margin-bottom: 110px; flex-wrap: wrap; }
.who-image { flex: 1 1 420px; }
.who-image img { width: 100%; border-radius: 16px;  }
.who-content { flex: 1 1 420px; }
.who-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px); color: #123a1e; margin-bottom: 20px; }
.who-content p { font-size: 14.5px; line-height: 1.7; color: #2c4a34; margin-bottom: 16px; }

.eyebrow { display: inline-block; font-style: italic; color: #1f7a44; font-size: 14px; margin-bottom: 18px; }

.founder-card { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.founder-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.founder-info { display: flex; flex-direction: column; font-size: 14px; }
.founder-info strong { color: #123a1e; }
.founder-info span { color: #5c7a63; font-size: 12.5px; }

.premium-badge { background: #fff; border-radius: 14px; padding: 14px 18px; max-width: 300px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.premium-badge h4 { font-family: 'Playfair Display', serif; color: #123a1e; font-size: 15px; margin-bottom: 4px; }
.premium-badge p { font-size: 12.5px; color: #55705c; line-height: 1.5; margin: 0; }

.why-choose h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 36px); color: #123a1e; text-align: center; margin-bottom: 45px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card { background: #fff; border-radius: 16px; padding: 32px 26px; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); }
.why-icon { width: 58px; height: 58px; border-radius: 50%; background: #eaf3df; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: #123a1e; margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: #5c7a63; line-height: 1.6; }

.deco { position: absolute; z-index: 1; pointer-events: none; animation: floatDeco 6s ease-in-out infinite; }
.deco-leaf-left    { top: 42%; left: -20px; width: 90px; animation-duration: 6.5s; }
.deco-coconut-right{ top: 38%; right: -10px; width: 90px; animation-duration: 7s; animation-delay: -2s; }
.deco-coconut-left { bottom: 4%; left: -10px; width: 100px; animation-duration: 6s; animation-delay: -3s; }
.deco-leaf-right   { bottom: 6%; right: -20px; width: 90px; animation-duration: 5.5s; animation-delay: -1s; }

/* ==========================================================
   PRODUCTS SHOWCASE
   ========================================================== */
.products-showcase { position: relative; background: #eaf3df; padding: 70px 40px 90px; overflow: hidden; }
.showcase-inner { max-width: 1250px; margin: 0 auto; position: relative; z-index: 2; }
.products-showcase h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 34px); color: #123a1e; text-align: center; margin-bottom: 45px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.product-card { background: #fff; border-radius: 16px; padding: 24px 22px 26px; text-align: center; box-shadow: 0 8px 22px rgba(0,0,0,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,0.1); }
.product-card img { width: 100%; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.product-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: #123a1e; margin-bottom: 8px; }
.product-card p { font-size: 12.5px; color: #5c7a63; line-height: 1.5; margin-bottom: 16px; }

.btn-read-more { display: inline-block; background: #123a1e; color: #fff; font-size: 13px; font-weight: 600; padding: 9px 22px; border-radius: 30px; text-decoration: none; transition: background 0.25s ease; }
.btn-read-more:hover { background: #1f7a44; }

.stats-bar { background: #123a1e; border-radius: 20px; padding: 40px 50px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.stats-left { flex: 1 1 260px; }
.premium-tag { display: inline-block; background: rgba(164,230,102,0.15); color: #a4e666; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.stats-left h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(20px, 3vw, 26px); line-height: 1.3; }
.stats-right { flex: 2 1 500px; }
.stats-heading { font-family: 'Playfair Display', serif; color: #cfe0c9; font-size: 16px; margin-bottom: 18px; }
.stats-row { display: flex; gap: 16px; flex-wrap: wrap; }
.stat-box { background: rgba(255,255,255,0.08); border-radius: 14px; padding: 18px 22px; text-align: center; flex: 1 1 100px; }
.stat-box strong { display: block; font-family: 'Playfair Display', serif; color: #a4e666; font-size: 24px; margin-bottom: 4px; }
.stat-box span { font-size: 12px; color: #cfe0c9; }

.deco-top-left  { top: 10px; left: 10px; width: 60px; animation-duration: 6s; }
.deco-top-right { top: 10px; right: 10px; width: 55px; animation-duration: 6.5s; animation-delay: -2s; }

/* ==========================================================
   BUSINESS STATISTICS BAR (curved dark + light panel)
   ========================================================== */
.stats-section { padding: 0; }
.stats-wrap { position: relative; display: flex; align-items: stretch; background: #b9e08a; overflow: hidden; }
.stats-dark-panel {
  position: relative;

  background: #0d3d24;
  color: #fff;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 60% 60% 0 / 0 100% 100% 0;
}
.stats-dark-panel h3 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3vw, 28px); line-height: 1.25; margin-bottom: 14px; }
.stats-dark-panel p { font-size: 13px; color: #cfe0c9; line-height: 1.6;  margin-bottom: 22px; }
.premium-pill { display: inline-block; background: #a4e666; color: #123a1e; font-size: 13px; font-weight: 600; padding: 10px 22px; border-radius: 30px; width: fit-content; }

.stats-light-panel { flex: 1; background: #b9e08a; padding: 40px 50px; display: flex; flex-direction: column; justify-content: center; }
.stats-light-panel h4 { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2.5vw, 24px); color: #123a1e; text-align: center; margin-bottom: 26px; }
.stats-light-panel .stats-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.stats-light-panel .stat-box { background: #cdeaa3; border-radius: 16px; padding: 22px 26px; text-align: center; min-width: 110px; }
.stat-box-highlight { background: #e9f7d8; }
.stats-light-panel .stat-box strong { font-size: clamp(20px, 3vw, 26px); color: #123a1e; margin-bottom: 8px; }
.stats-light-panel .stat-box span { font-size: 12px; font-weight: 600; color: #2c4a34; line-height: 1.4; }

/* ==========================================================
   OUR PROCESS + WHY CUSTOMERS TRUST US
   ========================================================== */
.process-section { position: relative; background: #eaf3df; padding: 60px 40px 0; overflow: hidden; }
.process-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.process-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3.5vw, 32px); color: #123a1e; text-align: center; margin-bottom: 40px; }

.process-row { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 26px; }
.process-step { background: #fff; border-radius: 16px; padding: 22px 26px; text-align: center; min-width: 140px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.step-icon { font-size: 26px; margin-bottom: 10px; }
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 14.5px; color: #123a1e; margin-bottom: 4px; }
.process-step span { font-size: 11.5px; color: #7a9482; }
.process-arrow { font-size: 20px; color: #1f7a44; }

.trust-panel { background: #0d3d24; margin-top: 50px; padding: 55px 40px 65px; border-radius: 40px 40px 0 0; position: relative; z-index: 2; }
.trust-panel h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(22px, 3.5vw, 28px); text-align: center; margin-bottom: 40px; }
.trust-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-image { flex: 1 1 320px; max-width: 380px; }
.trust-image img { width: 100%; border-radius: 16px; box-shadow: 0 10px 26px rgba(0,0,0,0.3); }
.trust-badges { flex: 1 1 400px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 420px; }
.trust-badge {
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1c5c37, #0d3d24);
  border: 3px solid #a4e666;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; margin: 0 auto;
}
.trust-badge strong { font-family: 'Playfair Display', serif; font-size: 24px; color: #a4e666; margin-bottom: 6px; }
.trust-badge span { font-size: 12px; color: #e6efe0; line-height: 1.3; padding: 0 12px; }

.deco-mid-left { top: 40%; left: 0; width: 70px; animation-duration: 6s; animation-delay: -2s; }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery-section { background: #faf6e7; padding: 70px 40px; }
.gallery-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 34px); color: #123a1e; text-align: center; margin-bottom: 40px; }
.gallery-grid { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.zoom-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; background: #a4e666; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #123a1e; font-size: 16px;
}

/* ==========================================================
   TESTIMONIALS (scroll type)
   ========================================================== */
.testimonial-section { position: relative; background: #cfe6a8; padding: 70px 40px 60px; overflow: hidden; }
.testimonial-decor { position: absolute; top: -60px; right: -60px; width: 260px; height: 260px; background: radial-gradient(circle, #7ec850 0%, transparent 70%); border-radius: 50%; opacity: 0.5; }
.testimonial-section h2 { position: relative; font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 34px); color: #123a1e; text-align: center; margin-bottom: 40px; z-index: 2; }
.testimonial-track-wrap { position: relative; max-width: 1150px; margin: 0 auto; z-index: 2; }
.testimonial-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 10px; -ms-overflow-style: none; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 calc(33.333% - 16px); scroll-snap-align: start; background: #e6f2d6; border-radius: 16px; padding: 30px 26px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.stars { color: #f2b400; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 13.5px; color: #3c5a44; line-height: 1.6; margin-bottom: 20px; min-height: 80px; }
.testimonial-card strong { display: block; font-family: 'Playfair Display', serif; color: #123a1e; font-size: 15px; }
.testimonial-card span { font-size: 12.5px; color: #5c7a63; }
.testimonial-dots { position: relative; display: flex; justify-content: center; gap: 8px; margin-top: 30px; z-index: 2; }
.testimonial-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: #a8c98a; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.testimonial-dots .dot.active { background: #123a1e; transform: scale(1.2); }

/* ==========================================================
   FAQ + CTA BANNER
   ========================================================== */
.faq-section { background: #faf6e7; padding-bottom: 70px; }
.faq-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 34px); color: #123a1e; text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1px solid #d9d0b0; border-radius: 14px; background: #faf6e7; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 26px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px; color: #123a1e; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 10px; }
.faq-icon { font-size: 18px; color: #123a1e; transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 26px; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 26px 20px; }
.faq-answer p { font-size: 13.5px; color: #4a5c4f; line-height: 1.6; }

.cta-banner { position: relative; background: url('images/banner.jpg') center/cover no-repeat; padding: 90px 40px; text-align: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,61,36,0.75), rgba(13,61,36,0.55)); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(22px, 4vw, 34px); margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.btn-call, .btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 14.5px; }
.btn-call { background: #a4e666; color: #123a1e; }
.btn-call:hover { background: #8fd94e; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebc59; }

/* ==========================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================================== */
@media (max-width: 1024px) {
  .hero, .who-why-section, .products-showcase, .process-section,
  .gallery-section, .testimonial-section, .faq-section, .cta-banner {
    padding-left: 28px;
    padding-right: 28px;
  }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

/* ==========================================================
   RESPONSIVE — MOBILE / TABLET (≤ 900px)
   ========================================================== */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .who-we-are { gap: 30px; }
  .deco { display: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { flex-direction: column; align-items: flex-start; }

  .stats-wrap { flex-direction: column; }
  .stats-dark-panel {
    flex: none;
    border-radius: 0 0 40% 40% / 0 0 20% 20%;
    text-align: center;
    align-items: center;
    padding: 32px 28px;
  }
  .stats-dark-panel p { max-width: 100%; }
  .stats-light-panel .stats-row { justify-content: center; }

  .process-arrow { display: none; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================================== */
@media (max-width: 768px) {
  .hero-content h1 { font-size: clamp(22px, 6vw, 30px); }
  .hero-content h2 { font-size: 16px; }
  .hero-stats { gap: 28px; }
  .stat h3 { font-size: 22px; }
  .leaf { display: none; }

  .who-content h2, .why-choose h2, .products-showcase h2,
  .process-section h2, .gallery-section h2,
  .testimonial-section h2, .faq-section h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .founder-card { flex-direction: column; align-items: flex-start; }
  .premium-badge { max-width: 100%; }

  .stat-box { flex: 1 1 45%; }
  .cta-content h2 { font-size: 24px; }
}

/* ==========================================================
   RESPONSIVE — SMALL MOBILE (≤ 600px)
   ========================================================== */
@media (max-width: 600px) {
  .hero, .who-why-section, .products-showcase, .process-section,
  .gallery-section, .testimonial-section, .faq-section, .cta-banner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero { min-height: 560px; padding-top: 40px; padding-bottom: 80px; }
  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }

  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .testimonial-card { flex: 0 0 100%; }

  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-badge { width: 120px; height: 120px; }
  .trust-badge strong { font-size: 20px; }
  .trust-badge span { font-size: 10.5px; }

  .faq-question { font-size: 13px; padding: 16px 18px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-call, .btn-whatsapp { width: 100%; max-width: 260px; justify-content: center; }

  .stats-dark-panel h3 { font-size: 22px; }
  .premium-tag { font-size: 11px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .why-icon { width: 50px; height: 50px; font-size: 22px; }
  .stat-box { flex: 1 1 100%; }
}
 /* ============================================================
     TENDER COCONUT — SINGLE PRODUCT PAGE
     Matches Saraswathi Traders & Exporters detail-page theme (maroon / cream)
     ============================================================ */

  :root{
    --dl-maroon:#ed1c24;
    --dl-maroon-dark:#ed1c24;
    --dl-cream:#faf3e6;
    --dl-cream-2:#fdf8ee;
    --dl-text:#2c2420;
    --dl-muted:#7a6f63;
    --dl-line:#f0e4d0;
    --dl-red:#ed1c24;
  }

  /* ---- Breadcrumb ---- */
  .pd-breadcrumb{
    background:var(--dl-cream-2);
    border-bottom:1px solid var(--dl-line);
    padding:14px 40px;
  }
  .pd-breadcrumb-inner{
    max-width:1300px;
    margin:0 auto;
    font-size:13px;
    color:var(--dl-muted);
  }
  .pd-breadcrumb-inner span{ color:var(--dl-maroon); font-weight:600; }

  /* ---- Top Section ---- */
  .pd-top{ background:var(--dl-cream); padding:40px; }
  .pd-top-inner{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:400px 1fr;
    gap:40px;
    background:#fff;
    border-radius:16px;
    padding:36px;
    box-shadow:0 10px 30px rgba(90,40,30,0.07);
  }

  .pd-image-box{ position:relative; }
  .pd-image-box img{
    width:100%;
    height:340px;
    object-fit:cover;
    border-radius:12px;
    background:#f4ece0;
  }
  .pd-logo-badge{
    position:absolute;
    top:16px; left:16px;
    display:flex; align-items:center; gap:6px;
    background:rgba(255,255,255,0.9);
    padding:6px 10px;
    border-radius:8px;
  }
  .pd-logo-badge img{ width:22px; height:22px; object-fit:contain; border-radius:0; }
  .pd-logo-badge span{ font-size:11px; font-weight:700; color:var(--dl-maroon); letter-spacing:.3px; }
  .pd-image-caption{
    text-align:center;
    font-size:13px;
    color:var(--dl-muted);
    margin-top:12px;
    font-style:italic;
  }

  .pd-info-box{ padding-top:4px; }
  .pd-title-row{ display:flex; justify-content:space-between; align-items:flex-start; }
  .pd-title-row h1{
    font-family:'Playfair Display', serif;
    font-size:26px;
    color:var(--dl-maroon-dark);
    letter-spacing:.3px;
  }
  .pd-share-btn{
    width:38px; height:38px;
    border-radius:50%;
    border:1px solid var(--dl-line);
    background:#fff;
    color:var(--dl-maroon);
    cursor:pointer;
    font-size:14px;
  }

  .pd-price{ font-size:22px; font-weight:700; color:var(--dl-red); margin:16px 0 4px; }
  .pd-price span{ font-size:13px; font-weight:500; color:var(--dl-muted); }
  .pd-moq{ font-size:13px; color:var(--dl-muted); margin-bottom:20px; }

  .pd-quote-row{
    display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    margin-bottom:24px;
  }
  .pd-qty, .pd-unit{
    padding:11px 14px;
    border:1px solid var(--dl-line);
    border-radius:8px;
    font-size:13px;
    width:120px;
    background:#fff;
  }
  .pd-edit-link{
    font-size:12.5px;
    color:var(--dl-maroon);
    text-decoration:underline;
    white-space:nowrap;
  }
  .pd-btn-price, .pd-btn-call{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--dl-red);
    color:#fff;
    font-size:13.5px;
    font-weight:600;
    padding:12px 26px;
    border-radius:8px;
    text-decoration:none;
    transition:background .2s ease;
  }
  .pd-btn-price:hover, .pd-btn-call:hover{ background:var(--dl-maroon-dark); }

  .pd-quick-specs{ width:100%; border-collapse:collapse; margin-bottom:14px; }
  .pd-quick-specs tr{ border-bottom:1px solid var(--dl-line); }
  .pd-quick-specs tr:last-child{ border-bottom:none; }
  .pd-quick-specs td{ padding:11px 0; font-size:13px; vertical-align:top; }
  .pd-quick-specs td:first-child{
    font-weight:600; color:var(--dl-text); width:170px; padding-right:16px;
  }
  .pd-quick-specs td:last-child{ color:var(--dl-muted); }

  .pd-viewmore{
    display:inline-block;
    font-size:13px;
    color:var(--dl-maroon);
    text-decoration:underline;
    margin-bottom:26px;
  }

  .pd-cta-row{ display:flex; gap:16px; flex-wrap:wrap; }
  .pd-btn-call{ background:transparent; border:2px solid var(--dl-maroon-dark); color:var(--dl-maroon-dark); }
  .pd-btn-call:hover{ background:var(--dl-maroon-dark); color:#fff; }
  .pd-btn-enquiry{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--dl-red);
    color:#fff;
    font-size:13.5px; font-weight:600;
    padding:12px 26px;
    border-radius:8px;
    text-decoration:none;
  }
  .pd-btn-enquiry:hover{ background:var(--dl-maroon-dark); }

  /* ---- Product Details ---- */
  .pd-details{ background:var(--dl-cream); padding:0 40px 40px; }
  .pd-details-inner{
    max-width:1300px; margin:0 auto;
    background:#fff;
    border-radius:16px;
    padding:36px;
    box-shadow:0 10px 30px rgba(90,40,30,0.07);
  }
  .pd-details-inner h2{
    font-family:'Playfair Display', serif;
    font-size:20px;
    color:var(--dl-maroon-dark);
    margin-bottom:22px;
  }
  .pd-details-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 40px;
    margin-bottom:24px;
  }
  .pd-details-grid table{ width:100%; border-collapse:collapse; }
  .pd-details-grid tr{ border-bottom:1px solid var(--dl-line); }
  .pd-details-grid tr:last-child{ border-bottom:none; }
  .pd-details-grid td{ padding:12px 0; font-size:13px; vertical-align:top; }
  .pd-details-grid td:first-child{
    font-weight:600; color:var(--dl-text); width:160px; padding-right:16px;
  }
  .pd-details-grid td:last-child{ color:var(--dl-muted); }

  .pd-details-note{
    background:var(--dl-cream-2);
    border-radius:10px;
    padding:18px 22px;
    margin-bottom:26px;
  }
  .pd-details-note p{ font-size:13px; color:var(--dl-text); line-height:1.7; margin-bottom:6px; }
  .pd-details-note p:last-child{ margin-bottom:0; color:var(--dl-muted); }

  .pd-btn-interested{
    display:inline-block;
    background:var(--dl-maroon);
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:13px 32px;
    border-radius:8px;
    text-decoration:none;
  }
  .pd-btn-interested:hover{ background:var(--dl-maroon-dark); }

  /* ---- Enquiry Form ---- */
  .pd-enquiry{ background:var(--dl-cream); padding:0 40px 40px; }
  .pd-enquiry-inner{
    max-width:1300px; margin:0 auto;
    background:#fff;
    border-radius:16px;
    padding:36px;
    box-shadow:0 10px 30px rgba(90,40,30,0.07);
  }
  .pd-enquiry-inner h2{
    text-align:center;
    font-family:'Playfair Display', serif;
    font-size:20px;
    color:var(--dl-text);
    margin-bottom:26px;
  }
  .pd-enquiry-inner h2 span{ color:var(--dl-red); }

  .pd-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:18px; }
  .pd-form-field label{ display:block; font-size:12.5px; color:var(--dl-muted); margin-bottom:6px; }
  .pd-form-field input, .pd-form-field textarea, .pd-form-field select{
    width:100%;
    padding:12px 14px;
    border:1px solid var(--dl-line);
    border-radius:8px;
    font-size:13.5px;
    font-family:inherit;
  }
  .pd-full-width{ grid-column:1 / -1; }

  .pd-mobile-group{ display:flex; gap:8px; }
  .pd-country-code{ width:90px; flex:none; }
  .pd-qty-group{ display:flex; align-items:center; gap:8px; }
  .pd-unit-small{ width:90px; flex:none; }

  .pd-radio-group{ display:flex; gap:26px; margin-top:6px; }
  .pd-radio-group label{ display:flex; align-items:center; gap:6px; font-size:13.5px; color:var(--dl-text); }
  .pd-radio-group input{ width:auto; }

  .pd-btn-submit{
    display:block;
    margin:6px auto 0;
    background:var(--dl-maroon-dark);
    color:#fff;
    border:none;
    font-size:15px;
    font-weight:600;
    padding:14px 40px;
    border-radius:8px;
    cursor:pointer;
  }
  .pd-btn-submit:hover{ background:var(--dl-maroon); }

  /* ---- Explore More ---- */
  .pd-more-products{ background:var(--dl-cream); padding:0 40px 60px; }
  .pd-more-inner{ max-width:1300px; margin:0 auto; }
  .pd-more-inner h2{
    text-align:center;
    font-family:'Playfair Display', serif;
    font-size:22px;
    color:var(--dl-maroon-dark);
    margin-bottom:28px;
  }
  .pd-more-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
  }
  .pd-more-card{
    background:#fff;
    border-radius:14px;
    padding:18px;
    text-align:center;
    box-shadow:0 6px 18px rgba(90,40,30,0.06);
  }
  .pd-more-card img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:12px;
  }
  .pd-more-card h3{
    font-size:14.5px;
    color:var(--dl-text);
    margin-bottom:14px;
    font-weight:600;
  }
  .pd-btn-quote{
    display:inline-block;
    background:var(--dl-red);
    color:#fff;
    font-size:12.5px;
    font-weight:600;
    padding:9px 20px;
    border-radius:20px;
    text-decoration:none;
  }
  .pd-btn-quote:hover{ background:var(--dl-maroon-dark); }

  /* ---- Shared Quote Popup ---- */
  .quote-popup{
    position:fixed; left:0; top:0; width:100%; height:100%;
    background:rgba(0,0,0,.7);
    display:none; align-items:center; justify-content:center;
    z-index:9999;
  }
  .quote-popup.active{ display:flex; }
  .popup-box{
    background:#fff; width:900px; max-width:95%;
    display:grid; grid-template-columns:40% 60%;
    border-radius:12px; overflow:hidden; position:relative;
  }
  .popup-left{ padding:30px; background:var(--dl-cream-2); }
  .popup-left img{ width:100%; border-radius:10px; }
  .popup-right{ padding:30px; }
  .popup-right form{ display:grid; gap:15px; }
  .popup-right input, .popup-right select, .popup-right textarea{
    padding:14px; border:1px solid var(--dl-line); border-radius:8px; font-size:15px;
  }
  .popup-right button{
    padding:15px; background:var(--dl-maroon-dark); color:#fff; border:none;
    border-radius:8px; font-size:17px; cursor:pointer;
  }
  .close-popup{ position:absolute; right:18px; top:12px; font-size:34px; cursor:pointer; }

  /* ---- Responsive ---- */
  @media (max-width:900px){
    .pd-top-inner{ grid-template-columns:1fr; }
    .pd-details-grid{ grid-template-columns:1fr; }
    .pd-form-row{ grid-template-columns:1fr; }
    .pd-more-grid{ grid-template-columns:repeat(2,1fr); }
  }
  @media (max-width:600px){
    .pd-breadcrumb, .pd-top, .pd-details, .pd-enquiry, .pd-more-products{
      padding-left:18px; padding-right:18px;
    }
    .pd-top-inner, .pd-details-inner, .pd-enquiry-inner{ padding:22px; }
    .pd-more-grid{ grid-template-columns:1fr 1fr; gap:14px; }
    .pd-title-row h1{ font-size:21px; }
  }
