/*
Theme Name: Aashirwad Foods
Theme URI: https://aashirwadfoods.com
Author: Aashirwad Foods
Author URI: https://aashirwadfoods.com
Description: Custom WordPress B2B theme for Aashirwad Foods — namkeen manufacturer. Traditional saffron-and-red palette, partnership-focused layouts, unified inquiry form, Products CPT, FAQ schema, and AI-visibility (robots.txt allow-list + /llms.txt) built in.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aashirwad
Tags: food, brand, business, one-column, custom-menu, featured-images, threaded-comments
*/

/* =========================================================
   Aashirwad Foods — stylesheet
   Palette: saffron, deep red, cream, charcoal
   ========================================================= */

:root {
  --saffron: #E87722;
  --saffron-dark: #C9601A;
  --deep-red: #B22222;
  --gold: #F4B400;
  --cream: #FFF8F0;
  --cream-warm: #FBEFE0;
  --charcoal: #2C1810;
  --muted: #6B5B50;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(44, 24, 16, 0.12);
  --shadow-soft: 0 4px 14px rgba(44, 24, 16, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

section { padding: 88px 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--deep-red));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 119, 34, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(232, 119, 34, 0.5); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-outline:hover { background: var(--saffron); color: var(--white); }

/* Top bar */
.topbar { background: var(--charcoal); color: var(--cream); font-size: 0.85rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.topbar a { color: var(--cream); opacity: 0.85; }
.topbar a:hover { color: var(--gold); opacity: 1; }

/* Navbar */
.navbar { background: var(--white); box-shadow: var(--shadow-soft); position: sticky; top: 0; z-index: 100; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo .custom-logo-link { display: block; line-height: 0; }
.navbar img.custom-logo, img.custom-logo { max-height: 56px; width: auto; height: auto; display: block; }
.navbar .custom-logo-link { line-height: 0; display: inline-block; }
.logo-mark {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--deep-red));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--deep-red); }
.logo-text .tagline { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a { font-weight: 500; color: var(--charcoal); position: relative; padding: 6px 0; transition: color var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--saffron); transition: width var(--transition); }
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item > a { color: var(--saffron); }
.nav-links a:hover::after, .nav-links a.active::after, .nav-links .current-menu-item > a::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; position: relative; z-index: 200; }
.hamburger span { width: 26px; height: 3px; background: var(--charcoal); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); transform-origin: center; }
.nav-links.open ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-links.open ~ .hamburger span:nth-child(2) { opacity: 0; }
.nav-links.open ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(178, 34, 34, 0.78), rgba(232, 119, 34, 0.6)),
    url('https://images.unsplash.com/photo-1606491048802-8342506d6471?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white); overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(244, 180, 0, 0.2), transparent 50%); pointer-events: none; }
.hero-content { max-width: 720px; position: relative; z-index: 2; animation: fadeUp 1s ease; }
.hero .eyebrow {
  display: inline-block; padding: 6px 18px;
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px); border-radius: 50px;
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.15rem; opacity: 0.95; margin-bottom: 34px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.chip { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.1); animation: float 6s ease-in-out infinite; }
.chip.c1 { width: 120px; height: 120px; top: 18%; right: 8%; }
.chip.c2 { width: 70px; height: 70px; bottom: 14%; right: 22%; animation-delay: 1.5s; }
.chip.c3 { width: 40px; height: 40px; top: 60%; right: 5%; animation-delay: 3s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Section head */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--saffron); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 10px; display: block; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* Features */
.features { background: var(--cream-warm); padding: 60px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.feature { text-align: center; padding: 20px; }
.feature-icon { width: 70px; height: 70px; margin: 0 auto 16px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: var(--shadow-soft); color: var(--saffron); }
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); position: relative; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image { height: 220px; background: linear-gradient(135deg, var(--cream-warm), var(--cream)); display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; }
.product-badge { position: absolute; top: 14px; right: 14px; background: var(--deep-red); color: var(--white); font-size: 0.7rem; padding: 4px 12px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; }
.product-body { padding: 22px 24px 26px; }
.product-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.product-body .desc { color: var(--muted); font-size: 0.93rem; margin-bottom: 14px; }
.product-body .meta { font-size: 0.82rem; color: var(--saffron); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* About split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-split .visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, rgba(178, 34, 34, 0.15), rgba(232, 119, 34, 0.1)), url('https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=800&q=80') center/cover; box-shadow: var(--shadow); }
.about-split h2 { margin-bottom: 18px; }
.about-split .eyebrow { color: var(--saffron); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 10px; display: block; }
.about-split p { color: var(--muted); margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(44, 24, 16, 0.1); }
.stat .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--deep-red); display: block; }
.stat .label { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* CTA */
.cta-strip { background: linear-gradient(135deg, var(--deep-red), var(--saffron)); color: var(--white); text-align: center; padding: 70px 20px; border-radius: var(--radius-lg); margin: 0 24px; box-shadow: var(--shadow); }
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p { opacity: 0.95; margin-bottom: 28px; font-size: 1.05rem; }
.cta-strip .btn-primary { background: var(--white); color: var(--deep-red); }
.cta-strip .btn-primary:hover { background: var(--gold); color: var(--charcoal); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testimonial { background: var(--white); padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); position: relative; }
.testimonial::before { content: '\201C'; position: absolute; top: 10px; left: 24px; font-family: var(--font-display); font-size: 4rem; color: var(--saffron); opacity: 0.3; line-height: 1; }
.testimonial p { color: var(--muted); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial .author { font-weight: 600; color: var(--charcoal); }
.testimonial .role { font-size: 0.85rem; color: var(--muted); }
.stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.process-step { background: var(--white); padding: 36px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); position: relative; counter-increment: step; }
.process-step::before { content: counter(step, decimal-leading-zero); position: absolute; top: -20px; right: 24px; font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--saffron); opacity: 0.25; }
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.95rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info { background: var(--charcoal); color: var(--cream); padding: 44px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-info h3 { color: var(--white); margin-bottom: 10px; }
.contact-info > p { opacity: 0.85; margin-bottom: 30px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-item .icon { width: 44px; height: 44px; background: var(--saffron); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-item h4 { color: var(--white); font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--cream); opacity: 0.85; font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); opacity: 1; }

.socials { display: flex; gap: 12px; margin-top: 30px; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--white); }
.social-btn:hover { background: var(--saffron); transform: translateY(-3px); }

