/* ================================================================
   Travel with Hayat — Main Stylesheet
   Customize colors & fonts via Appearance > Customize
================================================================ */

/* ── Variables (defaults, overridden by Customizer inline CSS) ── */
:root {
  --twh-primary:      #D97706;
  --twh-accent:       #064E3B;
  --twh-text:         #1a1a1a;
  --twh-muted:        #6b7280;
  --twh-border:       #e5e7eb;
  --twh-bg:           #ffffff;
  --twh-bg-muted:     #f9fafb;
  --twh-font-heading: 'Playfair Display', Georgia, serif;
  --twh-font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --twh-radius:       4px;
  --twh-shadow:       0 4px 24px rgba(0,0,0,.08);
  --twh-shadow-lg:    0 12px 40px rgba(0,0,0,.15);
  --twh-transition:   0.25s ease;
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--twh-font-body);
  color: var(--twh-text);
  background: var(--twh-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--twh-transition); }
a:hover { color: var(--twh-primary); }
ul  { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--twh-font-heading);
  line-height: 1.2;
  color: var(--twh-accent);
}

/* ── Container ───────────────────────────────────────────────── */
.twh-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.twh-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--twh-font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--twh-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--twh-transition), color var(--twh-transition), border-color var(--twh-transition), transform var(--twh-transition);
  white-space: nowrap;
}
.twh-btn:hover { transform: translateY(-1px); }

.twh-btn--primary {
  background: var(--twh-primary);
  color: #fff;
  border-color: var(--twh-primary);
}
.twh-btn--primary:hover {
  background: #fff;
  color: var(--twh-accent);
  border-color: var(--twh-primary);
}

.twh-btn--outline {
  background: transparent;
  color: var(--twh-accent);
  border-color: var(--twh-accent);
}
.twh-btn--outline:hover {
  background: var(--twh-accent);
  color: #fff;
}

.twh-btn--light {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.twh-btn--light:hover { background: #fff; color: var(--twh-accent); }

.twh-btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.twh-btn--whatsapp:hover { background: #128C7E; border-color: #128C7E; color: #fff; }

.twh-btn--sm  { padding: .5rem 1.25rem; font-size: .75rem; }
.twh-btn--lg  { padding: 1rem 2.5rem;   font-size: .875rem; }
.twh-btn--block { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────────────────────────── */
.twh-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--twh-transition), box-shadow var(--twh-transition), padding var(--twh-transition);
}
.twh-header--solid,
.twh-header.is-scrolled {
  position: fixed;
  background: var(--twh-accent);
  box-shadow: var(--twh-shadow);
  padding: .875rem 0;
}
.twh-header--sticky { position: fixed; }
.twh-header--transparent { background: transparent; }

.twh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Text Logo */
.twh-text-logo { display: flex; align-items: baseline; gap: .5rem; }
.twh-text-logo__name {
  font-family: var(--twh-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
}
.twh-text-logo__tag {
  font-family: var(--twh-font-body);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--twh-primary);
  font-weight: 400;
}

/* Custom Logo (uploaded via Customizer) */
.custom-logo { height: 48px; width: auto; }

/* Nav */
.twh-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.twh-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.twh-nav__list a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.twh-nav__list a:hover,
.twh-nav__list .current-menu-item > a { color: var(--twh-primary); }

/* Hamburger */
.twh-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.twh-nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--twh-transition), opacity var(--twh-transition);
}

/* ── Hero ────────────────────────────────────────────────────── */
.twh-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.twh-hero__bg {
  position: absolute;
  inset: 0;
}
.twh-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.twh-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,var(--hero-overlay, .45));
}
.twh-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--twh-bg));
}
.twh-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 7rem;
  padding-bottom: 6rem;
}
.twh-hero__title {
  font-family: var(--twh-font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.twh-hero__title-em {
  color: var(--twh-primary);
  font-style: italic;
}
.twh-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.7;
}

/* ── Stats ───────────────────────────────────────────────────── */
.twh-stats {
  padding: 5rem 0;
  border-bottom: 1px solid var(--twh-border);
}
.twh-stats__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.twh-stats__item { text-align: center; }
.twh-stats__value {
  display: block;
  font-family: var(--twh-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--twh-accent);
  margin-bottom: .25rem;
}
.twh-stats__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--twh-muted);
}

