@import url('https://fonts.googleapis.com/css2?family=Radio+Canada:ital,wght@0,300..700;1,300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  font-size: 16px;

  --background-primary:      #FAFAFA;
  --background-secondary:    #FFFFFF;
  --background-alert-error:  #FEF3F2;

  --border-primary:   #EAEAEB;
  --border-secondary: #E0E0E1;
  --border-tertiary:  #C7C7C9;

  --brand-green:       #007847;
  --brand-green-light: #2ABF71;

  --text-primary:        #0A0A0A;
  --text-secondary:      #444444;
  --text-tertiary:       #888888;
  --text-disable:        #AAAAAA;
  --text-alert-success:  #079455;
  --alert-error:         #D92D20;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

* {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--text-primary);
}

::placeholder {
  color: var(--text-disable);
}

button {
  appearance: none;
  -webkit-appearance: none;
}

table {
  border: 0;
  border-collapse: collapse;
}

details > summary { list-style: none; }
details > summary::marker { content: ""; }
details > summary::-webkit-details-marker { display: none; }


/* ============================================================
   3. BUTTONS
   ============================================================ */

.btn {
  background-color: #FFFFFF;
  padding: 18px 16px;
  width: 100%;
  color: var(--text-primary);
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: 500;
  border: 1px solid #EAEAEB;
  border-radius: 12px;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background-color: var(--brand-green);
  color: #FFFFFF;
}

.btn.secondary {
  color: var(--brand-green);
}


/* ============================================================
   4. FORM INPUTS
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="password"] {
  background-color: rgba(245, 245, 245, 0.002);
  padding: 12px;
  width: 100%;
  font-size: 0.875rem;
  line-height: 22px;
  border: 1px solid #E0E0E1;
  border-radius: 12px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  box-shadow: 0px 0px 0px 3px rgba(14, 14, 14, 0.04);
  outline: 0;
}

input[type="text"] + button.delete,
input[type="email"] + button.delete,
input[type="password"] + button.delete {
  display: none;
}

input[type="text"]:focus + button.delete,
input[type="email"]:focus + button.delete,
input[type="password"]:focus + button.delete,
button.delete:hover {
  display: block !important;
}

input[type="text"]:focus ~ .error-icon,
input[type="email"]:focus ~ .error-icon,
input[type="password"]:focus ~ .error-icon {
  display: none;
}

.input-label {
  position: relative;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 6px;
}

.input-label input {
  padding-right: 45px;
  color: var(--text-primary);
}

.input-label button,
.input-label .error-icon,
.input-label .icon {
  background-color: transparent;
  position: absolute;
  bottom: 13px;
  right: 15px;
  appearance: none;
  border: 0;
  cursor: pointer;
}

.input-label button { z-index: 2; }

.input-label .error-icon { display: none; }

.input-label svg { display: block; }

.input-label.error { color: var(--alert-error); }

.input-label.error .error-icon { display: block; }

.input-label[aria-disabled="true"] {
  opacity: 0.3;
  pointer-events: none;
}


/* ============================================================
   5. HEADER
   ============================================================ */

.header {
  background-color: var(--background-secondary);
  position: sticky;
  top: 0;
  margin: 0 auto;
  padding: 24px 20px;
  width: 100%;
  z-index: 10;
}

.header .content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header .logo {
  height: 32px;
  display: block;
}

/* ── Desktop nav ── */
.header .navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header .navigation ul .separator {
  background-color: var(--border-primary);
  width: 1px;
  height: 24px;
}

.header .navigation ul li a {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

/* ── Mobile nav panel ── */
.header .navigation-mobile {
  background-color: var(--background-secondary);
  position: absolute;
  gap: 10px;
  padding: 24px;
  bottom: 5px;
  left: 0;
  transform: translateY(100%);
  width: 100%;
  z-index: 10;
  display: none;
}

.header .navigation-mobile .btn {
  padding: 12px;
  font-size: 1rem;
  line-height: 24px;
}

.header .navigation-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;                 
}

