/* ════════════════════════════════════════════════════════════════
   TGIT Comments & Reviews — Light parchment theme
   File: assets/css/comments.css
   Enqueue on: is_singular() + comments_open() OR have_comments()
════════════════════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  --tgit-gold: #d4961e;
  --tgit-gold-hover: #b87d18;
  --tgit-gold-bg: #fef9ee;
  --tgit-gold-light: rgba(212, 150, 30, 0.12);
  --tgit-ink: #1e1a14;
  --tgit-ink-soft: #4a3f32;
  --tgit-muted: #8a7b6d;
  --tgit-border: #e2d9ce;
  --tgit-parchment: #fbf8f3;
  --tgit-surface: #ffffff;
  --tgit-radius: 10px;
  --tgit-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --tgit-font-sans: "Noto Sans", Arial, sans-serif;
  --tgit-font-serif: "Noto Serif", Georgia, serif;
  --tgit-font-heading: var(--tgit-font-serif);
  --tgit-font-body: var(--tgit-font-serif);
}

button, a {
  font-family: var(--tgit-font-sans);
}

/* ── Section wrapper ──────────────────────────────────────────── */
.tgit-comments {
  padding-block: 3rem;
  max-width: 800px;
  margin-inline: auto;
}

/* ── Password locked ──────────────────────────────────────────── */
.tgit-comments--locked {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}

.tgit-comments__locked-card {
  text-align: center;
  max-width: 380px;
  padding: 2rem;
  border: 1px solid var(--tgit-border);
  border-radius: var(--tgit-radius);
  background: var(--tgit-surface);
}

.tgit-comments__locked-card .ti-lock {
  font-size: 2.5rem;
  color: var(--tgit-muted);
  margin-bottom: 0.75rem;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT REVIEWS — rating summary
════════════════════════════════════════════════════════════════ */
.tgit-review-summary {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background: var(--tgit-surface);
  border: 1px solid var(--tgit-border);
  border-radius: var(--tgit-radius);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--tgit-shadow);
}

@media (max-width: 560px) {
  .tgit-review-summary {
    flex-direction: column;
    gap: 1.25rem;
  }
}

/* Score block */
.tgit-review-summary__score {
  text-align: center;
  flex-shrink: 0;
}

.tgit-review-summary__num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--tgit-ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.tgit-review-summary__stars {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
  font-size: 1.1rem;
  color: var(--tgit-gold);
  margin: 0.35rem 0;
}

.tgit-review-summary__meta {
  font-size: 0.8125rem;
  color: var(--tgit-muted);
  white-space: nowrap;
}

/* Rating bars */
.tgit-review-summary__bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tgit-rb-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tgit-rb-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tgit-muted);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  justify-content: flex-end;
}

.tgit-rb-label .ti {
  font-size: 0.65rem;
  color: var(--tgit-gold);
}

.tgit-rb-track {
  flex: 1;
  height: 7px;
  background: #ede6dc;
  border-radius: 4px;
  overflow: hidden;
}

.tgit-rb-fill {
  height: 100%;
  background: var(--tgit-gold);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.tgit-rb-pct {
  font-size: 0.75rem;
  color: var(--tgit-muted);
  width: 28px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT REVIEW CARDS
════════════════════════════════════════════════════════════════ */
.tgit-review-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tgit-review-card {
  background: var(--tgit-surface);
  border: 1px solid var(--tgit-border);
  border-radius: var(--tgit-radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.tgit-review-card:hover {
  box-shadow: var(--tgit-shadow);
}

.tgit-review-card__hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.tgit-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tgit-review-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--tgit-gold-bg);
  color: var(--tgit-gold-hover);
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--tgit-gold-light);
  letter-spacing: 0.02em;
}

.tgit-review-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tgit-ink);
}

.tgit-review-card__meta {
  font-size: 0.8rem;
  color: var(--tgit-muted);
  margin-top: 0.1rem;
}

.tgit-review-card__date {
  font-size: 0.8rem;
  color: var(--tgit-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.tgit-review-card__stars {
  display: flex;
  gap: 0.1rem;
  font-size: 0.875rem;
  color: var(--tgit-gold);
  margin-bottom: 0.75rem;
}

.tgit-review-card__stars .ti-star {
  color: var(--tgit-border);
}

.tgit-review-card__body {
  font-size: 0.9375rem;
  color: var(--tgit-ink-soft);
  line-height: 1.75;
}

.tgit-review-card__body p {
  margin: 0;
}

.tgit-review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
}

.tgit-review-card__pending {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
}

/* ════════════════════════════════════════════════════════════════
   BLOG COMMENTS
════════════════════════════════════════════════════════════════ */
.tgit-comments__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--tgit-border);
}

.tgit-comments__heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--tgit-ink);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tgit-comments__count {
  background: var(--tgit-gold-bg);
  color: var(--tgit-gold-hover);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
}

.tgit-comments__none {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tgit-muted);
  font-size: 0.9rem;
  padding: 1.5rem;
  background: var(--tgit-parchment);
  border-radius: var(--tgit-radius);
  border: 1px solid var(--tgit-border);
}

/* Comment list */
.tgit-comment-list,
.tgit-comment-list ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tgit-comment-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 2rem;
}

.tgit-blog-comment__inner {
  background: var(--tgit-surface);
  border: 1px solid var(--tgit-border);
  border-radius: var(--tgit-radius);
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.2s;
}

.tgit-blog-comment__inner:hover {
  box-shadow: var(--tgit-shadow);
}

/* Nested replies */
.tgit-comment-list .children {
  padding-left: 2rem;
  border-left: 2px solid var(--tgit-border);
  margin: 0.5rem 0 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

@media (max-width: 480px) {
  .tgit-comment-list .children {
    padding-left: 1rem;
    margin-left: 0.75rem;
  }
}

/* Comment header */
.tgit-blog-comment__hdr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.tgit-blog-comment__avatar {
  flex-shrink: 0;
}

.tgit-blog-comment__gravatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  display: block;
}

.tgit-blog-comment__initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tgit-gold-bg);
  color: var(--tgit-gold-hover);
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--tgit-gold-light);
}

.tgit-blog-comment__meta {
  flex: 1;
}

.tgit-blog-comment__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tgit-ink);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tgit-blog-comment__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--tgit-gold-bg);
  color: var(--tgit-gold-hover);
  padding: 0.1rem 0.5rem;
  border-radius: 20px;
  border: 1px solid var(--tgit-gold-light);
}

