/* Inner page styles — shared across product + location pages */

:root {
  --sage-900: #151515;
  --sage-800: #222222;
  --sage-700: #333333;
  --sage-600: #444444;
  --sage-500: #555555;
  --sage-400: #666666;
  --sage-300: #888888;
  --sage-200: #dddddd;
  --sage-100: #eeeeee;
  --sage-50: #f5f5f5;
  --amber-700: #7a5a0e;
  --amber-600: #96701a;
  --amber-500: #b38824;
  --amber-400: #c99b2e;
  --amber-300: #dbb35a;
  --amber-200: #e8ca82;
  --amber-100: #f3e0b4;
  --amber-50: #faf3e3;
  --cream: #f4f1ea;
  --cream-dark: #e8e4d9;
  --white: #ffffff;
  --gray-900: #111111;
  --gray-800: #222222;
  --gray-700: #333333;
  --gray-600: #444444;
  --gray-500: #666666;
  --gray-400: #888888;
  --gray-300: #cccccc;
  --gray-200: #dddddd;
  --gray-100: #eeeeee;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Inter", system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --radius: 4px;
  --radius-lg: 6px;
  --top-bar-height: 35px;
}

@media (max-width: 768px) {
  :root {
    --top-bar-height: 60px;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--sage-900);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.top-bar.visible {
  transform: translateY(0);
}

.top-bar.visible + .inner-nav {
  top: var(--top-bar-height, 35px);
  margin-top: var(--top-bar-height, 35px);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-items {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item strong {
  color: var(--amber-300);
  font-weight: 600;
}

/* ===== WHATSAPP FLOATING BTN ===== */
.wa-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float-btn:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .wa-float-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px;
    font-size: 0;
    border-radius: 50%;
  }
  .wa-float-btn svg {
    margin: 0;
  }
}

/* ===== INNER NAV ===== */
.inner-nav {
  background: var(--sage-900);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  transition: top 0.35s ease, margin-top 0.35s ease;
}

.inner-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-nav-logo img {
  height: 32px;
  width: auto;
  border-radius: 4px;
}

.inner-nav-logo span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
}

.inner-nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.inner-nav-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color 0.2s;
}

.inner-nav-links a:hover {
  color: var(--amber-300);
}

.inner-nav-links .nav-cta-btn {
  background: var(--amber-400);
  color: var(--sage-900);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.inner-nav-links .nav-cta-btn:hover {
  background: var(--amber-300);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-400);
}

.breadcrumb-list a {
  color: var(--gray-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb-list a:hover {
  color: var(--sage-900);
}

.breadcrumb-list li::after {
  content: "›";
  margin-left: 8px;
  color: var(--gray-300);
}

.breadcrumb-list li:last-child::after {
  content: "";
}

.breadcrumb-list li:last-child {
  color: var(--sage-900);
  font-weight: 600;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--sage-900);
  padding: 40px 0 30px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg,
    rgba(30, 47, 34, 0.95) 20%,
    rgba(46, 68, 51, 0.92) 50%,
    rgba(61, 90, 68, 0.88));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber-300);
  margin-bottom: 12px;
}

.page-hero-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--amber-400);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 700px;
}

.page-hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 60px 0;
}

.content-section.alt-bg {
  background: var(--white);
}

/* ===== PRODUCT DETAIL GRID ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.pd-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s;
}

.pd-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-300);
}

.pd-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-100);
}

.pd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.pd-card:hover .pd-card-img img {
  transform: scale(1.04);
}

.pd-card-body {
  padding: 18px 16px;
}

.pd-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sage-900);
  margin-bottom: 4px;
}

.pd-card-body .pd-sku {
  font-size: 0.66rem;
  color: var(--amber-600);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pd-card-body p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== INFO BLOCK ===== */
.info-block {
  max-width: 780px;
}

.info-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--sage-900);
  line-height: 1.25;
  margin-bottom: 14px;
}

.info-block p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.8;
}

.info-block ul {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.info-block ul li::before {
  content: "•";
  color: var(--amber-500);
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 1px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--sage-900);
  padding: 50px 0;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-strip p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-sans);
  background: var(--amber-400);
  color: var(--sage-900);
}

.cta-strip .btn:hover {
  background: var(--amber-300);
  transform: translateY(-1px);
}

/* ===== RELATED PRODUCTS ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.related-card {
  display: block;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
  background: var(--white);
}

.related-card:hover {
  border-color: var(--amber-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.related-card h3 {
  font-size: 0.9rem;
  color: var(--sage-900);
  margin-bottom: 4px;
}

.related-card p {
  font-size: 0.76rem;
  color: var(--gray-400);
}

/* ===== INNER FOOTER ===== */
.inner-footer {
  background: var(--sage-900);
  padding: 40px 0 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.fc-block h4 {
  color: var(--amber-300);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.fc-block p, .fc-block address {
  font-size: 0.85rem;
  line-height: 1.6;
  font-style: normal;
}

.fc-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fc-block a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

/* ===== LOCATION PAGE ===== */
.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  aspect-ratio: 4/3;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--sage-900);
  margin-bottom: 8px;
  margin-top: 20px;
}

.location-info h3:first-child {
  margin-top: 0;
}

.location-info p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .inner-nav-links {
    gap: 12px;
  }

  .inner-nav-links a:not(.nav-cta-btn) {
    display: none;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 60px 0;
  background: var(--sage-50);
}

.faq-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sage-900);
  margin-bottom: 28px;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage-900);
  text-align: left;
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--amber-700);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--sage-400);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 0 16px;
  font-size: 0.9rem;
  color: var(--sage-500);
  line-height: 1.7;
}
