/*
Theme Name: Fifigraphy
Theme URI: https://fifigraphy.com
Author: Fifigraphy Team
Description: A beautiful travel guides WordPress theme with WooCommerce cart support.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: fifigraphy
Tags: travel, e-commerce, woocommerce, blog, responsive
*/

/* ============================================
   HIDE SIDEBAR ON SHOP PAGE
   ============================================ */
.shop-section ~ .widget-area,
.shop-section ~ aside,
.shop-section ~ #secondary,
.page-template-page-shop .widget-area,
.page-template-page-shop aside,
.page-template-page-shop #secondary,
.woocommerce-page .widget-area,
.woocommerce-page aside,
.woocommerce-page #secondary,
.widget-area { display: none !important; }

/* ============================================
   EXIT / BACK BUTTON (toolkit pages)
   ============================================ */
.toolkit-exit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 13px;
    font-weight: 400;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    position: absolute;
    top: 90px;
    left: 20px;
    z-index: 10;
}

.toolkit-exit-btn:hover {
    color: #2C3E50;
}

.toolkit-exit-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .toolkit-exit-btn {
        top: 80px;
        left: 12px;
        font-size: 12px;
    }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #515A5A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-display { font-family: 'Playfair Display', Georgia, serif; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

@media (max-width: 767px) {
  .site-header { padding: 0 20px; }
}

.site-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 767px) {
  .main-nav { display: none; }
}

.main-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 19px;
  margin-bottom: -19px;
  transition: color 0.2s;
}

.main-nav a:hover { color: #1a1a1a; }
.main-nav a.active { color: #1a1a1a; }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #2C3E50;
}

/* Cart */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #555;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:hover {
  color: #1a1a1a;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1995;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 80vw;
  height: 100vh;
  background: #fff;
  z-index: 1996;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E8E8E8;
}
.mobile-menu-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
}
.mobile-menu-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-close:hover {
  color: #1a1a1a;
  background: #f5f5f5;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.mobile-menu-link {
  padding: 14px 20px;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-link:hover {
  color: #1a1a1a;
  background: #f8f8f8;
}
.mobile-menu-link.active {
  color: #2C3E50;
  font-weight: 500;
  border-left: 3px solid #2C3E50;
  padding-left: 17px;
}

.cart-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #555;
  transition: color 0.2s;
  background: none;
  border: none;
}

.cart-toggle-btn:hover { color: #1a1a1a; }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #2C3E50;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-panel {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.cart-panel.open { transform: translateX(0); }

body.no-scroll { overflow: hidden; }

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #E8E8E8;
}

.cart-panel-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.cart-panel-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.cart-panel-close:hover { color: #1a1a1a; background: #f5f5f5; }

.cart-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-panel-body .empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  text-align: center;
}
.cart-panel-body .empty svg { margin-bottom: 12px; }

.cart-item-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item-row:last-child { border-bottom: none; }

.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price-text {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  overflow: hidden;
}
.qty-stepper button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  background: #fff;
  transition: background 0.15s;
}
.qty-stepper button:hover { background: #f5f5f5; }
.qty-stepper span {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

.cart-item-delete {
  font-size: 12px;
  color: #999;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.cart-item-delete:hover { color: #e74c3c; }

.cart-panel-footer {
  padding: 20px 24px;
  border-top: 1px solid #E8E8E8;
  background: #fff;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-subtotal-row span:first-child {
  font-size: 15px;
  color: #555;
}
.cart-subtotal-row span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.btn-checkout {
  display: block;
  width: 100%;
  padding: 14px;
  background: #2C3E50;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  border-radius: 6px;
  transition: background 0.2s;
}
.btn-checkout:hover { background: #34495E; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px 60px rgba(0,0,0,0.15);
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero-line {
  width: 40px;
  height: 1px;
  background: #fff;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-top: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-top: 14px;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 36px;
  background: #fff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: 1px solid #fff;
  transition: all 0.3s;
}
.hero-cta:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.hero-chevron {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.7;
  z-index: 10;
  animation: chevronBounce 2.5s ease-in-out infinite;
}

@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   CATEGORY SHOWCASE
   ============================================ */
.categories {
  padding: 48px 24px;
  background: #fff;
}

.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  .categories-inner { flex-direction: column; }
}

.category-card {
  position: relative;
  flex: 1;
  min-height: 300px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.category-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card-img { transform: scale(1.05); }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.55) 100%);
}

.category-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.category-card-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}

.category-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-top: 4px;
}

/* ============================================
   SHOP SECTION
   ============================================ */
.shop-section {
  padding: 80px 24px;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
}