.tgit-blog-comment__date {
  font-size: 0.8rem;
  color: var(--tgit-muted);
  display: block;
  margin-top: 0.1rem;
}

.tgit-blog-comment__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.tgit-blog-comment__reply a,
.tgit-blog-comment__edit a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tgit-muted);
  text-decoration: none;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  transition:
    color 0.15s,
    background 0.15s;
}

.tgit-blog-comment__reply a:hover {
  color: var(--tgit-gold);
  background: var(--tgit-gold-bg);
}

.tgit-blog-comment__edit a:hover {
  color: #2563eb;
  background: #eff6ff;
}

.tgit-blog-comment__body {
  font-size: 0.9375rem;
  color: var(--tgit-ink-soft);
  line-height: 1.75;
}

.tgit-blog-comment__body p {
  margin-bottom: 0.5em;
}

.tgit-blog-comment__body p:last-child {
  margin-bottom: 0;
}

.tgit-blog-comment__pending {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.75rem;
}

/* ════════════════════════════════════════════════════════════════
   PAGINATION
════════════════════════════════════════════════════════════════ */
.tgit-comments__pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.5rem 0 2rem;
}

.tgit-comments__pagination a,
.tgit-comments__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--tgit-border);
  color: var(--tgit-muted);
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}

.tgit-comments__pagination a:hover {
  background: var(--tgit-gold-bg);
  border-color: var(--tgit-gold);
  color: var(--tgit-gold);
}

.tgit-comments__pagination .current {
  background: var(--tgit-gold);
  border-color: var(--tgit-gold);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   COMMENT / REVIEW FORM
════════════════════════════════════════════════════════════════ */

/* Accordion toggle */
.tgit-cform-wrap {
  margin-top: 2.5rem;
}

.tgit-cform-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.875rem 1.25rem;
  background: var(--tgit-surface);
  border: 1.5px solid var(--tgit-border);
  border-radius: var(--tgit-radius);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tgit-ink);
  cursor: pointer;
  text-align: left;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.tgit-cform-toggle:hover,
.tgit-cform-toggle[aria-expanded="true"] {
  background: var(--tgit-gold-bg);
  border-color: var(--tgit-gold);
  color: var(--tgit-ink);
}

.tgit-cform-toggle .ti:first-child {
  color: var(--tgit-gold);
  font-size: 1.05rem;
}

.tgit-cform-toggle span {
  flex: 1;
}

.tgit-cform-chevron {
  color: var(--tgit-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

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

/* Form body */
.tgit-cform-body {
  margin-top: 0.75rem;
  background: var(--tgit-surface);
  border: 1px solid var(--tgit-border);
  border-radius: var(--tgit-radius);
  padding: 1.75rem;
  animation: tgit-slide-in 0.25s ease;
}

.tgit-cform-body[hidden] {
  display: none;
}

@keyframes tgit-slide-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

/* Fields */
.tgit-cform .tgit-cform__field,
.tgit-cform p.comment-form-comment,
.tgit-cform p.comment-form-author,
.tgit-cform p.comment-form-email {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.125rem;
}

.tgit-cform__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.tgit-cform label,
.tgit-cform .tgit-cform__field label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tgit-muted);
}

.tgit-cform__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
  opacity: 0.65;
}

.tgit-req {
  color: var(--tgit-gold);
}

.tgit-cform__input,
.tgit-cform__select,
.tgit-cform input[type="text"],
.tgit-cform input[type="email"] {
  background: var(--tgit-surface);
  border: 1px solid var(--tgit-border);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.9375rem;
  color: var(--tgit-ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}

.tgit-cform__textarea,
.tgit-cform textarea#comment {
  background: var(--tgit-surface);
  border: 1px solid var(--tgit-border);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.9375rem;
  color: var(--tgit-ink);
  resize: vertical;
  min-height: 110px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
  font-family: inherit;
}

.tgit-cform__input::placeholder,
.tgit-cform__textarea::placeholder,
.tgit-cform input::placeholder,
.tgit-cform textarea::placeholder {
  color: #b5a898;
}

.tgit-cform__input:focus,
.tgit-cform__textarea:focus,
.tgit-cform__select:focus,
.tgit-cform input:focus,
.tgit-cform textarea:focus {
  outline: none;
  border-color: var(--tgit-gold);
  box-shadow: 0 0 0 3px rgba(212, 150, 30, 0.12);
}

.tgit-cform__charcount {
  font-size: 0.75rem;
  color: var(--tgit-muted);
  text-align: right;
  display: block;
  margin-top: 0.2rem;
}

/* Star picker */
.tgit-cform__stars-field {
  margin-bottom: 1.25rem;
}

.tgit-star-picker {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.2rem;
  width: fit-content;
}

.tgit-star-picker label {
  font-size: 2rem;
  color: var(--tgit-border);
  cursor: pointer;
  line-height: 1;
  transition:
    color 0.15s,
    transform 0.15s;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.tgit-star-picker label:hover,
.tgit-star-picker label:hover ~ label {
  color: var(--tgit-gold);
  transform: scale(1.15);
}

.tgit-star-picker input:checked ~ label {
  color: var(--tgit-gold);
}

.tgit-star-picker input:checked + label {
  transform: scale(1.2);
}

.tgit-star-hint {
  font-size: 0.8rem;
  color: var(--tgit-gold);
  min-height: 1.2em;
  margin-top: 0.3rem;
}

/* Cookies checkbox */
.tgit-cform__cookies label {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--tgit-muted);
  cursor: pointer;
}

.tgit-cform__cookies input[type="checkbox"] {
  width: auto;
}

/* Logged-in note */
.tgit-cform__logged-in {
  font-size: 0.8125rem;
  color: var(--tgit-muted);
  margin-bottom: 1rem;
  background: var(--tgit-parchment);
  border: 1px solid var(--tgit-border);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
}

.tgit-cform__logged-in a {
  color: var(--tgit-gold);
}

.tgit-cform__login-msg {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--tgit-muted);
  font-size: 0.9rem;
  padding: 1rem;
  background: var(--tgit-parchment);
  border-radius: 6px;
  border: 1px solid var(--tgit-border);
}

.tgit-cform__login-msg a {
  color: var(--tgit-gold);
}