/* Every nav link row */
.header .navigation-mobile a:not(.btn) {
  color: var(--text-primary);
  font-size: 0.85rem;
  line-height: 1.0;
  font-weight: 450;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;         /* consistent row height for ALL items */
  width: 100%;
}

/* Left-side content (icon + label) */
.header .navigation-mobile a:not(.btn) > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dividers */
.header .navigation-mobile hr {
  height: 0.5px;
  background-color: rgb(173, 173, 173);
  border: none;
  margin: 0;
}

/* ── Mobile currency item ── */
.mobile-currency-item {
  position: relative;
}

/* The trigger row — uses the same <a> padding as all other rows */
.mobile-currency-trigger {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 450;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  width: 100%;
  cursor: pointer;
}

.mobile-currency-trigger-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-currency-trigger-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  flex-shrink: 0;
}

.mobile-currency-chevron {
  transition: transform 0.2s ease;
}

/* Dropdown panel */
.mobile-currency-dropdown {
  display: none;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.mobile-currency-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
}

.mobile-currency-option.selected { background: #f0f0f0; }

.mobile-currency-option-flag { font-size: 18px; }

.mobile-currency-option-desc {
  color: #888;
  font-weight: 400;
  font-size: 13px;
}

/* ── Header controls (right side) ── */
.header .header-controls {
  display: flex;
  gap: 10px;
  align-items: center;

}

.header .header-controls .search,
.header .header-controls .menu {
  background-color: var(--background-secondary);
  border: 1px solid var(--border-primary);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.header .header-controls .menu { margin-left: 0; }

.header .header-controls .menu,
.header.open .header-controls .open-icon,
.header.open .header-controls .search,
.header .header-controls .close-icon {
  display: none;
}

.header.open .header-controls .close-icon {
     display: block;
    
    }

.header .header-controls .btn {
  padding: 10px 8px;
  width: 65px;
  font-size: 0.875rem;
  line-height: 22px;
  flex-shrink: 0;
}

.header .header-controls .cart {
  position: relative;
  background-color: transparent;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.header .header-controls .cart .cart-items-counter {
  background-color: var(--text-primary);
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  color: #FBFBFC;
  font-size: 0.65rem;       /* slightly bigger for readability */
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  transform: translate(50%, -50%); /* center on top-right corner */
  padding: 0;                /* remove padding — flex centering handles it */
  line-height: 1;            /* ensures vertical alignment */
}

.header .header-controls .user {
  background-color: #000000;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 24px;
}

/* ── Desktop currency button ── */
.currency-btn-wrapper {
  position: relative;
  display: inline-block;
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  font-family: 'Raleway', sans-serif;
}

.currency-chevron { transition: transform 0.2s ease; }

.currency-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-width: 200px;
  z-index: 999;
}

.currency-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
}

.currency-option.selected { background: #f5f5f5; }
.currency-option-flag { font-size: 18px; }
.currency-option-desc { color: #888; font-weight: 400; font-size: 13px; }

/* ── Mobile overlay ── */
.mobile-menu-layer {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;

}

.header + .mobile-menu-layer { display: none; }

.header.open .navigation-mobile,
.header.open + .mobile-menu-layer { display: block; }

/* ── Inline menu utility ── */
.inline-menu li {
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
  list-style: none;
}

.inline-menu img {
  height: 16px;
  vertical-align: middle;
}


/* ============================================================
   6. FOOTER
   ============================================================ */

.footer {
  margin: auto;
  width: 100%;
  max-width: 1440px;
  padding: 80px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
}

.footer .footer-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  gap: 20px;
}

.footer .footer-content .footer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 416px;
}

.footer .footer-content .footer-info .footer-social-media {
  display: flex;
  gap: 12px;
}

.footer .footer-content .footer-menu,
.footer .footer-content .footer-menu nav {
  display: flex;
  gap: 80px;
}

.footer .footer-content .footer-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .footer-content .footer-menu ul li { color: var(--text-tertiary); }

.footer .footer-content .footer-menu ul li a {
  color: var(--text-primary);
  text-decoration: none;
}

.footer .footer-content .footer-menu ul li a:hover { text-decoration: underline; }

.footer .footer-content .footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .footer-content .footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 4px;
}

