/*
Theme Name: Twenty Twenty-Four
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.0
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfour
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

.safari-swiper .swiper-slide {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

.safari-swiper .swiper-slide:hover {
    transform: translateY(-5px);
}

.safari-swiper {
    padding: 20px 0;
}

.safari-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4E3629;
    margin-bottom: 0.5rem;
}

.safari-location {
    font-size: 0.95rem;
    color: #8a5c3a;
    margin-bottom: 0.5rem;
}

.safari-price {
    font-size: 1rem;
    font-weight: 600;
    color: #6d3f2f;
    margin-bottom: 0.5rem;
}

.safari-highlights {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.safari-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.explore-button {
    background: #CDAA7D;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-bottom: 12px; /* Adjust as needed */
    position: relative;
    bottom: 0;
}

.explore-button:hover {
    background: #a57d54;
}
  .swiper-container {
    max-width: 100%;
    overflow: hidden;
  }

  .swiper-slide {
    box-sizing: border-box;
    max-width: 100%;
  }

  .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .swiper-slide > * {
    width: 100%;
  }

  body {
    overflow-x: hidden;
  }
/* Filter Styles */
.review-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0;
  gap: 10px;
  font-family: 'Arial', sans-serif;
}

.review-filter label {
  font-weight: bold;
  color: #333;
}

.review-filter select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}
.review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-info .flag {
  width: 32px;
  height: 24px;
  border-radius: 4px;
}

.country {
  font-size: 0.85em;
  color: #666;
}

.rating-stars {
  font-size: 1.2em;
  color: #e0b000;
}

.review-dates {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 12px;
}

.review-body {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-actions button {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.95em;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.3s;
}

.like-btn {
  background-color: #d9f5d9;
  color: #2d662d;
}

.dislike-btn {
  background-color: #fce5e5;
  color: #993333;
}

.like-btn:hover {
  background-color: #b3e6b3;
}

.dislike-btn:hover {
  background-color: #f7c2c2;
}
/* === Safari Custom Slider === */
.safari-custom-slider {
  padding: 2rem 0;
}

.safari-custom-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  box-sizing: border-box;
  height: 100%;
}

.safari-custom-slider .safari-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.safari-custom-slider .safari-card:hover {
  transform: translateY(-4px);
}

.safari-custom-slider .safari-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.safari-custom-slider .safari-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safari-custom-slider .safari-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  padding: 1rem 1rem 0.5rem;
}

.safari-custom-slider .safari-location {
  color: #8a775f;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 1rem;
}

.safari-custom-slider .safari-highlights {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #444;
  flex-grow: 1;
}

.safari-custom-slider .safari-highlights strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #333;
}

.safari-custom-slider .safari-price {
  font-weight: 600;
  color: #ba7c3a;
  padding: 0.5rem 1rem;
}

.safari-custom-slider .explore-button {
  margin: 1rem;
  padding: 0.5rem 1rem;
  background: #8a775f;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  align-self: flex-start;
}

.safari-custom-slider .explore-button:hover {
  background-color: #6b5d4a;
}

.safari-custom-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.safari-custom-slider .swiper-button-prev,
.safari-custom-slider .swiper-button-next {
  color: #8a775f;
}