/* Footer note */
.tgit-cform__footer-note {
  font-size: 0.8rem;
  color: var(--tgit-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

/* Cancel reply */
.tgit-cform__cancel-wrap {
  margin-top: 0.5rem;
}

.tgit-cform__cancel-wrap a {
  font-size: 0.8125rem;
  color: var(--tgit-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit row */
.tgit-cform__submit-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--tgit-border);
}

/* Submit button */
.tgit-cform__submit,
#tgit-cform-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--tgit-gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  font-family: inherit;
}

.tgit-cform__submit:hover,
#tgit-cform-submit:hover {
  background: var(--tgit-gold-hover);
  transform: translateY(-1px);
}

.tgit-cform__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── Accessibility ──────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

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

        @media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
        }

        /* ScrollMagic FX — Explore by Intent */
        .tgit-experiences.scrollmagic-ready {
            position: relative;
            overflow: hidden
        }

        .tgit-experiences.scrollmagic-ready::before {
            content: "";
            position: absolute;
            width: clamp(220px, 30vw, 460px);
            aspect-ratio: 1;
            top: 50%;
            right: -12%;
            border: 1px solid rgba(200, 150, 42, .12);
            border-radius: 50%;
            opacity: var(--experiences-orbit-opacity, 0);
            transform: translate3d(0, var(--experiences-orbit-y, 40px), 0) scale(.85);
            transition: opacity .8s ease, transform .15s linear;
            pointer-events: none
        }

        .tgit-experiences.scrollmagic-ready .tgit-experiences__header {
            opacity: 0;
            transform: translateX(-36px);
            transition: opacity .7s ease, transform .8s cubic-bezier(.22, 1, .36, 1)
        }

        .tgit-experiences.scrollmagic-ready .tgit-experiences__header.is-visible {
            opacity: 1;
            transform: translateX(0)
        }

        .tgit-experiences.scrollmagic-ready .tgit-experiences__item {
            opacity: 0;
            transform: translateY(42px) scale(.94);
            transition: opacity .65s ease, transform .7s cubic-bezier(.22, 1, .36, 1), background-color .2s ease;
            transition-delay: var(--experience-delay, 0ms)
        }

        .tgit-experiences.scrollmagic-ready .tgit-experiences__item.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1)
        }

        .tgit-experiences.scrollmagic-ready .tgit-experiences__icon {
            transform: rotate(-8deg) scale(.86);
            transition: transform .65s cubic-bezier(.22, 1, .36, 1), background-color .2s ease
        }

        .tgit-experiences.scrollmagic-ready .tgit-experiences__item.is-visible .tgit-experiences__icon {
            transform: rotate(0) scale(1)
        }

        .tgit-experiences.scrollmagic-ready .tgit-experiences__item:hover {
            transform: translateY(-6px) scale(1.02)
        }

        @media (prefers-reduced-motion: reduce) {
            .tgit-experiences.scrollmagic-ready::before {
                display: none
            }

            .tgit-experiences.scrollmagic-ready .tgit-experiences__header,
            .tgit-experiences.scrollmagic-ready .tgit-experiences__item,
            .tgit-experiences.scrollmagic-ready .tgit-experiences__icon {
                opacity: 1;
                transform: none;
                transition: none
            }
        }
}

/* ════════════════════════════════════════════════════════════════
   INLINE COMMENT EDITOR
════════════════════════════════════════════════════════════════ */

/* Edit button — blog comments */
.tgit-blog-comment__edit {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tgit-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  transition:
    color 0.15s,
    background 0.15s;
  font-family: inherit;
}

.tgit-blog-comment__edit:hover {
  color: var(--tgit-gold);
  background: var(--tgit-gold-bg);
}

.tgit-blog-comment__edit.is-editing {
  color: #6b7280;
  background: #f3f4f6;
}

/* Edit button — review cards (top-right float) */
.tgit-review-card__edit {
  float: right;
  background: none;
  border: 1px solid var(--tgit-border);
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tgit-muted);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  transition:
    color 0.15s,
    background 0.15s,
    border-color 0.15s;
  font-family: inherit;
}

.tgit-review-card__edit:hover {
  color: var(--tgit-gold);
  border-color: var(--tgit-gold);
  background: var(--tgit-gold-bg);
}

.tgit-review-card__edit.is-editing {
  color: #6b7280;
  border-color: #d1d5db;
  background: #f9fafb;
}

/* Loading state on the text while fetching */
.tgit-comment-text.is-loading {
  opacity: 0.4;
  pointer-events: none;
}

/* Inline edit form container */
.tgit-inline-edit-form {
  margin-top: 0.75rem;
  border: 1.5px solid var(--tgit-gold);
  border-radius: var(--tgit-radius);
  background: var(--tgit-gold-bg);
  padding: 1.25rem;
  animation: tgit-slide-in 0.2s ease;
}

.tgit-inline-edit-form[hidden] {
  display: none;
}

/* Textarea inside inline form */
.tgit-inline-edit-form textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid var(--tgit-border);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--tgit-ink);
  background: var(--tgit-surface);
  resize: vertical;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.tgit-inline-edit-form textarea:focus {
  outline: none;
  border-color: var(--tgit-gold);
  box-shadow: 0 0 0 3px rgba(212, 150, 30, 0.12);
}

/* Action row */
.tgit-inline-edit-form__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

/* Save button */
.tgit-inline-edit-form__save {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: var(--tgit-gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.15s,
    transform 0.15s;
}

.tgit-inline-edit-form__save:hover {
  background: var(--tgit-gold-hover);
  transform: translateY(-1px);
}

.tgit-inline-edit-form__save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Cancel button */
.tgit-inline-edit-form__cancel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: transparent;
  border: 1px solid var(--tgit-border);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tgit-muted);
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}

.tgit-inline-edit-form__cancel:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: var(--tgit-ink);
}

/* Status messages */
.tgit-inline-edit-form__msg {
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  display: none;
  align-items: center;
  gap: 0.3rem;
}

.tgit-inline-edit-form__msg.success {
  display: inline-flex;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.tgit-inline-edit-form__msg.error {
  display: inline-flex;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/**
  * Search Css
  */
/* Suggested CSS Fixes */
#tgit-search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

#tgit-results-header {
  display: block !important;
  margin-bottom: 20px;
  font-weight: 600;
}

.tgit-card-image-wrap {
  aspect-ratio: 4 / 3;
  height: auto !important;
  overflow: hidden;
}

.tgit-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

div#tgit-search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

div#tgit-results-header {
  display: block;
  margin-bottom: 20px;
}

.tgit-card-image-wrap {
  aspect-ratio: 4 / 3;
  height: auto;
}