/* ── Section ─────────────────────────────────────────────────── */
.twh-section { padding: 5rem 0; }
.twh-section--muted { background: var(--twh-bg-muted); }
.twh-section--dark {
  background: var(--twh-accent);
  color: rgba(255,255,255,.85);
}
.twh-section--dark h2,
.twh-section--dark h3 { color: #fff; }

.twh-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.twh-section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.twh-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .75rem;
}
.twh-section__subtitle {
  color: var(--twh-muted);
  max-width: 480px;
  line-height: 1.7;
}
.twh-section--dark .twh-section__subtitle { color: rgba(255,255,255,.6); }

/* ── Tour Grid ───────────────────────────────────────────────── */
.twh-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 2rem;
}

/* ── Tour Card ───────────────────────────────────────────────── */
.twh-tour-card {
  background: #fff;
  border-radius: calc(var(--twh-radius) * 2);
  overflow: hidden;
  box-shadow: var(--twh-shadow);
  transition: transform var(--twh-transition), box-shadow var(--twh-transition);
  display: flex;
  flex-direction: column;
}
.twh-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--twh-shadow-lg);
}
.twh-tour-card__img-wrap {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.twh-tour-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.twh-tour-card:hover .twh-tour-card__img { transform: scale(1.05); }
.twh-tour-card__img--placeholder { background: linear-gradient(135deg, var(--twh-accent) 0%, var(--twh-primary) 100%); width:100%; height:100%; }

.twh-tour-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.twh-tour-card__badge--easy        { background: #16a34a; }
.twh-tour-card__badge--moderate     { background: #ca8a04; }
.twh-tour-card__badge--challenging  { background: #dc2626; }
.twh-tour-card__badge--expert       { background: #7c3aed; }

.twh-tour-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.twh-tour-card__location {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--twh-muted);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.twh-tour-card__title {
  font-size: 1.3rem;
  margin-bottom: .6rem;
}
.twh-tour-card__excerpt {
  font-size: .9rem;
  color: var(--twh-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.twh-tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--twh-border);
}
.twh-tour-card__meta-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--twh-muted);
  font-weight: 600;
}
.twh-tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.twh-tour-card__price {
  font-family: var(--twh-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--twh-primary);
}

/* ── Testimonials ────────────────────────────────────────────── */
.twh-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 1.5rem;
}
.twh-testimonial {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: calc(var(--twh-radius) * 2);
  padding: 2rem;
}
.twh-testimonial__stars {
  color: var(--twh-primary);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.twh-testimonial__text {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.twh-testimonial__author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.twh-testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--twh-primary);
}
.twh-testimonial__avatar img { width:100%; height:100%; object-fit:cover; }
.twh-testimonial__author strong { display:block; color:#fff; font-size:.95rem; }
.twh-testimonial__location { font-size:.75rem; color:rgba(255,255,255,.5); }

/* ── CTA Banner ──────────────────────────────────────────────── */
.twh-cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--twh-primary) 0%, #b45309 100%);
  color: #fff;
}
.twh-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.twh-cta-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: .5rem;
}
.twh-cta-banner__subtitle { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.twh-cta-banner__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero ───────────────────────────────────────────────── */
.twh-page-hero {
  background: var(--twh-accent);
  color: #fff;
  padding: 6rem 0 3rem;
}
.twh-page-hero--sm { padding: 5rem 0 2.5rem; }
.twh-page-hero__title {
  font-family: var(--twh-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: .5rem;
}
.twh-page-hero__subtitle {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  margin-top: .75rem;
}

/* ── Tour Detail ─────────────────────────────────────────────── */
.twh-tour-hero {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.twh-tour-hero__bg { position: absolute; inset: 0; }
.twh-tour-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.twh-tour-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.twh-tour-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}
.twh-tour-hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: .75rem;
}
.twh-tour-hero__badges { display: flex; gap: .75rem; flex-wrap: wrap; }
.twh-badge {
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.twh-badge--easy        { background: #16a34a; color: #fff; }
.twh-badge--moderate     { background: #ca8a04; color: #fff; }
.twh-badge--challenging  { background: #dc2626; color: #fff; }
.twh-badge--expert       { background: #7c3aed; color: #fff; }
.twh-badge--location     { background: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(4px); }

.twh-tour-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

/* Booking Card */
.twh-booking-card {
  background: #fff;
  border: 1px solid var(--twh-border);
  border-radius: calc(var(--twh-radius) * 2);
  box-shadow: var(--twh-shadow-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.twh-booking-card__price {
  font-family: var(--twh-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--twh-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--twh-border);
}
.twh-booking-card__price span { font-size: .85rem; color: var(--twh-muted); font-family: var(--twh-font-body); font-weight: 400; }
.twh-booking-card__meta { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.twh-booking-card__meta-row {
  display: flex;
  align-items: center;
  gap: .875rem;
  color: var(--twh-muted);
}
.twh-booking-card__meta-row svg { flex-shrink: 0; color: var(--twh-primary); }
.twh-booking-card__meta-row span { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; display: block; }
.twh-booking-card__meta-row strong { font-size: .95rem; color: var(--twh-text); }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.twh-breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.twh-breadcrumb a { color: rgba(255,255,255,.6); }
.twh-breadcrumb a:hover { color: var(--twh-primary); }

/* ── Archive ─────────────────────────────────────────────────── */
.twh-tours-archive { padding: 3rem 0 5rem; }
.twh-filters {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.twh-filters__label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--twh-muted); }
.twh-filter-btn {
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid var(--twh-border);
  color: var(--twh-muted);
  transition: all var(--twh-transition);
}
.twh-filter-btn:hover,
.twh-filter-btn--active {
  background: var(--twh-accent);
  border-color: var(--twh-accent);
  color: #fff;
}

/* ── Pagination ──────────────────────────────────────────────── */
.twh-pagination { margin-top: 3rem; }
.twh-pagination .nav-links { display: flex; gap: .5rem; justify-content: center; }
.twh-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--twh-radius);
  border: 1.5px solid var(--twh-border);
  font-size: .9rem;
  font-weight: 600;
  color: var(--twh-text);
  transition: all var(--twh-transition);
}
.twh-pagination .page-numbers.current,
.twh-pagination .page-numbers:hover {
  background: var(--twh-accent);
  border-color: var(--twh-accent);
  color: #fff;
}

/* ── Prose (Content) ─────────────────────────────────────────── */
.twh-prose h2,.twh-prose h3,.twh-prose h4 { margin: 2rem 0 1rem; }
.twh-prose p  { margin-bottom: 1.25rem; line-height: 1.8; color: #374151; }
.twh-prose ul,.twh-prose ol { margin: 1rem 0 1.5rem 1.5rem; }
.twh-prose li { margin-bottom: .5rem; line-height: 1.7; }
.twh-prose img { border-radius: calc(var(--twh-radius)*2); margin: 2rem 0; }
.twh-prose blockquote {
  border-left: 4px solid var(--twh-primary);
  padding: 1rem 1.5rem;
  background: var(--twh-bg-muted);
  border-radius: 0 var(--twh-radius) var(--twh-radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--twh-muted);
}

/* ── Blog ────────────────────────────────────────────────────── */
.twh-blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 3rem 0 5rem; }
.twh-post-card { display: grid; grid-template-columns: 300px 1fr; gap: 2rem; margin-bottom: 3rem; }
.twh-post-card__thumb { display: block; border-radius: calc(var(--twh-radius)*2); overflow: hidden; aspect-ratio: 4/3; }
.twh-post-card__thumb img { width:100%; height:100%; object-fit:cover; }
.twh-post-card__meta { font-size: .8rem; color: var(--twh-muted); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .06em; }
.twh-post-card__title { font-size: 1.5rem; margin-bottom: .75rem; }
.twh-post-card__excerpt { color: var(--twh-muted); line-height: 1.7; margin-bottom: 1.25rem; }

/* Blog Sidebar */
.twh-blog-sidebar .widget { margin-bottom: 2.5rem; }
.twh-blog-sidebar .widget-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--twh-primary); }

/* ── Footer ──────────────────────────────────────────────────── */
.twh-footer {
  background: var(--twh-accent);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 0;
}
.twh-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.twh-footer__logo { height: 48px; width: auto; margin-bottom: 1.25rem; }
.twh-footer__about { line-height: 1.75; margin-bottom: 1.75rem; max-width: 380px; font-size: .95rem; }
.twh-footer__social { display: flex; gap: .75rem; }
.twh-footer__social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--twh-transition);
}
.twh-footer__social-link:hover {
  background: var(--twh-primary);
  border-color: var(--twh-primary);
  color: #fff;
}
.twh-footer__col-title {
  font-family: var(--twh-font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--twh-primary);
  margin-bottom: 1.5rem;
}
.twh-footer__nav { display: flex; flex-direction: column; gap: .875rem; }
.twh-footer__nav a { color: rgba(255,255,255,.6); font-size: .95rem; }
.twh-footer__nav a:hover { color: #fff; }
.twh-footer__contact-list { display: flex; flex-direction: column; gap: 1rem; }
.twh-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
}
.twh-footer__contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--twh-primary); }
.twh-footer__contact-list a { color: rgba(255,255,255,.6); }
.twh-footer__contact-list a:hover { color: #fff; }
.twh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ── Text Logo — Light version ───────────────────────────────── */
.twh-text-logo--light .twh-text-logo__name { font-size: 1.75rem; }

/* ── WhatsApp Float Button ───────────────────────────────────── */
.twh-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform var(--twh-transition), box-shadow var(--twh-transition);
}
.twh-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
  color: #fff;
}

