/* Shared navbar + footer styles (from managed) */
:root {
  --color-dark-green: #4A6117;
  --color-cream-bg: #f9f9f4;
}

/* --- Layout --- */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 24px;
  }
}



/* --- Navigation --- */
.navbar {
  background-color: #fff;
  height: 76px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo svg {
  width: 240px;
  height: auto;
}

@media (max-width: 393px) {
  .logo svg {
    width: 170px;
    height: auto;
  }
}

.bag-icon {
  display: inline-block;
  width: 16px;
  height: 12px;
  background: #000;
  border-radius: 2px;
  position: relative;
  margin: 0 1px;
  top: 2px;
}

.bag-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 4px;
  background: var(--color-dark-green);
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-left: 0;
}


.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}


.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 76px;
  position: relative;
  white-space: nowrap;
}


.nav-link:hover {
  color: #000;
}

.nav-link.active {
  font-weight: 600;
  color: #4f6f2f;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background-color: #4f6f2f;
}

.chevron {
  width: 14px;
  height: 14px;
  color: #666;
  transition: transform 0.2s ease;
}

.nav-item:hover .chevron,
.nav-item:focus-within .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  /* margin-top: 10px; */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  padding: 16px;
  min-width: 320px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 200;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- Mega Menu (Desktop) --- */
@media (min-width: 993px) {
  .navbar--index {
    height: 92px;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar--index .nav-wrapper {
    position: relative;
    gap: 0;
  }

  .navbar--index .nav-menu {
    gap: 12px;
    justify-content: center;
  }


  .navbar--index .nav-link {
    font-size: 14px;
    color: #1c1c1c;
    height: 92px;
  }

  .navbar--index .nav-link.active {
    color: #4f6f2f;
  }

  .navbar--index .nav-item:hover {
    background: transparent;
  }

  .navbar--index .nav-actions {
    gap: 30px;
  }

  .navbar--index .btn-nav {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 300;
  }

  .navbar--index .nav-item.has-dropdown {
    position: static;
  }

  .navbar--index .dropdown.mega-dropdown {
    left: 50%;
    top: 90px;
    transform: translate(-50%, 10px);
    width: min(1080px, calc(100vw - 80px));
    padding: 24px 24px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    /* Increase padding top slightly if needed or just remove border top gap */
  }

  .navbar--index .nav-item:hover .dropdown.mega-dropdown,
  .navbar--index .nav-item:focus-within .dropdown.mega-dropdown {
    transform: translate(-50%, 0);
  }

  .mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    gap: 0 24px;
    align-items: start;
  }

  .mega-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: start;
  }

  .mega-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 10px;
    border-radius: 10px;
    transition: background 0.2s ease;
    min-height: 68px;
    box-sizing: border-box;
  }

  .mega-item:hover,
  .mega-item:focus {
    background: #E8EC67;
  }

  .mega-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .mega-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #E8EC67;
    position: relative;
    flex-shrink: 0;
  }

  .mega-item:hover .mega-icon,
  .mega-item:focus .mega-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #3d5010;
    position: relative;
    flex-shrink: 0;
  }


  .mega-icon::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4f6f2f;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .mega-item:hover .mega-icon::after,
  .mega-item:focus .mega-icon::after {
    background: #E8EC67;
  }

  .mega-text {
    display: flex;
    flex-direction: column;
    gap: 3px;

  }

  .mega-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
  }

  .mega-subtitle {
    font-size: 11px;
    color: #6c6c6c;
    line-height: 1.4;
  }

  .mega-arrow svg {
    width: 20px !important;
    height: 20px;
    color: #4f6f2f;
    flex-shrink: 0;
  }

  .mega-card {
    border: 1px solid #d8d8d8;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: stretch;
    white-space: normal;
  }

  .mega-card-visual {
    flex: 1;
    min-height: 160px;
    border-radius: 10px;
    background: url("./assets/yellow-style.png") no-repeat center center/cover;
    background-color: #E8EC67;
  }

  .mega-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .mega-card-btn {
    display: block;
    text-align: center;
    background: #111;
    color: #fff !important;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
}

.dropdown-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 10px;
}

.dropdown-list {
  display: grid;
  gap: 8px 18px;
}