/* Quick fix to align WooCommerce Account Navigation and Content */
@media (min-width: 768px) {
  .woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
  }
  .woocommerce-MyAccount-navigation {
    flex: 0 0 25%;
    list-style: none;
    padding: 0;
  }
  .woocommerce-MyAccount-navigation li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .woocommerce-MyAccount-content {
    flex: 1;
  }
}

/* Styling the WooCommerce Addresses Tab */
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account
  .woocommerce-MyAccount-content
  .woocommerce-Address-title
  h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
}

/* Add spacing around the address section introductory text */
.woocommerce-account .woocommerce-MyAccount-content > p {
  margin-bottom: 25px;
  color: #555;
  font-size: 0.95rem;
}

/* Format the empty address notification / text links */
.woocommerce-account .woocommerce-MyAccount-content .u-columns .u-column1,
.woocommerce-account .woocommerce-MyAccount-content .u-columns .u-column2 {
  background: #fdfdfd;
  border: 1px solid #e4e4e4;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Style the "Add" or "Edit" link to look like a subtle, clean action link */
.woocommerce-account .woocommerce-MyAccount-content a.edit {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #0073aa; /* Change to your theme's primary color */
  text-decoration: underline;
}

.woocommerce-account .woocommerce-MyAccount-content a.edit:hover {
  color: #111;
}

/* Make addresses display side-by-side on desktop views */
@media (min-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-content .u-columns {
    display: flex;
    gap: 30px;
  }
  .woocommerce-account .woocommerce-MyAccount-content .u-columns .u-column1,
  .woocommerce-account .woocommerce-MyAccount-content .u-columns .u-column2 {
    flex: 1;
    margin-bottom: 0;
  }
}

/* Apply theme variables and match existing design patterns */
.tgit-account__addresses {
  --theme-border: var(--acc-border, #e2d9ce);
  --theme-radius: var(--acc-radius, 10px);
  --theme-ink: var(--acc-ink, #1e1a14);

  margin-top: 1.5rem;
}

/* 1. Header inside the addresses section */
.tgit-account__addresses h2 {
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--theme-ink);
  margin: 1.5rem 0 1rem;
}

/* 2. Grid Layout for Fields (matching modern theme layouts) */
.woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Full-width overrides for specific fields */
.form-row#billing_address_1_field,
.form-row#billing_address_2_field,
.form-row#billing_country_field,
.form-row#billing_email_field,
.form-row#shipping_address_1_field,
.form-row#shipping_address_2_field,
.form-row#shipping_country_field {
  grid-column: span 2;
}

/* 3. Inputs & Selects styled as per theme's clean look */
.tgit-account__addresses input[type="text"],
.tgit-account__addresses input[type="email"],
.tgit-account__addresses input[type="tel"],
.tgit-account__addresses select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--theme-border) !important;
  border-radius: var(--theme-radius);
  background-color: #fdfcfb; /* Subtle off-white to match the paper-like theme */
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--theme-ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.tgit-account__addresses input:focus {
  outline: none;
  border-color: #1e1a14 !important; /* Matches your ink color */
  box-shadow: 0 0 0 2px rgba(30, 26, 20, 0.05);
}

/* 4. Labels */
.tgit-account__addresses label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #6b7280;
  margin-bottom: 0.375rem;
}