.contact-form { background: var(--white); padding: 44px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9rem; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid #e5dfd7; border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem; background: var(--cream); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--saffron); background: var(--white); box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Page banner */
.page-banner { background: linear-gradient(135deg, rgba(178, 34, 34, 0.85), rgba(232, 119, 34, 0.75)), url('https://images.unsplash.com/photo-1606491048802-8342506d6471?auto=format&fit=crop&w=1600&q=80') center/cover; color: var(--white); padding: 100px 0 70px; text-align: center; }
.page-banner h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb { opacity: 0.9; font-size: 0.9rem; letter-spacing: 1px; }
.breadcrumb a { color: var(--gold); }

/* Footer */
.footer { background: var(--charcoal); color: var(--cream); padding: 70px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.footer p, .footer li { opacity: 0.8; font-size: 0.92rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--gold); opacity: 1; }
.footer-about p { margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; text-align: center; font-size: 0.85rem; opacity: 0.7; }

/* Product categories */
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 50px; }
.category-pill { padding: 10px 22px; border-radius: 50px; background: var(--white); border: 1.5px solid #e5dfd7; color: var(--charcoal); font-weight: 500; font-size: 0.92rem; cursor: pointer; transition: var(--transition); }
.category-pill:hover, .category-pill.active { background: var(--saffron); border-color: var(--saffron); color: var(--white); }
.category-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--deep-red); margin: 50px 0 24px; padding-bottom: 10px; border-bottom: 2px solid var(--cream-warm); }

/* Certifications */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-top: 40px; }
.cert-badge { background: var(--white); padding: 30px 20px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition); }
.cert-badge:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cert-badge .seal { width: 80px; height: 80px; margin: 0 auto 14px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--deep-red)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; font-family: var(--font-display); }
.cert-badge h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 4px; }
.cert-badge p { color: var(--muted); font-size: 0.85rem; }

/* Contact map + FAQ */
.map-wrap { margin-top: 50px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 400px; background: var(--cream-warm); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.95rem; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.faq-item { background: var(--white); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 14px; box-shadow: var(--shadow-soft); cursor: pointer; transition: var(--transition); }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--charcoal); }
.faq-q::after { content: '+'; font-size: 1.6rem; color: var(--saffron); transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: var(--muted); font-size: 0.95rem; transition: max-height 0.4s ease, margin-top 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; margin-top: 14px; }