.dropdown-list.two-col {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.dropdown-list.one-col {
  grid-template-columns: 1fr;
}

.dropdown-list a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #222;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dropdown-list a:hover,
.dropdown-list a:focus {
  background: #f3f6ea;
  color: #111;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.login-link {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 6px 0;
  text-decoration: none;
}

.btn-nav {
  background-color: var(--color-dark-green);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-nav:hover {
  background-color: #3d5220;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #111;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  background-color: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
  z-index: 99;
}

.mobile-menu.open {
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-link {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #f1f1f1;
  border-left: 3px solid transparent;
  border-bottom: 1px solid #1d1d1d;
  background: transparent;
  width: 100%;
  text-align: left;
}

.mobile-link:hover,
.mobile-link.active {
  background-color: #1a1a1a;
  border-left-color: #4f6f2f;
  color: #fff;
}

.mobile-sublink {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  color: #f1f1f1;
  border-left: 3px solid transparent;
  border-bottom: 1px solid #1d1d1d;
}

.mobile-link,
.mobile-sublink,
.mobile-actions-wrapper .login-link {
  color: #f1f1f1 !important;
}

.mobile-sublink:hover,
.mobile-sublink.active {
  background-color: #1a1a1a;
  border-left-color: #4f6f2f;
  color: #fff;
}

.mobile-actions-wrapper {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn-nav.full-width {
  width: 100%;
  text-align: center;
}

.mobile-actions-wrapper .btn-nav {
  background-color: #4f6f2f;
}

.mobile-actions-wrapper .login-link {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #4f6f2f;
  color: #f1f1f1;
}

.mobile-panel {
  display: none;
  min-height: calc(80vh - 1px);
}

.mobile-panel.is-active {
  display: block;
}

.mobile-subheader {
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-bottom: 1px solid #e8e8e8;
  font-weight: 600;
}

.mobile-back {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #111;
}

.mobile-arrow {
  float: right;
  color: #fff;
}

.mobile-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
}

/* --- Footer --- */
.footer-section {
  background: var(--color-cream-bg);
  padding: 80px 0 60px;
  font-size: 16px;
  color: #121212;
}

.footer-section hr {
  border: none;
  border-top: 1px solid #E1E2E2;
  margin: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 30px;
}

.footer-brand {
  max-width: 320px;
}

.tagline {
  margin: 12px 0 20px;
  color: #121212;
  font-size: 20px;
  line-height: 1.2;
}

.contact-details p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #121212;
  line-height: 1;
}

.contact-details strong {
  color: #121212;
  display: block;
  margin-bottom: 2px;
}

.footer-socials {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: #121212;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  border-color: var(--color-dark-green);
  color: var(--color-dark-green);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 48px;
}

.footer-links-grid h4 {
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-grid ul li {
  margin-bottom: 10px;
}

.footer-links-grid a {
  color: #6b6767 !important;
  transition: 0.2s;
  font-size: 14.5px;
  font-weight: 500;
}

.footer-links-grid a:hover {
  color: var(--color-dark-green);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr minmax(360px, 420px);
  gap: 10px;
  align-items: center;
  padding: 24px 0;
}

.nl-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #121212;
  width: 202px;
}

.nl-text p {
  font-size: 14px;
  color: #121212;
  line-height: 1.6;
}

.nl-form {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nl-form input {
  padding: 1px 14px 1px 44px;
  border: 1px solid #E1E2E2;
  border-radius: 10px;
  width: 100%;
  height: 52px;
  font-size: 15px;
  background-color: #EEEFF1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>");
  background-repeat: no-repeat;
  background-position: 16px center;
}

.footer-section .btn-dark {
  background-color: #4A6117;
  color: #fff !important;
  padding: 0 32px;
  height: 52px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.footer-section .btn-dark:hover {
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  color: #121212;
  font-size: 13px;
  position: relative;
}

.badges {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.brand-logos {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-logos img {
  height: 41px;
  width: auto;
}

.ai-logo {
  display: none;
}

.year {
  display: flex;
  gap: 10px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  body {
    padding-top: 76px;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
    margin-bottom: 40px;
    order: 1;
    width: 100%;
  }

  .footer-links-grid ul {
    padding-left: 0;
    margin-left: 0;
  }

  .footer-links-grid h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .footer-links-grid ul li {
    margin-bottom: 15px;
  }

  .footer-links-grid a {
    font-size: 12.2px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    gap: 0;
    margin-bottom: 32px;
  }

  .footer-links-grid {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E1E2E2;
  }

  .footer-brand {
    order: 2;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .footer-brand .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-brand .logo svg {
    width: 240px;
    margin: 0 auto;
  }

  .tagline {
    font-size: 20px;
    margin: 12px 0 24px;
  }

  .contact-details p {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.4;
  }

  .footer-socials {
    justify-content: center;
    gap: 32px;
    margin: 32px 0 16px;
  }

  .footer-socials svg {
    width: 28px;
    height: 28px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
    text-align: left;
  }

  .nl-header h2 {
    font-size: 20px;
    font-weight: 700;
  }

  .nl-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #121212;
  }

  .nl-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .nl-form input {
    flex: 1;
    min-width: 0;
    height: 48px;
    margin-bottom: 0;
    font-size: 14px;
    padding: 0 12px 0 44px;
    background-color: #fff;
    border: 1px solid #E1E2E2;
    border-radius: 8px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 14px center;
    box-sizing: border-box;
    /* Explicit sizing */
  }

  .footer-section .btn-dark {
    width: auto;
    flex-shrink: 0;
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    border-radius: 8px;
    background-color: #4A6117;
    color: #fff !important;
    font-weight: 600;
    /* Made slightly bolder to match image */
    border: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* Explicit sizing */
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 0 20px 0;
  }

  .badges {
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .footer-bottom .brand-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 0px;
    width: 100%;
  }

  .footer-bottom .brand-logos img {
    height: auto;
    max-height: 28px;
    max-width: 15%;
    object-fit: contain;
  }

  .footer-bottom .year {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 4px;
    font-size: 11px;
    color: #666;
  }

  .desktop-only {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }




}

li {
  list-style: none !important;
}

ul {
  list-style: none !important;
}

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

/* ============================================
   Floating Chatbot (shared — all pages)
   ============================================ */
.floating-chatbot {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 64px;
  height: 64px;
  background-color: #e8ec67;
  border-radius: 32px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 64px 4px rgba(73, 96, 23, 0.25);
  z-index: 999;
  cursor: pointer;
  visibility: visible !important;
  opacity: 1 !important;
}

.floating-chatbot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.floating-chatbot .chatbot-fallback {
  font-size: 32px;
  display: none;
  align-items: center;
  justify-content: center;
}

.floating-chatbot:has(img[style*="display: none"]) .chatbot-fallback {
  display: flex;
}

/* ============================================
   Demo Modal
   ============================================ */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(2px);
  animation: demoFadeIn 0.2s ease;
}

@keyframes demoFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.demo-modal-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 40px 40px;
  width: 100%;
  max-width: 620px;      
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  animation: demoSlideUp 0.25s ease;
  max-height: 100vh;
  overflow-y: auto;
}

@keyframes demoSlideUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.demo-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b6b6b;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.demo-modal-close:hover {
  background: #f2f2f2;
  color: #121212;
}

.demo-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #121212;
  margin-bottom: 24px;
  line-height: 1.3;
}

.demo-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d9d9d9;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #121212;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-input::placeholder {
  color: #aaa;
}

.demo-input:focus {
  border-color: #4a6117;
  box-shadow: 0 0 0 3px rgba(74, 97, 23, 0.1);
}

.demo-input-full {
  width: 100%;
}

.demo-select-wrapper {
  position: relative;
  width: 100%;
}

.demo-select {
  width: 100%;
  padding: 13px 44px 13px 16px;
  border: 1.5px solid #d9d9d9;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #aaa;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-select:focus {
  border-color: #4a6117;
  box-shadow: 0 0 0 3px rgba(74, 97, 23, 0.1);
  color: #121212;
}

.demo-select option:not([disabled]) {
  color: #121212;
}

.demo-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: #6b6b6b;
  pointer-events: none;
}

.demo-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-top: 4px;
}

.demo-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #4a6117;
  cursor: pointer;
  border-radius: 4px;
}

.demo-consent-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: #444;
}

.demo-privacy-link {
  color: #4a6117;
  font-weight: 600;
  text-decoration: underline;
  font-style: italic;
}

.demo-privacy-link:hover {
  opacity: 0.8;
}

.demo-submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #4a6117;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  margin-top: 4px;
}

.demo-submit-btn:hover {
  background-color: #3b4e12;
}

.demo-submit-btn:active {
  transform: scale(0.99);
}
.year-text {
  display: flex;
  align-items: center;
  gap: 1px;
}
@media (max-width: 540px) {
  .demo-modal-box {
    padding: 28px 20px 30px;
  }

  .demo-form-row {
    grid-template-columns: 1fr;
  }

  .demo-modal-title {
    font-size: 17px;
    padding-right: 28px;
  }
}