/* 5. Submit Button (matches typical theme primary buttons) */
.tgit-account__addresses .button {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: var(--theme-ink);
  color: #ffffff;
  border-radius: var(--theme-radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.tgit-account__addresses .button:hover {
  opacity: 0.9;
}

/* 6. Mobile Responsiveness */
@media (max-width: 768px) {
  .woocommerce-address-fields__field-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-row {
    grid-column: span 1 !important;
  }
}

/* 1. Improve the main container layout */
.tgit-account__body {
  display: grid;
  grid-template-columns: 240px 1fr; /* 240px nav, flexible content */
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  align-items: start;
}

/* 2. Fix the sticky navigation */
.tgit-account__nav {
  position: sticky;
  top: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 3. Style the Content Area and Inner Section */
.tgit-account__content {
  min-width: 0; /* Prevents grid overflow */
}

.tgit-account__content section {
  background-color: #ffffff; /* White background card */
  border: 1px solid #e5e7eb; /* Subtle border */
  border-radius: 12px; /* Matching corner radius */
  padding: 2rem; /* Comfortable internal spacing */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* Soft shadow for depth */
}

/* 4. Fix typography hierarchy inside the content */
.tgit-account__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* 5. Mobile Responsiveness */
@media (max-width: 860px) {
  .tgit-account__body {
    grid-template-columns: 1fr; /* Stack columns on mobile */
    padding: 1rem;
  }

  .tgit-account__nav {
    position: static;
    flex-direction: row;
    overflow-x: auto; /* Horizontal scroll for nav if needed */
    white-space: nowrap;
  }
}

/* 1. Restore WooCommerce 2-Column Layout for Names */
.edit-account .form-row-first,
.edit-account .form-row-last {
  width: 48% !important;
  float: left;
  display: block;
  margin-bottom: 1.5rem;
}

.edit-account .form-row-last {
  float: right;
}

.edit-account .clear {
  clear: both;
}

/* 2. Style Labels for better hierarchy */
.edit-account label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

/* 3. Modernize Input Fields */
.edit-account input[type="text"],
.edit-account input[type="email"],
.edit-account input[type="password"],
.edit-account input[type="tel"] {
  width: 100%;
  height: auto; /* Reset the 24px height */
  padding: 10px 14px;
  border: 1px solid #d1d5db !important; /* Visible border */
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 1rem;
  box-sizing: border-box;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.edit-account input:focus {
  outline: none;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* 4. Fieldset (Password Change Section) Styling */
.edit-account fieldset {
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.edit-account fieldset legend {
  font-weight: 700;
  padding: 0 0.75rem;
  color: #111827;
}

/* 5. Submit Button Styling */
.edit-account button.button {
  padding: 0.75rem 2.5rem;
  background-color: #111827; /* Matches theme ink */
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.edit-account button.button:hover {
  opacity: 0.9;
}

/* 6. Mobile Responsiveness */
@media (max-width: 600px) {
  .edit-account .form-row-first,
  .edit-account .form-row-last {
    width: 100% !important;
    float: none;
  }
}

/* Recommended CSS to match the theme */
.woocommerce form.login {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  margin-top: 1rem;
  max-width: 400px;
}

.woocommerce form.login label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.woocommerce form.login input[type="text"],
.woocommerce form.login input[type="password"] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.woocommerce form.login button.woocommerce-form-login__submit {
  width: 100%;
  background-color: #2563eb; /* Primary Blue */
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* --- Structure & Layout --- */
section.woocommerce-order-details {
  width: 100%;
  clear: both;
  margin: 2.5rem 0; /* Combines top/bottom 2.5rem and left/right 0 */
}

section.woocommerce-customer-details {
  width: 100%;
  margin: 0;
}

.woocommerce-MyAccount-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Addresses Grid */
.woocommerce-columns--addresses {
  display: flex;
  gap: 2rem;
  width: 100%;
}

.woocommerce-column--billing-address,
.woocommerce-column--shipping-address {
  flex: 1 1 0%;
  min-width: 0;
}

/* --- Typography --- */
h2.woocommerce-order-details__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  display: block;
}

/* --- Tables & Data --- */

/* --- Container Card --- */
section.woocommerce-order-details {
  background: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: 12px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  border: 1px solid rgb(243, 244, 246);
  margin-bottom: 3rem;
}

/* --- Table Structure --- */
table.woocommerce-table {
  width: 100%; /* Added to ensure full-width layout */
  border-collapse: separate;
  border-spacing: 0px;
  overflow: hidden;
  border-radius: 8px;
}

/* Combined all identical Table Header (TH) selectors into one */
th.woocommerce-table__product-name,
th.woocommerce-table__product-table,
th.order-actions--heading {
  background-color: rgb(249, 250, 251);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgb(75, 85, 99);
  padding: 1rem;
  border-bottom: 1px solid rgb(229, 231, 235);
  text-align: left; /* Added for standard table alignment consistency */
}

/* Combined all identical Table Data (TD) selectors into one */
td.woocommerce-table__product-name,
td.woocommerce-table__product-total {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgb(243, 244, 246);
  vertical-align: top;
}

/* --- Status Badge --- */
mark.order-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: rgb(209, 250, 229);
  color: rgb(6, 95, 70);
}

/* --- List Container --- */
.woocommerce-table ul.wc-item-meta {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgb(107, 114, 128);
  line-height: 1.4;
}

/* --- List Items --- */
ul.wc-item-meta li {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.25rem;
}

/* --- Inline Typography --- */
ul.wc-item-meta li strong {
  display: inline-block;
  color: rgb(55, 65, 81);
  font-weight: 600;
  margin-right: 0.25rem;
}

ul.wc-item-meta li p {
  display: inline;
  margin: 0;
}

.woocommerce-table--order-details tfoot th,
.woocommerce-table--order-details tfoot td {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  text-align: left;
}

.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
  font-weight: 700;
  font-size: 1.1em;
}

.woocommerce-table tfoot th.order-actions--heading {
  padding: 12px 16px;
  border-top: 1px solid rgb(229, 231, 235);
  text-align: left;
}

.woocommerce-table tfoot th {
  padding: 12px 16px;
  border-top: 1px solid rgb(229, 231, 235);
  text-align: left;
  font-weight: 700;
  font-size: 1.1em;
}

.woocommerce-table tfoot td {
  padding: 12px 16px;
  border-top: 1px solid rgb(229, 231, 235);
  text-align: left;
  font-weight: 700;
  font-size: 1.1em;
}

main#main-content {
  margin-top: 80px !important;
}

body.home main#main-content,
body.front-page main#main-content {
  margin-top: 0px !important;
}

/* Container styling */
.woocommerce-pagination {
  text-align: center;
  margin: 30px auto;
}

/* List styling */
.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f9f9f9;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  overflow: hidden;
}

/* Individual item borders */
.woocommerce-pagination ul.page-numbers li {
  border-right: 1px solid #e4e4e4;
  margin: 0;
}

.woocommerce-pagination ul.page-numbers li:last-child {
  border-right: none;
}

/* General button links and spans */
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

/* Hover state for links */
.woocommerce-pagination ul.page-numbers li a:hover {
  background-color: #f0f0f0;
  color: #000000;
}

/* Active/Current page state */
.woocommerce-pagination ul.page-numbers li span.current {
  background-color: #111111; /* Change to your primary brand color */
  color: #ffffff;
}

/* Prev/Next arrows specific padding adjustment if needed */
.woocommerce-pagination ul.page-numbers li a.prev,
.woocommerce-pagination ul.page-numbers li a.next {
  font-weight: bold;
}

/* Style the WooCommerce result count text */
.woocommerce-result-count {
  font-size: 0.95rem;
  color: #666666; /* Muted gray to not compete with headings */
  font-weight: 400;
  margin: 0 0 20px 0; /* Adds spacing below the text */
  display: inline-block;
  float: left; /* Aligns it to the left side if your sorting dropdown floats right */
}

/* Clearfix for the product sorting controls container if necessary */
.woocommerce-shop-ordering,
.woocommerce-result-count {
  margin-bottom: 25px;
}

/* Container for the dropdown layout */
.woocommerce-ordering {
  margin: 0 0 20px 0;
  display: inline-block;
  float: right; /* Pushes the dropdown to the right side opposite of the result count */
}

/* Style the actual select dropdown element */
.woocommerce-ordering select.orderby {
  font-size: 0.9rem;
  color: #2c3e50;
  background-color: #ffffff;
  padding: 10px 36px 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  outline: none;
  transition:
    border-color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;

  /* Clean custom arrow styling */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* Focus and hover states */
.woocommerce-ordering select.orderby:hover {
  border-color: #b3b3b3;
}

.woocommerce-ordering select.orderby:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
}

/* Clear alignment fix for shop grid rows underneath */
.woocommerce-result-count,
.woocommerce-ordering {
  margin-bottom: 30px;
}

/* Ensure the layout stacks gracefully on mobile screens */
@media (max-width: 768px) {
  .woocommerce-result-count,
  .woocommerce-ordering {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .woocommerce-ordering select.orderby {
    width: 100%;
  }
}

/* Mapping for .common-paragraph (Body Text) */
p:not([class*="font-script"]),
.tgit-hero p {
  font-family: var(--tgit-font-body);
  -webkit-font-smoothing: antialiased;
  /* font-size: 16px !important; */
  font-weight: 300;
  /* line-height: 24px !important; */
  text-align: left;
  /* color: #3e2a2e !important; */
}

/* Mapping for .common-title-44px (Section Titles) */
h2.font-serif,
.tgit-hero h1 {
  font-family: var(--tgit-font-heading) !important;
  -webkit-font-smoothing: antialiased !important;
  font-size: 30px !important;
  font-weight: 300 !important;
  line-height: 36px !important;
}

/* Homepage hero: organic dark-to-light treatment for richer depth. */
.tgit-hero__slider-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 30%, rgba(255, 244, 219, 0.18) 0%, rgba(255, 244, 219, 0.07) 28%, transparent 66%),
    radial-gradient(ellipse at 72% 35%, transparent 12%, rgba(3, 8, 6, 0.18) 72%, rgba(2, 6, 5, 0.5) 100%),
    linear-gradient(108deg, rgba(3, 9, 7, 0.78) 0%, rgba(3, 9, 7, 0.58) 27%, rgba(3, 9, 7, 0.34) 46%, rgba(3, 9, 7, 0.14) 65%, transparent 84%),
    linear-gradient(180deg, rgba(2, 6, 5, 0.2) 0%, rgba(2, 6, 5, 0.06) 38%, rgba(2, 6, 5, 0.76) 100%);
    /* background-image: linear-gradient(to right, rgba(3, 9, 7, 0.9) 0%, rgba(3, 9, 7, 0.4) 50%, rgba(255, 255, 255, 0.1) 100%); */
    background-image: linear-gradient(to right, rgba(3, 30, 60, 0.9) 0%, rgba(3, 30, 60, 0.4) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.dark .tgit-hero__slider-overlay {
  background:
    radial-gradient(ellipse at 78% 30%, rgba(255, 244, 219, 0.14) 0%, rgba(255, 244, 219, 0.05) 28%, transparent 66%),
    radial-gradient(ellipse at 72% 35%, transparent 8%, rgba(1, 5, 4, 0.28) 68%, rgba(0, 3, 2, 0.68) 100%),
    linear-gradient(108deg, rgba(1, 5, 4, 0.86) 0%, rgba(1, 5, 4, 0.64) 27%, rgba(1, 5, 4, 0.4) 46%, rgba(1, 5, 4, 0.18) 65%, transparent 84%),
    linear-gradient(180deg, rgba(0, 3, 2, 0.36) 0%, rgba(0, 3, 2, 0.12) 36%, rgba(0, 3, 2, 0.88) 100%);
}

.tgit-hero__content {
  position: relative;
  padding-left: 1.35rem;
  border-left: 1px solid #6e5f62;
}

.tgit-hero .tgit-hero__heading {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.75rem, 6vw, 5.25rem) !important;
  /* font-weight: 700 !important; */
  line-height: 1.02 !important;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.6);
}

.tgit-hero .tgit-hero__tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  /* color: #6e5f62 !important; */
  font-family: var(--tgit-font-sans) !important;
  font-size: 0.7rem !important;
  /* font-weight: 600 !important; */
  line-height: 1.2 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.tgit-hero .tgit-hero__tagline::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.tgit-hero .tgit-hero__description {
  color: rgba(255, 255, 255, 0.9) !important;
  /* font-weight: 400 !important; */
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.tgit-hero__primary-cta {
  background: #6e5f62 !important;
  color: #FFFFFF !important;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.38);
}

.tgit-hero__primary-cta:hover {
  background: #6e5f62 !important;
  /* box-shadow: 0 16px 38px rgba(255, 255, 255, 0.38); */
}

.tgit-hero__secondary-cta {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38) !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}


@media (max-width: 639px) {
  .tgit-hero__slider-overlay {
    background:
      radial-gradient(ellipse at 68% 24%, rgba(255, 244, 219, 0.13) 0%, rgba(255, 244, 219, 0.05) 30%, transparent 64%),
      radial-gradient(ellipse at 50% 28%, transparent 10%, rgba(2, 7, 5, 0.24) 72%, rgba(1, 5, 4, 0.58) 100%),
      linear-gradient(165deg, rgba(2, 7, 5, 0.62) 0%, rgba(2, 7, 5, 0.38) 32%, rgba(2, 7, 5, 0.14) 56%, transparent 76%),
      linear-gradient(180deg, transparent 32%, rgba(1, 5, 4, 0.88) 100%);
  }

  .tgit-hero__content {
    padding-left: 1rem;
  }

  .tgit-hero .tgit-hero__heading {
    font-size: clamp(2.35rem, 12vw, 3.35rem) !important;
  }
}

/* Mapping for .common-header (Small Uppercase Headers) */
h2.text-xs.uppercase,
.text-xs.font-semibold.uppercase.tracking-widest {
  font-family: "Noto Sans", sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  line-height: 15.25px !important;
  letter-spacing: 0.2em !important;
  text-align: left !important;
  /* color: #333 !important; */
  text-transform: uppercase !important;
}

/* Desktop primary navigation */
.tgit-primary-nav > ul > li > a,
.tgit-primary-nav > a,
.tgit-primary-nav .tgit-primary-nav__link {
  position: relative !important;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.75rem !important;
  font-family: var(--tgit-font-sans) !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  background: transparent !important;
  color: #fcfcfb !important;
  transition: color 180ms ease !important;
}

.tgit-primary-nav > ul > li > a::after,
.tgit-primary-nav > a::after,
.tgit-primary-nav .tgit-primary-nav__link::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  bottom: 0.32rem;
  left: 0.75rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  display: none !important
}