.section-header p {
  font-size: 15px;
  color: #777;
  margin-top: 8px;
}

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

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

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

.product-card {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.product-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.product-body { padding: 20px; }

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-meta-tag {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2C3E50;
}

.product-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aaa;
}

.product-meta-date {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
}

.product-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 10px;
  line-height: 1.35;
}

.product-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.product-price {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.btn-add-cart {
  padding: 8px 18px;
  background: #2C3E50;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-add-cart:hover { background: #34495E; }
.btn-add-cart.added { background: #27ae60; }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  padding: 80px 24px;
  background: #fff;
}

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

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

.blog-card {
  display: flex;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }

@media (max-width: 600px) {
  .blog-card { flex-direction: column; }
}

.blog-thumb {
  width: 40%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .blog-thumb { width: 100%; aspect-ratio: 4/3; }
}

.blog-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-date {
  font-size: 12px;
  color: #999;
}

.blog-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 8px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #2C3E50;
  margin-top: 12px;
  transition: opacity 0.2s;
}
.read-more:hover { opacity: 0.7; }

.btn-view-all {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 28px;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 100px;
  transition: all 0.3s;
}
.btn-view-all:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1B2631;
  padding: 60px 24px 24px;
  color: #AEB6BF;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

.footer-brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.footer-brand-tagline {
  font-size: 13px;
  color: #8B95A3;
  margin-top: 8px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8B95A3;
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 14px;
  color: #AEB6BF;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-newsletter {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-newsletter-label {
  font-size: 14px;
  color: #8B95A3;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-form input {
  width: 220px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid #444;
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: #fff;
  font-size: 13px;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: #666; }
.footer-newsletter-form input:focus { border-color: #666; }

.footer-newsletter-form button {
  padding: 10px 18px;
  background: #2C3E50;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 0 6px 6px 0;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover { background: #34495E; }

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-left {
  font-size: 12px;
  color: #5a6470;
}

.footer-bottom a {
  font-size: 12px;
  color: #5a6470;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #fff; }

/* ============================================
   PAGE INTRO (editable Gutenberg content)
   ============================================ */
.gutenberg-intro {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.gutenberg-intro h1,
.gutenberg-intro h2,
.gutenberg-intro h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.gutenberg-intro h2 {
  font-size: 30px;
  font-weight: 400;
}

.gutenberg-intro p {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 16px;
}

.gutenberg-intro img {
  border-radius: 10px;
  margin: 20px 0;
}

/* ============================================
   GUTENBERG BLOCK STYLES FOR BLOG/HOTELS PAGES
   ============================================ */

/* Center all content */
.page-content-section .container > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Page title (H1/H2 at top of page) */
.page-content-section h1,
.page-content-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 8px;
}

.page-content-section p:first-of-type {
  text-align: center;
  color: #777;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Columns block becomes the card grid */
.wp-block-columns {
  gap: 24px !important;
  margin-bottom: 24px !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Each column becomes a card */
.wp-block-column {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.wp-block-column:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Image inside column */
.wp-block-column .wp-block-image {
  margin: 0 !important;
}
.wp-block-column .wp-block-image img {
  width: 100% !important;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

/* Group wrapper inside column (optional) */
.wp-block-column > .wp-block-group {
  padding: 20px !important;
}

/* Heading (card title) */
.wp-block-column h3,
.wp-block-column h2 {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin: 0 !important;
  padding: 20px 20px 0 !important;
  line-height: 1.35 !important;
}

/* Paragraph (card description) */
.wp-block-column p {
  font-size: 13px !important;
  color: #888 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 8px 20px 16px !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Button (Read More / etc) */
.wp-block-column .wp-block-button {
  margin: 0 !important;
  padding: 0 20px 20px !important;
}
.wp-block-column .wp-block-button__link {
  display: inline-block !important;
  padding: 8px 18px !important;
  background: #2C3E50 !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  border-radius: 100px !important;
  border: none !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
}
.wp-block-column .wp-block-button__link:hover {
  background: #34495E !important;
}

/* Page content wrapper */
.page-content-section {
  background: #fff;
  padding: 80px 24px;
}

/* ============================================
   SINGLE POST - Hide Featured Image inside post
   The Featured Image shows as card thumbnail only,
   never inside the post content.
   ============================================ */
.single-post .content-page article div > .wp-block-image:first-child,
.single-post .content-page article div > figure:first-child {
  display: none;
}

/* ============================================
   CONTENT PAGES (index, single, page, archive)
   ============================================ */
.content-page {
  max-width: 800px;
  margin: 100px auto 80px;
  padding: 0 24px;
}

.content-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 16px;
}

/* ============================================
   WOOCOMMERCE PAGES
   ============================================ */
.woocommerce-page .site-main {
  max-width: 1100px;
  margin: 100px auto 80px;
  padding: 0 24px;
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.sticky { border-left: 3px solid #2C3E50; padding-left: 1rem; }
.gallery { display: flex; flex-wrap: wrap; gap: 1rem; }
.wp-caption-text { font-size: 0.875rem; color: #777; }
/* Pagination */
.pagination, .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a, .pagination span, .nav-links a, .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  color: #555;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  transition: all 0.2s;
}
.pagination a:hover, .nav-links a:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}
.pagination .current, .nav-links .current {
  background: #2C3E50;
  color: #fff;
  border-color: #2C3E50;
}

.screen-reader-text { position: absolute; left: -9999px; }

/* ============================================
   PLANNER - COMING SOON PAGE
   ============================================ */
.planner-coming-soon {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.planner-coming-soon .planner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.planner-coming-soon .planner-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px 80px rgba(0,0,0,0.45);
  pointer-events: none;
}

.planner-coming-soon .planner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
}

.planner-coming-soon .planner-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 100px 24px 60px;
  max-width: 640px;
}

.planner-line {
  width: 40px;
  height: 1px;
  background: #fff;
  margin: 0 auto;
}

.planner-badge {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
   -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.planner-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-top: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.planner-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 16px;
  opacity: 0.9;
}

.planner-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.planner-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.planner-feature svg {
  flex-shrink: 0;
}

.planner-form-wrap {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.planner-form-label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
  opacity: 0.85;
}

.planner-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .planner-form { flex-direction: column; gap: 8px; }
}

.planner-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px 0 0 100px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.planner-input::placeholder { color: rgba(255,255,255,0.5); }

.planner-input:focus {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 480px) {
  .planner-input { border-radius: 100px; }
}

.planner-btn {
  padding: 14px 28px;
  background: #fff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 0 100px 100px 0;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.planner-btn:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.planner-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .planner-btn { border-radius: 100px; }
}

/* ============================================
   FORM MESSAGES
   ============================================ */
.planner-form-message,
.footer-subscribe-message {
  margin-top: 12px;
  font-size: 13px;
  min-height: 20px;
  transition: opacity 0.3s;
}

.planner-form-message.success,
.footer-subscribe-message.success {
  color: #27ae60;
}

.planner-form-message.error,
.footer-subscribe-message.error {
  color: #e74c3c;
}

/* Footer subscribe message positioning */
.footer-subscribe-message {
  position: absolute;
  bottom: -28px;
  right: 0;
  left: 0;
  text-align: right;
}

.footer-newsletter {
  position: relative;
}


/* ============================================
   TRAVEL TOOLKIT CARDS
   ============================================ */
.toolkit-section {
    padding: 80px 24px;
    background: #fff;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .toolkit-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .toolkit-grid { grid-template-columns: repeat(2, 1fr); }
}

.toolkit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.toolkit-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #d0d0d0;
}

.toolkit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 14px;
    margin-bottom: 16px;
    transition: background 0.3s;
}

.toolkit-card:hover .toolkit-icon {
    background: #eef2f7;
}

.toolkit-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.toolkit-card p {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   MANUAL PLANNER PAGE
   ============================================ */
.planner-page {
    padding: 100px 24px 80px;
    background: #fff;
    min-height: 100vh;
}

.planner-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Export PDF Button (top) --- */
.planner-export-top {
    text-align: center;
    margin: 32px 0;
}

.planner-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #27ae60;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}

.planner-export-btn:hover {
    background: #229954;
    transform: translateY(-1px);
}

.planner-export-btn:active {
    transform: translateY(0);
}

.planner-export-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* --- Export Button (bottom) --- */
.planner-export-bottom {
    text-align: center;
    margin: 40px 0 20px;
    padding-top: 24px;
    border-top: 1px solid #E8E8E8;
}

/* --- Trip Info Cards --- */
.planner-trip-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .planner-trip-cards { grid-template-columns: 1fr; }
}

.planner-trip-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 20px;
}

.planner-trip-card label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.planner-trip-card label .label-optional {
    font-weight: 400;
    color: #999;
    font-size: 12px;
}

.planner-trip-card input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.planner-trip-card input:focus {
    border-color: #2C3E50;
}

.planner-trip-card input::placeholder {
    color: #bbb;
}

/* Budget input with euro symbol */
.planner-budget-input {
    position: relative;
    display: flex;
    align-items: center;
}

.budget-symbol {
    position: absolute;
    left: 14px;
    font-size: 14px;
    color: #888;
    pointer-events: none;
}

.planner-budget-input input {
    padding-left: 32px;
}

/* --- Day Card --- */
.planner-day {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.planner-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.planner-day-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.planner-day-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.planner-day-meta input[type="date"] {
    padding: 6px 10px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    color: #555;
    outline: none;
}

.day-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0.4;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}

.day-delete-btn:hover { opacity: 0.8; }

/* --- Activity Row --- */
.planner-activity {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    animation: fadeIn 0.2s ease;
}

.planner-activity:last-child { border-bottom: none; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.activity-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 10px;
    flex-shrink: 0;
}

.activity-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.activity-fields input {
    padding: 10px 12px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
    background: #fafafa;
}

.activity-fields input:focus {
    border-color: #2C3E50;
    background: #fff;
}

.activity-fields input::placeholder {
    color: #bbb;
}

.activity-fields input.activity-title {
    font-weight: 500;
}

.activity-fields input.activity-details {
    font-size: 13px;
    color: #666;
}

.activity-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    opacity: 0.35;
    transition: opacity 0.2s;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Flight Activity Fields --- */
.flight-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flight-route {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}

.flight-route svg {
    flex-shrink: 0;
}

.flight-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

@media (max-width: 600px) {
    .flight-meta {
        grid-template-columns: 1fr;
    }
}

/* --- Hotel Activity Fields --- */
.hotel-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.hotel-date-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hotel-date-field label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hotel-date-field input[type="date"] {
    padding: 10px 12px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #1a1a1a;
    background: #fafafa;
    outline: none;
}

.hotel-nights {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
    min-width: 60px;
}

.hotel-nights label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nights-count {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    padding: 10px 4px;
    text-align: center;
}

/* --- Export Modal --- */
.planner-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.planner-modal-overlay.open {
    display: flex;
}

.planner-modal {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px 28px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.planner-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.planner-modal-close:hover { color: #333; }

.planner-modal h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.planner-modal-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.5;
}

.planner-modal-price {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
}

.planner-modal-price.free {
    background: #eafaf1;
}

.planner-modal-price .price-amount {
    font-size: 28px;
    font-weight: 600;
    color: #2C3E50;
    display: block;
}

.planner-modal-price.free .price-amount {
    color: #27ae60;
}

.planner-modal-price .price-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.planner-modal-field {
    margin-bottom: 16px;
}

.planner-modal-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.planner-modal-field label .label-optional {
    font-weight: 400;
    color: #999;
    font-size: 12px;
}

.planner-modal-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.planner-modal-field input:focus {
    border-color: #2C3E50;
}

.voucher-hint {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    margin-bottom: 0;
}

.planner-modal-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.planner-modal-message {
    text-align: center;
    font-size: 13px;
    min-height: 20px;
    margin-top: 12px;
    transition: opacity 0.3s;
}

.planner-modal-message.success { color: #27ae60; }
.planner-modal-message.error { color: #e74c3c; }

/* --- 3-column trip cards (Name, Budget, Persons) --- */
.planner-trip-cards {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 600px) {
    .planner-trip-cards {
        grid-template-columns: 1fr;
    }
    .hotel-row {
        grid-template-columns: 1fr;
    }
    .flight-route {
        grid-template-columns: 1fr;
    }
    .flight-route svg {
        display: none;
    }
}

/* --- Add Activity Button (dashed) --- */
.planner-add-activity-wrap {
    position: relative;
    margin-top: 8px;
}

.planner-add-activity-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    border: 1.5px dashed #ccc;
    border-radius: 8px;
    color: #777;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.planner-add-activity-btn:hover {
    border-color: #2C3E50;
    color: #2C3E50;
    background: #f8f9fa;
}

/* --- Activity Type Dropdown Menu --- */
.activity-type-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 6px;
    z-index: 100;
    min-width: 200px;
    animation: menuIn 0.15s ease;
}

@keyframes menuIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.activity-type-menu.open {
    display: block;
}

.activity-type {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    transition: background 0.12s;
    font-family: inherit;
}

.activity-type:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

/* --- Add Another Day Button --- */
.planner-add-day-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 16px 0 40px;
    padding: 16px;
    background: #e8f4fd;
    border: 1.5px dashed #a0c4e8;
    border-radius: 10px;
    color: #2C3E50;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.planner-add-day-btn:hover {
    background: #d0e8f8;
    border-color: #2C3E50;
}

/* --- Form Message --- */
.planner-form-message {
    text-align: center;
    font-size: 14px;
    min-height: 22px;
    margin-top: 12px;
    transition: opacity 0.3s;
}

.planner-form-message.success {
    color: #27ae60;
}

.planner-form-message.error {
    color: #e74c3c;
}

/* ============================================
   VISA CHECKER PAGE
   ============================================ */
.visa-page {
    padding: 100px 24px 80px;
    background: #fff;
    min-height: 100vh;
}

.visa-form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visa-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.visa-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.visa-field select:focus { border-color: #2C3E50; }

.visa-check-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #2C3E50;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.visa-check-btn:hover { background: #34495E; }

.visa-result { display: none; margin-top: 24px; }

.visa-result-box {
    padding: 28px;
    border-radius: 12px;
    text-align: center;
}

.visa-result-box.visa-free {
    background: #eafaf1;
    border: 1px solid #c3e6cb;
}

.visa-result-box.visa-required {
    background: #fff3f3;
    border: 1px solid #f5c6cb;
}

.visa-result-box.visa-error {
    background: #fff8e1;
    border: 1px solid #f0e0a0;
    color: #856404;
}

.visa-result-icon { margin-bottom: 12px; }

.visa-result-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
}

.visa-result-box.visa-free h3 { color: #155724; }
.visa-result-box.visa-required h3 { color: #721c24; }

.visa-destination-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.visa-notes {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    max-width: 480px;
    margin: 0 auto;
}

.visa-apply-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: #2C3E50;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.visa-apply-link:hover { background: #34495E; }

/* ============================================
   1-TO-1 BOOKING PAGE
   ============================================ */
.booking-page {
    padding: 100px 24px 80px;
    background: #fff;
    min-height: 100vh;
}

.booking-form {
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: #2C3E50;
}

/* Duration Tiers */
.booking-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .booking-tiers { grid-template-columns: repeat(2, 1fr); }
}

.booking-tier {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    background: #fff;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-tier:hover {
    border-color: #2C3E50;
}

.booking-tier input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.booking-tier:has(input:checked) {
    border-color: #2C3E50;
    background: #f8f9fa;
}

.tier-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 10px;
    background: #2C3E50;
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 100px;
    white-space: nowrap;
}

.tier-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 8px;
}

.tier-subtitle {
    font-size: 11px;
    color: #999;
    margin: 2px 0 8px;
}

.tier-price {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
}

/* Contact Methods */
.booking-contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
}

.contact-method:has(input:checked) {
    border-color: #2C3E50;
    background: #f8f9fa;
    color: #1a1a1a;
}

.contact-method input { display: none; }

/* Submit Button */
.booking-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: #2C3E50;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.booking-submit-btn:hover { background: #34495E; }

.booking-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#booking-total {
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
}

.booking-message {
    text-align: center;
    font-size: 14px;
    min-height: 24px;
    margin-top: 16px;
}

.booking-message.success { color: #27ae60; }
.booking-message.error { color: #e74c3c; }

/* ============================================
   ITINERARY VIEWER PAGE
   ============================================ */
.itinerary-page {
    padding: 100px 24px 80px;
    background: #fff;
    min-height: 100vh;
}

.itinerary-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8E8E8;
}

.itinerary-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.itinerary-budget {
    font-size: 15px;
    color: #888;
    margin-bottom: 20px;
}

.itinerary-actions {
    margin-top: 16px;
}

/* Day Block */
.itinerary-day {
    margin-bottom: 32px;
    padding: 24px;
    background: #fafafa;
    border-radius: 12px;
}

.itinerary-day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.itinerary-day-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.itinerary-day-date {
    font-size: 13px;
    color: #999;
}

/* Activity */
.itinerary-activity {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.itinerary-activity:last-child { border-bottom: none; }

/* Flight & Hotel display in online viewer */
.itinerary-flight-route {
    font-size: 14px;
    color: #555;
    margin: 2px 0;
}

.itinerary-flight-meta {
    font-size: 13px;
    color: #888;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 2px 0;
}

.itinerary-hotel-dates {
    font-size: 14px;
    color: #555;
    margin: 2px 0;
}

.itinerary-nights-badge {
    display: inline-block;
    padding: 2px 10px;
    background: #f0f0f0;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: #2C3E50;
    margin-left: 8px;
}

.itinerary-activity-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.itinerary-activity-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.itinerary-activity-content p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.itinerary-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #E8E8E8;
    font-size: 13px;
    color: #999;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cart-panel,
    .cart-overlay,
    .itinerary-actions {
        display: none !important;
    }

    .itinerary-page {
        padding: 0;
    }

    .itinerary-day {
        background: #fff;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* Spinner animation for save button */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