/* ── Page Content ────────────────────────────────────────────── */
.twh-page-content { padding: 3rem 0 5rem; max-width: 860px; }
.twh-no-posts { color: var(--twh-muted); font-style: italic; padding: 2rem 0; }

/* ── WooCommerce basic overrides ─────────────────────────────── */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--twh-primary) !important;
  color: #fff !important;
  border-radius: var(--twh-radius) !important;
  font-family: var(--twh-font-body) !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  font-size: .8rem !important;
}
.woocommerce-loop-product__title { font-family: var(--twh-font-heading) !important; }
.price { color: var(--twh-primary) !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .twh-tour-layout { grid-template-columns: 1fr; }
  .twh-booking-card { position: static; }
  .twh-blog-layout { grid-template-columns: 1fr; }
  .twh-post-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .twh-stats__grid { grid-template-columns: repeat(2,1fr); }
  .twh-footer__grid { grid-template-columns: 1fr; }
  .twh-cta-banner__inner { flex-direction: column; text-align: center; }
  .twh-cta-banner__btns { justify-content: center; }
  .twh-section__header { flex-direction: column; align-items: flex-start; }

  .twh-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--twh-accent);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .twh-nav.is-open { display: flex; }
  .twh-nav__list { flex-direction: column; align-items: center; gap: 1.5rem; }
  .twh-nav__list a { font-size: 1rem; }
  .twh-nav-toggle { display: flex; z-index: 200; }
  .twh-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .twh-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .twh-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .twh-tours-grid { grid-template-columns: 1fr; }
  .twh-stats__grid { grid-template-columns: repeat(2,1fr); }
  .twh-hero__title { font-size: 2.5rem; }
}