.tgit-primary-nav > ul > li > a:hover,
.tgit-primary-nav > ul > li > a:focus-visible,
.tgit-primary-nav > ul > li > a.is-current,
.tgit-primary-nav > a:hover,
.tgit-primary-nav > a:focus-visible,
.tgit-primary-nav .tgit-primary-nav__link:hover,
.tgit-primary-nav .tgit-primary-nav__link:focus-visible {
  color: #f5c96a !important;
}

.tgit-primary-nav > ul > li > a:hover::after,
.tgit-primary-nav > ul > li > a:focus-visible::after,
.tgit-primary-nav > ul > li > a.is-current::after,
.tgit-primary-nav > a:hover::after,
.tgit-primary-nav > a:focus-visible::after,
.tgit-primary-nav .tgit-primary-nav__link:hover::after,
.tgit-primary-nav .tgit-primary-nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.tgit-primary-nav a:focus-visible {
  outline: 2px solid #f5c96a;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .tgit-primary-nav > ul > li > a::after,
  .tgit-primary-nav > a::after,
  .tgit-primary-nav .tgit-primary-nav__link::after {
    transition: none;
  }
}

.all-caps {
  font-family: var(--tgit-font-sans) !important;
  text-transform: uppercase !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
}

.noto-sans-font {
  font-family: "Noto Sans", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

header#site-header {
  background-color: #374834;
  opacity: 90%;
}