.footer .footer-content .footer-newsletter form .btn {
  padding: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.footer .footer-copyright {
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-tertiary);
  text-align: center;
}


/* ============================================================
   7. SEARCH POPUP
   ============================================================ */

.search-display {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.search-display.active { display: flex; }

.search-container {
  background: #fff;
  width: 90%;
  max-width: 720px;
  height: 70vh;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.search-bar {
  display: flex;
  gap: 12px;
}

.search-input {
  flex: 1;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.search-submit {
  padding: 14px 22px;
  border-radius: 10px;
  border: none;
  background: var(--brand-green);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.search-submit:hover { opacity: 0.9; }

.search-suggestions {
  margin-top: 16px;
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
}

.search-suggestions::-webkit-scrollbar { width: 6px; }
.search-suggestions::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.recent-title,
.suggestion-title {
  margin-top: 24px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

.recent-search-list,
.suggestion-list {
  padding: 0;
  margin: 0;
}

.recent-search-list li,
.suggestion-list li {
  list-style: none;
  padding: clamp(12px, 2.5vh, 16px) 0;
}

.recent-search-list li a,
.suggestion-list li a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  padding: 0 6px;
}

.suggestion-list hr {
  border: none;
  height: 1px;
  background-color: #adadad;
  margin: 0;
}

.close-serch {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.close-serch:hover { color: #000; }

body.search-open { overflow: hidden; }


/* ============================================================
   8. HERO
   ============================================================ */

.hero {
  background-color: var(--background-secondary);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero .hero-wrapper {
  position: relative;
  background-image: url('/static/assets/images/hero2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin: 0 auto;
  padding: 180px 120px 40px 120px;
  width: 100%;
  max-width: 1200px;
  height: 800px;
  border-radius: 40px;
  overflow: hidden;
}

.hero .hero-layer {
  background: linear-gradient(rgba(10,10,10,0) 0%, rgba(10,10,10,0.4) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  z-index: 0;
}

.hero .hero-content {
  position: relative;
  height: 90%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.hero .text-container {
  margin: 0 auto;
  width: 100%;
  max-width: 630px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .text-container .title {
  font-size: 56px;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: -1px;
}

.hero .text-container .description {
  margin: 0 auto;
  max-width: 513px;
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: 400;
}

.hero .hero-search-form {
  background-color: var(--background-secondary);
  padding: 16px;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  gap: 8px;
}

.hero .hero-search-form label { display: flex; gap: 8px; }

.hero .hero-search-form label input {
  padding-top: 5px;
  border: 0;
  font-size: 1rem;
}

.hero .hero-search-form label input::placeholder { color: var(--text-tertiary); }

.hero .hero-search-form .separator {
  background-color: var(--border-primary);
  width: 1px;
}

.hero .hero-search-form button {
  width: 128px;
  height: 58px;
}


/* ============================================================
   9. SECTION (shared layout wrapper)
   ============================================================ */

.section {
  padding: 80px 20px;
}

.section .section-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section .section-title {
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.section .section-title-description-block {
  max-width: 594px;
  margin: 0 auto;
  text-align: center;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.section .section-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 26px;
}

.section .section-actions {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.section .section-tags {
  display: flex;
  gap: 12px;
}

.section .section-tag {
  padding: 12px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 400;
  border: 1px solid var(--border-secondary);
  border-radius: 12px;
}

.section .section-filters { display: flex; gap: 12px; }

.section .section-btn {
  background-color: transparent;
  position: relative;
  padding: 12px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 400;
  border: 1px solid var(--border-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.section .filter-btn {
  min-width: 150px;
  justify-content: space-between;
}

.section .filter-btn .filter-options {
  position: absolute;
  left: 0;
  bottom: -6px;
  transform: translateY(100%);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: var(--background-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

.section .filter-btn .filter-options .filter-option {
  padding: 8px 12px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.section .filter-btn .filter-options .filter-option:hover {
  background-color: var(--background-primary);
}

.section .filter-btn.open {
  box-shadow: 0px 0px 0px 3px rgba(14, 14, 14, 0.04);
  outline: 0;
}

.section .filter-btn.open .btn-icon { transform: rotate(180deg); }
.section .filter-btn.open .filter-options { display: block; }

.section-tags + .filter-btn { display: none; }

.section .section-pagination {
  align-self: center;
  display: flex;
  gap: 8px;
}

.section .section-pagination .pagination-btn {
  background-color: var(--background-secondary);
  padding: 8px 10px;
  min-width: 36px;
  height: 36px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
}

.section .section-pagination .pagination-btn.current {
  background-color: #2C2C2C;
  color: #F5F5F5;
}

.section .section-pagination .pagination-btn.border {
  font-size: 0.875rem;
  border: 1px solid var(--border-primary);
}


/* ============================================================
   10. PRODUCTS
   ============================================================ */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  column-gap: 20px;
  row-gap: 32px;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product .product-image {
  background-size: cover;
  background-position: center;
  width: 100%;
  max-height: 224px;
  aspect-ratio: 1;
  border-radius: 16px;
}

.product .product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product .product-info .product-title {
  color: #000000;
  font-size: 1rem;
  line-height: 1.4em;
  letter-spacing: 0.65px;
  font-weight: 600;
}

.product .product-info .product-description {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product .product-info .product-price-tag {
  display: flex;
  align-items: end;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 1rem;
  font-weight: 300;
}

.product .product-info .product-price {
  color: #000000;
  font-size: 0.8rem;
  line-height: 1.2em;
  font-weight: 600;
}

.from-product { font-size: 1rem; }

.card-article-link {
  color: var(--brand-green);
  text-decoration: none;
  align-items: center;
}

#second-child {
  background-color: var(--brand-green);
  color: var(--background-primary);
}




/* ============================================================
   13. FAQ
   ============================================================ */

.faq .section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 80px;
}

.faq .faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 24px 0 12px 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item:last-of-type { border-bottom: 0; }

.faq-item .faq-item-title {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 500;
}

.faq-item .faq-item-content {
  padding-bottom: 12px;
  font-size: 1.125rem;
  line-height: 26px;
  color: #525252;
}

.faq-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.faq-form input,
.faq-form textarea {
  margin-top: 6px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border-primary);
  font-size: 1rem;
}



/* ============================================================
   15. DESTINATIONS
   ============================================================ */

.destinations-section { padding: 80px 20px; }

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

.destinations-header { margin-bottom: 32px; }

.destinations-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.destination-card { cursor: pointer; }

.destination-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-image { transform: scale(1.03); }

.destination-name {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}


/* ============================================================
   16. TRENDING
   ============================================================ */

.trending-section { padding: 80px 20px; }

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

.trending-header { margin-bottom: 24px; }

.trending-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.trending-wrapper { position: relative; }

.trending-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.trending-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.trending-card:hover { transform: translateY(-4px); }

.trending-image {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.trending-info { padding: 14px; }

.trending-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.trending-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}


/* ============================================================
   17. DISCOVER / ADMIN TRAVEL PAGE
   ============================================================ */

.travel-page { padding: 30px 20px; }

.travel-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.travel-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.travel-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.travel-search-wrap svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  pointer-events: none;
  width: 15px;
  height: 15px;
}

.travel-search {
  width: 100%;
  padding: 9px 12px 9px 34px;
  border: 1px solid var(--border-secondary);
  border-radius: 10px;
  background: var(--background-secondary);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.travel-search:focus { border-color: #6366f1; }

.travel-status-toggle {
  display: flex;
  gap: 6px;
  background: var(--background-secondary);
  border: 1px solid var(--border-secondary);
  border-radius: 10px;
  padding: 4px;
}

.travel-toggle-btn {
  padding: 6px 14px;
  border: none;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.18s ease;
  white-space: nowrap;
}

.travel-toggle-btn.selected {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.travel-toggle-btn.selected.filter-active { background: #dcfce7; color: #166534; }
.travel-toggle-btn.selected.filter-inactive { background: #fee2e2; color: #991b1b; }

.travel-results-count {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.travel-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 15px;
}

.travel-tags { display: flex; gap: 12px; }

.travel-tag {
  padding: 10px 14px;
  font-size: 0.875rem;
  border: 1px solid var(--border-secondary);
  border-radius: 12px;
  white-space: nowrap;
}

.travel-filters { display: flex; gap: 12px; }

.travel-dropdown { position: relative; }

.travel-dropdown-btn {
  padding: 12px 14px;
  min-width: 160px;
  border: 1px solid var(--border-secondary);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.travel-dropdown-btn svg { transition: transform 0.2s ease; }
.travel-dropdown.open .travel-dropdown-btn svg { transform: rotate(180deg); }

.travel-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: var(--background-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  list-style: none;
  padding: 4px 0;
  z-index: 10;
}

.travel-dropdown.open .travel-dropdown-menu { display: block; }

.travel-dropdown-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.875rem;
}

.travel-dropdown-item:hover { background: var(--background-primary); }

.travel-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
  gap: 18px;
}

.travel-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.travel-product {
  background: var(--background-secondary);
  border-radius: 13px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-secondary);
}

.travel-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.travel-product.hidden { display: none; }

.travel-product-image {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: #e5e7eb;
}

.travel-product-info { padding: 12px; }

.travel-product-title {
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 3px;
  line-height: 1.3;
}

.travel-procut-description {
  font-size: 0.7rem;
  opacity: 0.65;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.travel-product-price {
  margin-top: 6px;
  font-weight: 700;
  font-size: 0.88rem;
}

.travel-product-meta {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-secondary);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.travel-meta-row { display: flex; align-items: center; gap: 5px; }

.travel-meta-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.58rem;
  color: var(--text-tertiary);
  min-width: 52px;
  flex-shrink: 0;
}

.travel-meta-value { color: var(--text-secondary); font-size: 0.65rem; }

.travel-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 6px 1px 4px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.travel-status-badge::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.travel-status-badge.status-active { background: #dcfce7; color: #166534; }
.travel-status-badge.status-active::before { background: #22c55e; }
.travel-status-badge.status-inactive { background: #fee2e2; color: #991b1b; }
.travel-status-badge.status-inactive::before { background: #ef4444; }

.travel-pagination { display: flex; justify-content: center; gap: 8px; }

.travel-page-btn {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-primary);
  background: var(--background-secondary);
  cursor: pointer;
}

.travel-page-btn.active { background: #2c2c2c; color: #fff; }


/* ============================================================
   18. CHECKOUT
   ============================================================ */

.checkout-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.checkout-info-item-remove,
.editbooking {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px;
  border-radius: 8px;
  cursor: pointer;
  background: white;
}

.checkout-info-item-remove svg,
.editbooking svg {
  width: 16px;
  height: 16px;
}

.section-checkout .section-content-checkout {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: inherit;
  gap: 40px;
}

@media (max-width: 900px) {
  .section-checkout .section-content-checkout {
    flex-direction: column;
  }
}

/* Checkout uses a 2-col layout — override the generic .section-content */
.checkout .section-content {
  max-width: 1208px;
  display: grid;
  grid-template-columns: minmax(0, 734px) minmax(0, 442px);
  gap: 32px;
  align-items: start;
}

.checkout-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-title-closed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: -0.02em;
}

.open .checkout-title-closed { display: none; }

.checkout-title-closed.pending { color: var(--text-disable); }

.checkout-content,
.checkout-title-closed {
  padding: 20px;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
}

.checkout-content { display: none; }

.open .checkout-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checkout-content .btn {
  margin-left: auto;
  padding: 11px 20px;
  width: auto;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 500;
}

.checkout-content-title-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-content-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: -0.02em;
}

.checkout-content-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 26px;
}

.checkout-info {
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  overflow: hidden;
}

.checkout-info .checkout-info-header {
  background-color: var(--background-alert-error);
  padding: 12px 20px;
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.checkout-info .checkout-info-header svg { flex-shrink: 0; }

.checkout-info .checkout-info-header .countdown {
  color: var(--text-primary);
  font-weight: 600;
}

.checkout-info .checkout-info-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-info-content,
.checkout-info-items,
.checkout-info-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-info-item-details { display: flex; gap: 16px; }

.checkout-info-item-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 104px;
  height: 104px;
  border-radius: 8px;
  flex-shrink: 0;
}

.checkout-info-item-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.checkout-info-item-name-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-info-item-name {
  font-size: 1.25rem;
  line-height: 1.4em;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #000000;
}

.checkout-info-item-description-content {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-info-item-rating {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #000000;
  font-size: 0.875rem;
}

.checkout-info-item-rating-counter { color: var(--text-tertiary); }

.checkout-info-item-specs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-info-item-specs {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: 400;
  display: flex;
  gap: 8px;
  align-items: center;
}

.separator {
  width: 100%;
  border-bottom: 1px solid var(--border-primary);
}

.checkout-info-price-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-info-price-details-title {
  color: #09080D;
  font-size: 1rem;
  font-weight: 600;
}

.checkout-info-price-details-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-info-price-details-summary-total {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.checkout-info-price-details-summary-item {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 400;
}

.checkout-info-order-info {
  display: flex;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 22px;
  font-weight: 400;
}

.checkout-info-order-info u {
  color: var(--text-primary);
  text-decoration: underline;
  font-weight: 600;
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.checkout-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.checkout-payments-method {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-payment-method {
  padding: 16px;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-payment-label {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.checkout-payment-type {
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
}

.checkout-payment-type input[type="radio"] { display: none; }

.checkout-payment-type input[type="radio"] + span {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-tertiary);
  border-radius: 50%;
}

.checkout-payment-type input[type="radio"]:checked + span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: var(--brand-green-light);
  overflow: hidden;
}

.checkout-payment-type input[type="radio"]:checked + span::before {
  content: '';
  background-color: var(--brand-green-light);
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.checkout-payment-type-form { display: none; }

.checkout-payment-label:has(input:checked) + .checkout-payment-type-form { display: block; }

.checkout-payment-type-form { padding: 16px 0 16px 40px; }

.checkout-terms {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 1rem;
  line-height: 24px;
}

.checkout-terms a { color: var(--text-primary); }

.checkout-terms .btn {
  padding: 16px 20px;
  width: 100%;
  font-size: 1.125rem;
}

.checkout-info-promo-code-field .input-label.error .custom-icon { display: none; }
.checkout-info-promo-code-field .input-label.error .error-icon { display: block !important; }


/* ============================================================
   19. MODALS
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.active { display: flex; }

.modal {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.modal h3 { margin-bottom: 16px; }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}


/* ============================================================
   20. FLASH MESSAGES
   ============================================================ */

.flash-messages { margin: 15px 0; }

.flash {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}

.flash.success { background: #E6F4EA; color: #1B7A32; }
.flash.error   { background: #FDE8E8; color: #B42318; }
.flash.warning { background: #FFF4D6; color: #9A6B00; }
.flash.info    { background: #E7F1FF; color: #0B65C2; }


/* ============================================================
   21. COOKIE POLICY
   ============================================================ */

.cookie-policy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-text p {
  margin: 0;
  line-height: 1.5;
  padding-bottom: 15px;
}

.answers {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}

.cookie-button {
  padding: 10px 20px;
  font-size: 8px;
  background-color: #2ABF71;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-button:hover { background-color: #2980b9; }

.cookie-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}


/* ============================================================
   22. RESPONSIVE — TABLET  (max-width: 1000px)
   ============================================================ */

@media (max-width: 1000px) {
  .header { padding: 12px 20px; }

  .header .navigation ul li:not(:first-of-type) { display: none; }

  .header .header-controls { gap: clamp(0px, 2vw, 24px); }

  .header .header-controls > *:not(.search, .cart) { display: none !important; }

  .header .header-controls .menu { display: flex !important; }

  .product .product-info .product-title { font-size: 16px; }

  .footer {
    padding: 32px 20px 16px 20px;
    font-size: 0.875rem;
    line-height: 22px;
  }

  .footer .footer-content { flex-direction: column; gap: 24px; }

  .footer .footer-content .footer-menu nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer .footer-content .footer-menu { flex-wrap: wrap; gap: 20px; }

  .footer .footer-content .footer-menu ul { gap: 12px; }

  .footer .footer-content .footer-newsletter { width: 100%; }

  .cards-info { gap: 20px; }
}


/* ============================================================
   23. RESPONSIVE — MOBILE  (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {

  /* Hero */
  .hero { padding: 0; }

  .hero .hero-wrapper {
    background-position: center 30%;
    padding: 100px 20px;
    height: 90vh;
    border-radius: 0;
  }

  .hero .text-container .title { font-size: 30px; }

  .hero .hero-search-form {
    flex-direction: column;
    border: 1px solid var(--border-primary);
  }

  .hero .hero-search-form .separator { width: 100%; height: 1px; }

  .hero .hero-search-form button { width: 100%; height: 48px; }

  /* Section */
  .section { padding: 40px 20px; }

  .section .section-pagination .pagination-btn:not(.border):nth-last-child(-n+3) { display: none; }

  .section .section-actions { gap: 8px; }

  .section .filter-btn { min-width: 0; width: 150px; }

  .section .section-tags { display: none; }

  .section-tags + .filter-btn { display: flex; }

  /* Cards */
  .cards-info .card-info {
    text-align: center;
    align-items: center;
    border: solid 1px var(--brand-green);
    margin-top: 20px;
    gap: 20px;
  }

  .cards-article { gap: 20px; }

  .card-details { padding: 0; background: none; }

  /* FAQ */
  .faq .section-content { grid-template-columns: 1fr; gap: 40px; }

  /* CTA */
  .cta .cta-content { background-size: 120%; padding: 80px 32px; gap: 32px; }

  /* Trending */
  .trending-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .trending-card {
    min-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .trending-scroll-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: rgba(0,0,0,0.5);
    background: linear-gradient(to left, #fff, transparent);
    padding: 0 10px;
    pointer-events: none;
  }

  /* Discover */
  .travel-tags { display: none; }
  .travel-dropdown-btn { min-width: auto; }
  .travel-page { padding: 10px 20px; }
  .travel-toolbar { flex-direction: column; align-items: stretch; }
  .travel-search-wrap { min-width: unset; }

  /* Checkout */
  .checkout .section-content { gap: 16px; grid-template-columns: auto; }
  .checkout-info { order: 1; }
  .checkout-steps { order: 2; }
  .checkout-content, .checkout-title-closed { padding: 16px; }
  .checkout-content-title { font-size: 1.125rem; }
  .checkout-content-description { font-size: 1rem; line-height: 24px; }
  .open .checkout-content { gap: 24px; }
  .checkout-fields, .checkout-fieldset { gap: 16px; }
  .checkout-step-1 .checkout-fieldset { grid-template-columns: auto; }
  .checkout-info .checkout-info-header { font-size: 0.875rem; }
  .checkout-info-item-description-content { font-size: 0.875rem; }
  .checkout-info-item-specs { font-size: 1rem; }
  .checkout-info-price-details-title { font-size: 0.875rem; }
  .checkout-info-price-details-summary-item { font-size: 1rem; }
  .checkout-info-price-details-summary-total { font-size: 1.125rem; }

  /* Search */
  .search-container { width: 98%; height: 80vh; }

  /* Cookie */
  .cookie-policy-container { padding: 0 15px; }
  .answers { flex-direction: column; gap: 5px; }
  .cookie-text p { margin-bottom: 15px; }
}


/* ============================================================
   24. DARK MODE — travel status badges
   ============================================================ */

@media (prefers-color-scheme: dark) {
  .travel-status-badge.status-active { background: rgba(34, 197, 94, 0.15); color: #86efac; }
  .travel-status-badge.status-active::before { background: #22c55e; }
  .travel-status-badge.status-inactive { background: rgba(239, 68, 68, 0.15); color: #fca5a5; }
  .travel-status-badge.status-inactive::before { background: #ef4444; }
  .travel-product-meta { border-top-color: rgba(255, 255, 255, 0.08); }
  .travel-search { color: inherit; }
  .travel-toggle-btn.selected { background: rgba(255,255,255,0.1); color: #fff; }
}

 

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50%       { opacity: 1;   transform: scaleY(1.15); }
    }

    /* ── MISSION STRIP ── */
    .mission-strip {
      background: var(--brand-green);
      padding: 36px 40px;
    }

    .mission-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .mission-inner p {
  
      font-size: clamp(1.1rem, 2.2vw, 1.55rem);
      font-style: italic;
      color: #fff;
      line-height: 1.5;
    }

    .mission-inner p strong {
      color: #fff;
      font-style: normal;
      font-weight: 800;
    }

    .mission-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.18);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    }

    /* ── SECTION SHARED ── */
    .about-section {
      padding: 100px 40px;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--brand-green);
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--text-primary);
      margin-bottom: 20px;
    }

    .section-title em {
      font-style: italic;
      color: var(--brand-green);
    }

    .section-body {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.8;
      max-width: 600px;
    }

   

    /* ── VALUES ── */
    .values-section {
      background: #fff;
    }

    .values-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .value-card {
      background: var(--background-primary);
      border: 1px solid var(--border-primary);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--brand-green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .value-card:hover::before {
      transform: scaleX(1);
    }

    .value-icon {
      font-size: 2rem;
      margin-bottom: 18px;
      display: block;
    }

    .value-card h4 {
      font-size: 1.25rem;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .value-card p {
      font-size: 0.9rem;
      line-height: 1.72;
      color: var(--text-secondary);
    }

  
   

    /* ── CTA ── */
    .cta-section {
      background: var(--brand-green);
      padding: 100px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.12) 0%, transparent 55%);
    }

    .cta-inner {
      position: relative;
      max-width: 680px;
      margin: 0 auto;
    }

    .cta-section h3 {
     
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 500;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .cta-section h2 em {
      font-style: italic;
    }

    .cta-section p {
    color: #fff;
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta-primary {
      background: #fff;
      color: var(--brand-green);
      padding: 16px 36px;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    }

    .btn-cta-outline {
      background: transparent;
      color: #fff;
      padding: 16px 36px;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      border: 2px solid rgba(255,255,255,0.5);
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-cta-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.8);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .story-grid { grid-template-columns: 1fr; gap: 48px; }
      .story-badge { right: 12px; bottom: -16px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .values-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    }

    @media (max-width: 600px) {
      .about-section { padding: 70px 20px; }
      .services-section { padding: 70px 20px; }

      .about-hero-content { padding: 0 20px 60px; }
      .mission-strip { padding: 28px 20px; }
      .cta-section { padding: 70px 20px; }
      .values-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .hero-scroll-hint { display: none; }
    }




/* ============================================================
   Checkout form
============================================================ */

#next-button:disabled,
#pay-button:disabled {
  background-color: #E0E0E0;
  color: #9E9E9E;
  cursor: not-allowed;
  opacity: 0.6;
  border-color: #D0D0D0;
  pointer-events: none;
}