/* WordPress form plugins fallback (Contact Form 7 etc) */
.wpcf7, .wpforms-container { margin-top: 20px; }
.wpcf7-form p, .wpforms-field { margin-bottom: 18px; }
.wpcf7-form-control, .wpforms-field input, .wpforms-field textarea, .wpforms-field select { width: 100%; padding: 12px 16px; border: 1.5px solid #e5dfd7; border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem; background: var(--cream); }
.wpcf7-submit, .wpforms-submit { background: linear-gradient(135deg, var(--saffron), var(--deep-red)); color: var(--white); border: none; padding: 14px 32px; border-radius: 50px; font-weight: 600; cursor: pointer; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* WP default */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { position: fixed; top: 78px; right: -100%; flex-direction: column; background: var(--white); width: 80%; max-width: 320px; height: calc(100vh - 78px); padding: 40px 30px; box-shadow: var(--shadow); transition: right var(--transition); align-items: flex-start; }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-split .visual { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* =========================================================
   B2B additions (v1.1.0)
   ========================================================= */

/* Topbar: two phones + email + hours + WhatsApp link */
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.88rem; }
.topbar-contact { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.topbar-contact a { color: inherit; text-decoration: none; }
.topbar-contact a:hover { color: var(--gold); }
.topbar-sep { opacity: 0.5; }
.topbar-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-wa { background: #25D366; color: #fff !important; padding: 4px 12px; border-radius: 999px; font-weight: 600; font-size: 0.8rem; }
.topbar-wa:hover { background: #1ebc56; color: #fff !important; }

/* Hero B2B + capacity badge */
.hero-b2b .hero-content { max-width: 820px; }
.capacity-badge { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 22px; margin: 26px 0 10px; background: rgba(255, 255, 255, 0.12); border: 1.5px solid rgba(244, 180, 0, 0.6); border-radius: var(--radius); backdrop-filter: blur(6px); }
.capacity-badge .capacity-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.capacity-badge .capacity-value { font-family: var(--font-display); font-size: 1.8rem; color: #fff; font-weight: 700; line-height: 1.1; }

/* Partnership intent cards */
.partnership-intents { padding-top: 80px; }
.intents-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.intent-card { display: flex; flex-direction: column; gap: 10px; padding: 32px 26px; background: #fff; border: 1.5px solid #f0e6d8; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); text-decoration: none; color: inherit; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
a.intent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--saffron); }
.intent-icon { font-size: 2.4rem; line-height: 1; }
.intent-card h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--deep-red); margin: 4px 0 0; }
.intent-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.intent-link { margin-top: auto; font-weight: 600; color: var(--saffron); }
.intent-points { list-style: none; padding: 0; margin: 8px 0 0; }
.intent-points li { position: relative; padding-left: 22px; color: var(--muted); font-size: 0.9rem; margin-bottom: 6px; }
.intent-points li::before { content: "\2713"; position: absolute; left: 0; color: var(--saffron); font-weight: 700; }

/* Product card variants */
.variants { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.variant-chip { display: inline-block; padding: 4px 10px; background: var(--cream-warm); color: var(--charcoal); border-radius: 999px; font-size: 0.78rem; font-weight: 500; border: 1px solid #eadfce; }
.product-cta { display: inline-block; margin-top: 14px; color: var(--saffron); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.product-cta:hover { color: var(--deep-red); }
.products-empty { text-align: center; padding: 40px 20px; background: var(--cream-warm); border-radius: var(--radius-lg); }
.products-empty p { color: var(--muted); margin-bottom: 16px; }

/* Unified inquiry form */
.inquiry-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; background: #fff; padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.inquiry-copy h2 { margin-bottom: 14px; }
.inquiry-facts { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 8px; }
.inquiry-facts li { color: var(--muted); font-size: 0.95rem; }
.inquiry-facts strong { color: var(--charcoal); margin-right: 4px; }

.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form .form-row { display: flex; flex-direction: column; gap: 6px; }
.inquiry-form .form-row-full { grid-column: 1 / -1; }
.inquiry-form label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.inquiry-form .req { color: var(--deep-red); }
.inquiry-form input[type=text], .inquiry-form input[type=tel], .inquiry-form input[type=email], .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #e5dfd7; border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem; background: var(--cream); color: var(--charcoal); transition: border-color var(--transition), box-shadow var(--transition); }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.15); }
.inquiry-form textarea { resize: vertical; min-height: 100px; }
.inquiry-form .form-submit { display: flex; flex-direction: column; gap: 8px; }
.inquiry-form .form-submit .btn { justify-self: start; }
.inquiry-form .form-note { font-size: 0.78rem; color: var(--muted); margin: 0; }
.inquiry-form .form-hp { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.inquiry-form.inquiry-form-compact { grid-template-columns: 1fr; }
.form-status { grid-column: 1 / -1; font-size: 0.9rem; margin-top: 8px; }
.form-status.is-success { color: #1b7f3a; }
.form-status.is-error { color: var(--deep-red); }

.contact-form-note { font-size: 0.88rem; color: var(--muted); margin: -6px 0 16px; }
.contact-form-note a { color: var(--saffron); font-weight: 600; }
.contact-wa { margin-top: 18px; display: inline-block; }

.footer-capacity { margin-top: 10px; color: #f4b400cc; font-size: 0.95rem; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 10px; line-height: 1.55; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-wa { display: inline-block; margin-top: 6px; background: #25D366; color: #fff !important; padding: 6px 14px; border-radius: 999px; font-weight: 600; font-size: 0.85rem; }

/* FAQ accordion */
.faq-list { max-width: 860px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1.5px solid #f0e6d8; border-radius: var(--radius); padding: 0; box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-item[open] { border-color: var(--saffron); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--charcoal); font-size: 1rem; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-chev { font-size: 1.6rem; line-height: 1; color: var(--saffron); transition: transform var(--transition); flex-shrink: 0; }
.faq-item[open] .faq-chev { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; color: var(--muted); line-height: 1.7; }
.faq-a p { margin: 0; }

/* CTA actions row */
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 16px; }

/* Responsive overrides for the new B2B bits */
@media (max-width: 900px) {
  .inquiry-wrap { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .capacity-badge { width: 100%; }
}
@media (max-width: 560px) {
  .intent-card { padding: 26px 22px; }
  .capacity-badge .capacity-value { font-size: 1.5rem; }
  .faq-q { padding: 16px 18px; font-size: 0.95rem; }
  .faq-a { padding: 0 18px 18px; }
}