header nav a,
header #site-header a {
  color: #fcfcfb !important;
}

.btn-standard {
  background-color: #6e5f62;
}

.footer-group {
  font-family: var(--tgit-font-sans);
  font-size: 14px !important;
}
/* ── Homepage: Tailored trip editorial section ────────────────── */
.tgit-tailored {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 660px;
  background: #fcfcfb;
  color: #49373a;
}

.tgit-tailored__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7.25rem) clamp(2rem, 6.2vw, 7rem);
}

.tgit-tailored__eyebrow {
  margin: 0 0 1.7rem;
  color: #81777a;
  font-family: var(--tgit-font-sans) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.tgit-tailored__heading {
  margin: 0;
  color: #49373a;
  /* font-family: "Playfair Display", Georgia, serif; */
  font-size: clamp(2.35rem, 4vw, 4.45rem);
  font-weight: 200;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.tgit-tailored__heading em {
  font-weight: 400;
}

.tgit-tailored__copy {
  max-width: 670px;
  margin-top: clamp(1.8rem, 3vw, 2.75rem);
  color: #63585a;
  /* font-family: "Playfair Display", Georgia, serif; */
  font-size: clamp(0.94rem, 1.12vw, 1.08rem);
  line-height: 1.52;
}

.tgit-tailored__copy p {
  margin: 0;
  color: inherit;
  /* font-family: "Playfair Display", Georgia, serif !important; */
  font-size: inherit !important;
  font-weight: 200 !important;
  line-height: inherit !important;
}
.tgit-tailored__copy p + p {
  margin-top: 1.35rem;
}

.tgit-tailored__accolades {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.25rem);
  margin-top: clamp(2.8rem, 5vw, 4.8rem);
}

.tgit-tailored__accolade {
  display: flex;
  align-items: center;
  min-width: 0;
  color: #51474a;
}

.tgit-tailored__laurel {
  width: 29px;
  height: 52px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.3;
}

.tgit-tailored__laurel--right {
  transform: scaleX(-1);
}

.tgit-tailored__award-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  text-align: center;
}

.tgit-tailored__award-copy strong {
  font-family: var(--tgit-font-serif);
  font-size: clamp(0.63rem, 0.8vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.tgit-tailored__award-copy small {
  margin-top: 0.32rem;
  font-family: var(--tgit-font-serif);
  font-size: clamp(0.54rem, 0.7vw, 0.67rem);
  font-style: italic;
  line-height: 1.1;
}

.tgit-tailored__media {
  min-height: 660px;
  margin: 0;
  overflow: hidden;
}

.tgit-tailored__media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  display: block;
  object-fit: cover;
  object-position: 54% center;
}

@media (max-width: 900px) {
  .tgit-tailored {
    grid-template-columns: 1fr;
  }
  .tgit-tailored__content {
    padding: 4.5rem 1.5rem;
  }
  .tgit-tailored__media,
  .tgit-tailored__media img {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .tgit-tailored__heading br {
    display: none;
  }
  .tgit-tailored__accolades {
    justify-content: space-between;
    gap: 0.25rem;
  }
  .tgit-tailored__laurel {
    width: 20px;
    height: 42px;
  }
  .tgit-tailored__award-copy {
    min-width: 62px;
  }
  .tgit-tailored__media,
  .tgit-tailored__media img {
    min-height: 390px;
  }
}

/* ── Homepage: editorial journey departures ───────────────────── */
.tgit-departures {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0 clamp(3rem, 6vw, 6rem);
  background: #493236;
  color: #fff;
}

.tgit-departures__intro {
  width: min(100% - 3rem, 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  align-items: end;
  gap: 3rem;
}

.tgit-departures__intro-copy {
  max-width: 660px;
}

.tgit-departures__kicker, .tgit-testimonials__kicker {
  margin: 0 0 1rem;
  color: #fff !important;
  font-family: var(--tgit-font-heading) !important;
  font-size: 0.64rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.tgit-departures h2 {
  margin: 0;
  color: #fff;
  font-family: var(--tgit-font-serif);
  font-size: clamp(2.4rem, 4.3vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.tgit-departures__description {
  max-width: 630px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--tgit-font-serif) !important;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

.tgit-departures__view-all {
  justify-self: end;
  margin-bottom: 0.5rem;
}

.common-arrow-buttonV4 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.common-arrow-buttonV4.center {
  justify-content: center;
}

.common-arrow-buttonV4 .item-special {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px 0 50px;
  border-radius: 60px;
  color: #3e2a2e;
  cursor: pointer;
  text-decoration: none;
}

.common-arrow-buttonV4 button.item-special {
  border: 0;
  background: transparent;
}

.common-arrow-buttonV4 .span-special {
  overflow: hidden;
  color: inherit;
  font-family: var(--tgit-font-sans), sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.common-arrow-buttonV4 .shelf-special {
  position: absolute;
  top: 50%;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 60px;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

.common-arrow-buttonV4 .item-special > svg {
  position: absolute;
  top: 50%;
  left: 9px;
  color: inherit;
  transform: translateY(-50%);
  transition: left 0.3s ease;
}

.common-arrow-buttonV4 .item-special:is(:hover, :focus-visible) .shelf-special {
  width: 100%;
}

.common-arrow-buttonV4 .item-special:is(:hover, :focus-visible) > svg {
  left: 18px;
}

.common-arrow-buttonV4 .item-special:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.common-arrow-buttonV4.white .item-special {
  color: #fcfcfb;
}

.tgit-departures__rule {
  width: min(100% - 3rem, 1400px);
  height: 1px;
  margin: clamp(2.8rem, 5vw, 5rem) auto clamp(2rem, 3.4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.38);
  position: relative;
}

.tgit-departures__rule span {
  position: absolute;
  right: 2%;
  top: -1px;
  width: 38px;
  height: 3px;
  background: #fff;
}

.tgit-departures__rail {
  position: relative;
  padding-left: max(1.5rem, calc((100vw - 1400px) / 2));
}
.tgit-departures__rail .departures-swiper {
  overflow: visible;
}
.tgit-departures__rail .swiper-slide {
  height: auto;
}

.tgit-journey-card {
  height: clamp(390px, 43vw, 610px);
  overflow: hidden;
  background: #2d2526;
}
.tgit-journey-card > a {
  height: 100%;
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
}

.tgit-journey-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.tgit-journey-card:hover img {
  transform: scale(1.045);
}
.tgit-journey-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 9, 10, 0.04) 25%,
    rgba(14, 9, 10, 0.84) 100%
  );
}

.tgit-journey-card__date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.42rem 0.62rem;
  background: #df6247;
  color: #fff;
  font-family: var(--tgit-font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.tgit-journey-card__content {
  position: absolute;
  right: 1.4rem;
  bottom: 1.35rem;
  left: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tgit-journey-card__region {
  margin-bottom: 0.2rem;
  font-family: var(--tgit-font-sans);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.2;
}

.tgit-journey-card__content strong {
  max-width: 95%;
  font-family: var(--tgit-font-serif);
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.tgit-journey-card__explore {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: 1.2rem;
  font-family: var(--tgit-font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tgit-journey-card__explore svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.tgit-departures__nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(73, 50, 54, 0.75);
  color: #fff;
  transform: translateY(-50%);
  transition:
    opacity 0.2s,
    background 0.2s;
}

.tgit-departures__nav svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.tgit-departures__nav--prev {
  left: max(0.35rem, calc((100vw - 1460px) / 2));
}
.tgit-departures__nav--next {
  right: 1.25rem;
}
.tgit-departures__nav:hover {
  background: #fff;
  color: #493236;
}
.tgit-departures__nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .tgit-departures__intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tgit-departures__view-all {
    justify-self: start;
  }
  .tgit-departures__rule {
    margin-top: 2.5rem;
  }
  .tgit-journey-card {
    height: 440px;
  }
  .tgit-departures__nav {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   Global typography system
   Serif: titles, headings and body copy
   Sans: menus, controls, subtitles and footer
════════════════════════════════════════════════════════════════ */
html,
body {
  font-family: var(--tgit-font-serif);
}

body,
p,
li,
blockquote,
dd,
dt,
article,
.font-serif {
  font-family: var(--tgit-font-serif) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.page-title,
.section-title {
  font-family: var(--tgit-font-serif) !important;
}

header,
header nav,
header nav a,
.menu,
.menu a,
.sub-menu,
.sub-menu a,
button,
input,
select,
textarea,
label,
.button,
.btn,
[class*="btn-"],
[class*="button"],
[role="button"],
.font-sans,
.font-script,
.subtitle,
[class*="subtitle"],
[class*="sub-title"],
[class*="eyebrow"],
[class*="kicker"],
[class*="pretitle"] {
  font-family: var(--tgit-font-sans) !important;
}

.title-stick-to-bottom {
  margin-top: auto !important;
  flex-grow: 0 !important;
}

.upcoming-pricing {
  z-index: 2;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  font-weight: 600;
  color: rgb(31, 41, 55);
}

footer,
footer * {
  font-family: var(--tgit-font-serif) !important;
}

section.tgit-curate {
  background-color: rgb(144 193 242);
}

/* Explore journeys — isolated from the full-screen experiences component. */
.tgit-experiences1 {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0;
  background: #c8962a;
  color: #fff;
}


.tgit-experiences1__container {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.tgit-experiences1__header {
  display: grid;
  gap: 24px;
  align-items: end;
  padding-bottom: clamp(32px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tgit-experiences1__eyebrow {
  margin: 0 0 14px;
  color: #e0bd6a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tgit-experiences1__title {
  max-width: 720px;
  margin: 0;
  color: #49373a;
  font-family: var(--tgit-font-serif);
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.tgit-experiences1__eyebrow, .tgit-experiences1__description, .tgit-experiences1__label, .tgit-experiences1__item, .tgit-experiences1__icon, .tgit-experiences1__icon svg {
  color: #49373a !important;
}
.tgit-experiences1__grid, .tgit-experiences1__header, .tgit-experiences1__container, .tgit-experiences1__item, .tgit-experiences1__icon, .tgit-experiences1__label, .tgit-experiences1__title, .tgit-experiences1__description, .tgit-experiences1::after {
  border-color: #49373a !important;
}

.tgit-experiences1__description {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.tgit-experiences1__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(28px, 4vw, 48px);
}

.tgit-experiences1__item {
  min-width: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: inherit;
  text-decoration: none;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.tgit-experiences1__item:hover {
  border-color: rgba(224, 189, 106, 0.55);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.tgit-experiences1__item:focus-visible {
  outline: 2px solid #e0bd6a;
  outline-offset: 3px;
}

.tgit-experiences1__icon {
  width: 54px;
  height: 54px;
  display: grid;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #e0bd6a;
  transition: background-color 200ms ease, transform 200ms ease;
}

.tgit-experiences1__item:hover .tgit-experiences1__icon {
  background: rgba(224, 189, 106, 0.16);
  transform: rotate(-4deg);
}

.tgit-experiences1__icon svg {
  width: 25px;
  height: 25px;
}

.tgit-experiences1__label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .tgit-experiences1__container {
    width: min(1400px, calc(100% - 48px));
  }

  .tgit-experiences1__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .tgit-experiences1__container {
    width: min(1400px, calc(100% - 64px));
  }

  .tgit-experiences1__header {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 64px;
  }

  .tgit-experiences1__grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .tgit-experiences1__item,
  .tgit-experiences1__icon {
    transition: none;
  }

  .tgit-experiences1__item:hover,
  .tgit-experiences1__item:hover .tgit-experiences1__icon {
    transform: none;
  }
}

/* Global button palette. Keep this at the end so it also covers component styles. */
:where(
  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  a.button,
  a.btn,
  a[class*="-btn"],
  a[class*="__btn"],
  a[class*="-cta"],
  a[class*="__cta"],
  a.tgit-error__link--primary,
  .wp-block-button__link
) {
  background-color: #6e5f62 !important;
  border-color: #6e5f62 !important;
}


.swiper-button-prev, .swiper-button-next {
    display: none;
}

.tgit-h2__heading {
    margin: 0;
    color: #49373a;
    /* font-family: "Playfair Display", Georgia, serif; */
    font-size: clamp(2.35rem, 4vw, 4.45rem);
    font-weight: 200;
    letter-spacing: -0.035em;
    line-height: 1.03;
}

.search-btn {
  background: none !important;
}

/* .shadow-2xl {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: rgba(0, 0, 0, 0.37) 0px 8px 32px 0px;
} */

.light_font_color {
  color: #fcfcfb !important;
}

.btn-yellow {
  background-color: #c8962a !important;
}

.yellow_font_color {
  color: #c8962a !important;
}