/* ===========================================
   NEOTUR - Main Stylesheet
   =========================================== */

/* Variables CSS */
:root {
    --primary-color: #68b632;  /* Verde Neo */
    --secondary-color: #373a3c;
    --dark-color: #333333;
    --gray-color: #666666;     /* Gris tur */
    --light-color: #f2f2f2;
    --text-color: #666666;
    --border-color: #dcdcdc;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #9d9d9d;
    --black-color: #000000;
    --white-color: #ffffff;
    --primary-color-hover: #45a049;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1;
}

body {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.3;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 {font-size: 1.1rem;}

p {margin-bottom: 15px;}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

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



/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-white {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-outline-white:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

/* Header Styles */
.main-header {
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

.social-links a {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

html .logo img {
    height: 60px;
    width: auto;
}

.logo .tagline {
    font-size: 12px;
    color: var(--primary-color);
    font-style: italic;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 10px;
    position: relative;
    text-transform: uppercase;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: var(--shadow-hover);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--dark-color);
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon Buttons - Uniform Style */
.header-actions .icon-btn {
    background: none;
    border: none;
    color: var(--gray-color);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.header-actions .icon-btn:hover {
    color: var(--primary-color);
    background: rgba(124, 179, 66, 0.1);
}

/* WhatsApp Icon - Green Color */
.header-actions .whatsapp-btn {
    color: #25D366;
}

.header-actions .whatsapp-btn:hover {
    color: white;
    background: #25D366;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger-color);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

/* Animación para convertir hamburguesa en X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    font-size: 1.1rem;
}

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

.hero-meta i {
    color: var(--primary-color);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.hero-controls button {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.hero-controls button:hover {
    background-color: rgba(255,255,255,0.3);
}

/* Search Section */
.search-section {
    background-color: var(--light-color);
    padding: 80px 0;
    /* margin-top: -50px; */
    position: relative;
    z-index: 10;
}

.search-box {
    /* background-color: white; */
    /* padding: 30px; */
    /* border-radius: 10px; */
    /* box-shadow: var(--shadow-hover); */
}

.search-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.search-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
}

/* Featured Tours Section */
.featured-tours {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.tours-grid {
    display: grid;
    margin-bottom: 40px;
}

/* Tour Card */
.tour-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tour-image {
    position: relative;
    height: auto;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.tour-image img {
    width: 100%;
    height: 100%!important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--danger-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.tour-badge.hot {
    background-color: var(--warning-color);
    color: var(--dark-color);
}

.tour-badge.new {
    background-color: var(--info-color);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-content {
    padding: 1rem;
}

.tour-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tour-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.tour-content h3 a {    color: var(--dark-color);}
.tour-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    /* line-height: 1.5; */
}

.tour-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-color);
    flex-flow: column;
}
.fechas_salida_card {
    max-height: 3.6em;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 12px;
    line-height: 1.2em;
    min-height: 2.4em;
}
.fechas_salida_card span {
    border-right: 2px solid #d8d8d8;
    padding-right: 7px;
}
.fechas_salida_card span:last-child {
    border: 0;
    padding: 0;
}
.tour-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-flow: column;
    gap: 0.5rem;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--text-color);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.banners_promociones {padding-top: 40px;}
.banner_promocion {}
.banner_promocion a {display: block;}
.banner_promocion img {
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 6.24 / 5.40;
}
.product-brand-info {
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 3;
    display: block;
    width: 100%;
    text-align: center;
}
.product-brand-info img {
    width: 140px;
    height: auto;
    max-width: 75%;
}
span.brand-name {
    position: absolute;
    /* top: 10px; */
    left: 0px;
    background: var(--primary-color);
    color: var(--white-color);
    line-height: 1em;
    /* display: none; */
    padding: 5px 7px;
    z-index: 3;
    font-size: 12px;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-color);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 35px;
}

.feature-item h3 {
    margin-bottom: 15px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    overflow: visible;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-date {
    color: var(--text-color);
}

.blog-category {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.blog-content p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

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

/* Newsletter Section */
.newsletter {
    background-color: var(--dark-color);
    padding: 40px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text h3 {
    color: white;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #ccc;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column {}


.footer-column h4 {
    color: var(--white-color);
    margin-bottom: 1.2rem;
}
 .footer-column p {
    margin-bottom: 1rem;
}
.footer-column .social-links {
    display: flex;
    gap: 1rem;
}
.footer-column .social-links a {
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo {}
html .footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-logo .tagline {
    color: var(--primary-color);
    font-style: italic;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--light-color);
}

.footer-column a:hover {
    color: var(--primary-color);
}
.footer-column .contact-info {
  margin-bottom: 1rem;
}
.footer-column .contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.payment-methods-footer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

/* =========================================== 
   FOOTER IMPROVEMENTS
   =========================================== */



.payment-logo.webpay {
    height: 35px;
    width: auto;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.payment-logo.webpay:hover {
    filter: brightness(1.1);
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.payment-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.payment-icon span {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icon.webpay {
    background: white;
    padding: 5px 10px;
}

.payment-icon.webpay img {
    height: 30px;
    width: auto;
}



/* Better footer bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 0 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    text-align: center;
}

.footer-bottom p:last-child {
    font-size: 14px;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #20BD5C;
    transform: scale(1.1);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 998;
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}


/* ===========================================
   WooCommerce Styles
   =========================================== */

/* Cart Styles */
.cart-section {
    padding: 60px 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.cart-table-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: var(--light-color);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--border-color);
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-item-product {
    min-width: 300px;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.product-details h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.product-category,
.product-date {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.cart-item-price .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.quantity-input {
    width: 60px;
    height: 35px;
    border: 1px solid var(--border-color);
    text-align: center;
    border-left: none;
    border-right: none;
}

.cart-item-subtotal .subtotal {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.remove-item {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    background: #c82333;
    transform: scale(1.1);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.coupon-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.coupon-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.coupon-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.coupon-info {
    color: var(--text-color);
    font-size: 14px;
}

.cart-sidebar {
    position: sticky;
    top: 100px;
}

.cart-totals {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.cart-totals h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.total-row:last-child {
    border-bottom: none;
}

.total-final {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    border-top: 2px solid var(--border-color);
    margin-top: 10px;
    padding-top: 20px;
}

.discount-row .total-value {
    color: var(--success-color);
}

.shipping-options {
    margin-top: 10px;
}

.shipping-option {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-color);
}

.shipping-option input {
    margin-right: 8px;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 20px;
}

.payment-security {
    text-align: center;
    margin-bottom: 20px;
}

.security-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--success-color);
}



.cart-help {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.cart-help h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cart-help p {
    margin-bottom: 15px;
    font-size: 14px;
}

.cart-help .btn {
    width: 100%;
    margin-bottom: 10px;
}

.btn-whatsapp {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
}

.btn-whatsapp:hover {
    background-color: #20BD5C !important;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.empty-cart p {
    margin-bottom: 30px;
    color: var(--text-color);
}

.related-products {
    background: var(--light-color);
    padding: 60px 0;
}

/* Checkout Styles */
.checkout-section {
    padding: 60px 0;
}

.checkout-steps-section {
    background: var(--light-color);
    padding: 30px 0;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition);
}

.step.active,
.step.completed {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--border-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary-color);
}

.step.completed .step-number {
    background: var(--success-color);
}

.step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.step-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin-top: 20px;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.checkout-block {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.checkout-block-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.order-review {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.order-review h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    flex-shrink: 0;
}

.order-item-image img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
}

.order-item-details h4 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.item-meta,
.item-date {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
}

.item-quantity {
    font-size: 12px;
    color: var(--text-color);
    margin-top: 5px;
}

.order-item-total {
    margin-left: auto;
    font-weight: 600;
    color: var(--primary-color);
}

.order-totals {
    margin-bottom: 25px;
}

.place-order-btn {
    width: 100%;
    margin-bottom: 20px;
}

.security-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--light-color);
    border-radius: 5px;
    font-size: 12px;
    color: var(--text-color);
}

.security-badge i {
    color: var(--success-color);
}

.shipping-address {
    margin-top: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}


.payment-method {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.payment-method:hover {
    border-color: var(--primary-color);
}

.payment-method-label {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    cursor: pointer;
    margin: 0;
}

.payment-method-radio {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 2px;
    position: relative;
    transition: var(--transition);
}

.payment-method input:checked + .payment-method-radio {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.payment-method input:checked + .payment-method-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.payment-method-content {
    flex: 1;
}

.payment-method-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.payment-method-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

.payment-method-details {
    padding: 20px;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
    display: none;
}

.bank-details h5 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bank-info p {
    margin: 5px 0;
    font-size: 14px;
}

.terms-conditions,
.newsletter-signup {
    margin-bottom: 15px;
}

.terms-label,
.newsletter-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.4;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.trust-indicators {
    background: var(--light-color);
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.trust-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-item h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.trust-item p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
}

/* Account Styles */
.account-section {
    padding: 60px 0;
}

.account-forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-header p {
    color: var(--text-color);
    font-size: 14px;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 16px;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-strength {
    margin-top: 5px;
}

.password-strength-bar {
    height: 3px;
    background: var(--border-color);
    border-radius: 2px;
    margin-bottom: 5px;
}

.password-hint {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.forgot-password {
    font-size: 14px;
    color: var(--primary-color);
}

.forgot-password:hover {
    text-decoration: underline;
}

.social-login {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.social-login p {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 14px;
}

.social-buttons {
    display: grid;
    gap: 10px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-facebook {
    border-color: #1877F2;
    color: #1877F2;
}

.btn-facebook:hover {
    background: #1877F2;
    color: white;
}

.btn-google {
    border-color: #DB4437;
    color: #DB4437;
}

.btn-google:hover {
    background: #DB4437;
    color: white;
}

.form-checkboxes {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    line-height: 1.4;
    font-size: 14px;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.dashboard-sidebar {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.user-info {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 35px;
}

.user-details h3 {
    margin: 0 0 5px 0;
    color: white;
}

.user-email {
    margin: 0 0 5px 0;
    font-size: 14px;
    opacity: 0.9;
}

.user-since {
    font-size: 12px;
    opacity: 0.8;
}

.dashboard-nav {
    padding: 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    color: var(--dark-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--light-color);
    color: var(--primary-color);
}

.nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.badge {
    background: var(--danger-color);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.logout-link {
    color: var(--danger-color) !important;
}

.logout-link:hover {
    background: #fff5f5 !important;
}

.dashboard-content {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-height: 600px;
}

.dashboard-section {
    display: none;
    padding: 40px;
}

.dashboard-section.active {
    display: block;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.stat-content h3 {
    margin: 0 0 5px 0;
    font-size: 2rem;
    color: var(--dark-color);
}

.stat-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
}

.recent-activity h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.activity-list {
    display: grid;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.activity-content p {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.activity-date {
    font-size: 12px;
    color: var(--text-color);
}

.orders-table-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    background: var(--light-color);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--border-color);
}

.orders-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-info strong {
    color: var(--primary-color);
}

.order-info p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: var(--text-color);
}

.status-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #cce5ff;
    color: #004085;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.booking-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.booking-card:hover {

    box-shadow: var(--shadow-hover);
}

.booking-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-status {
    position: absolute;
    top: 15px;
    right: 15px;
}

.booking-content {
    padding: 20px;
}

.booking-content h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.booking-details {
    margin-bottom: 20px;
}

.booking-details p {
    margin: 5px 0;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-details i {
    color: var(--primary-color);
    width: 16px;
}

.booking-actions {
    display: flex;
    gap: 10px;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.address-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.address-card:hover {
    border-color: var(--primary-color);
}

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

.address-header h4 {
    margin: 0;
    color: var(--dark-color);
}

.address-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.address-badge.default {
    background: var(--primary-color);
    color: white;
}

.address-content p {
    margin: 5px 0;
    font-size: 14px;
    color: var(--text-color);
}

.address-content strong {
    color: var(--dark-color);
}

.address-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.text-danger {
    color: var(--danger-color) !important;
}

.account-details-form {
    background: white;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wishlist-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.wishlist-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    color: var(--danger-color);
    cursor: pointer;
    transition: var(--transition);
}

.remove-wishlist:hover {
    background: var(--danger-color);
    color: white;
}

.wishlist-content {
    padding: 20px;
}

.wishlist-content h4 {
    margin-bottom: 8px;
    color: var(--dark-color);
}

.wishlist-content .tour-category {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.wishlist-content .tour-price {
    margin-bottom: 15px;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
}

/* Shop Styles */
.shop-section {
    padding: 60px 0;
}

.shop-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.shop-sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.product-search,
.product-filter {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.product-search:last-child,
.product-filter:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-search h4,
.product-filter h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1rem;
}

.search-input-group {
    display: flex;
    gap: 5px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

/* Search Button in Filters - Tour Page */
.filter-sidebar .search-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.filter-sidebar .search-btn:hover {
    background: var(--secondary-color);
}

.price-range {
    margin-bottom: 20px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

.price-separator {
    color: var(--text-color);
}

.filter-apply-btn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

.price-presets {
    display: grid;
    gap: 8px;
}

.price-preset-btn {
    padding: 8px 12px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-size: 14px;
}

.price-preset-btn:hover,
.price-preset-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-checkboxes {
    display: grid;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 0;
    font-size: 14px;
}

.filter-checkbox input {
    display: none;
}

.filter-checkbox .checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    position: relative;
}

.filter-checkbox input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-checkbox input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.filter-label {
    flex: 1;
    color: var(--dark-color);
}

.filter-count {
    color: var(--text-color);
    font-size: 12px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    padding: 6px 12px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 12px;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-tag i {
    margin-right: 5px;
}

.filter-actions {
    margin-top: 30px;
}

.clear-filters-btn {
    width: 100%;
    padding: 10px;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.shop-results {
    color: var(--text-color);
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-toggle {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.view-btn {
    padding: 8px 12px;
    background: white;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: white;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: white;
    font-size: 14px;
    min-width: 200px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.shop-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.shop-list .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.shop-list .product-image {
    height: 150px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-badge.sale {
    background: var(--danger-color);
    color: white;
}

.product-badge.featured {
    background: var(--warning-color);
    color: var(--dark-color);
}

.product-badge.popular {
    background: var(--info-color);
    color: white;
}

.product-badge.new {
    background: var(--success-color);
    color: white;
}

.product-badge.adventure {
    background: var(--secondary-color);
    color: white;
}

.product-badge.exclusive {
    background: #6f42c1;
    color: white;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-action {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
}

.product-action:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-title {
    margin-bottom: 15px;
}

.product-title a {
    color: var(--dark-color);
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-description {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color);
}

.product-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
}

.rating-text {
    font-size: 14px;
    color: var(--text-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-original {
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: line-through;
}

.add-to-cart-btn {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.shop-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.pagination-nav {
    display: flex;
    gap: 10px;
}

.pagination-btn {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
}

.pagination-btn:hover:not(:disabled),
.pagination-btn.current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.pagination-info {
    color: var(--text-color);
    font-size: 14px;
}

/* General Page Styles */
.tours-page {
    padding: 60px 0;
}

.tours-page-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.webpay-logo {
    height: 30px;
}

.highlighted-info {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.price-info-box {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.price-info-title {
    color: var(--primary-color);
}

.price-discount-note {
    color: var(--danger-color);
}

.tour-highlights {
    margin: 30px 0;
}

.tour-highlights-list {
    list-style: none;
    padding: 0;
}

.tour-highlights-item {
    padding: 10px 0;
}

.tour-highlights-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

.includes-excludes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.includes-title,
.excludes-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.includes-icon {
    color: var(--success-color);
}

.excludes-icon {
    color: var(--danger-color);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table-header {
    background: var(--light-color);
}

.pricing-table-cell {
    padding: 10px;
    border: 1px solid var(--border-color);
}

.pricing-table-cell-right {
    text-align: right;
}

.important-notes {
    margin-top: 30px;
    padding: 20px;
    background: var(--warning-color);
    border-radius: 10px;
}

.payment-info {
    background: #d4edda;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.payment-highlight {
    font-size: 1.2em;
    color: #155724;
}

.booking-form {
    margin-top: 20px;
}

.booking-form-group {
    margin-bottom: 15px;
}

.booking-form-label {
    display: block;
    margin-bottom: 5px;
}

.booking-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.booking-btn-fullwidth {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.help-section {
    margin: 20px 0;
}

.help-text {
    margin-bottom: 10px;
}

.help-btn-fullwidth {
    width: 100%;
}

.disclaimer {
    margin-top: 20px;
    padding: 15px;
    background: var(--warning-color);
    border-radius: 5px;
}

.disclaimer-text {
    margin: 0;
    font-size: 14px;
}

.related-tours-bg {
    background: var(--light-color);
    padding: 60px 0;
}

.related-tours-title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-method-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.whatsapp-color {
    color: #25D366;
}

.facebook-color {
    color: #1877F2;
}

.instagram-color {
    color: #E4405F;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-method-card {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.payment-method-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.terms-checkbox {
    margin-bottom: 20px;
}

.terms-checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.terms-checkbox-input {
    margin-right: 10px;
}

.terms-link {
    color: var(--primary-color);
}

.submit-center {
    text-align: center;
}

.contact-alternatives-bg {
    padding: 60px 0;
    background-color: var(--light-color);
}

.contact-alternatives-title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-office-bg {
    padding: 60px 0;
}

.contact-office-title {
    text-align: center;
    margin-bottom: 40px;
}

/* ===========================================
   Páginas Internas - Estilos Adicionales
   =========================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
    padding: 50px 0 50px;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url(https://www.neotur.cl/wp-content/uploads/2025/08/isla-aucar.jpg) top center / cover fixed;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .75;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}

.breadcrumb li {
    color: rgba(255,255,255,0.8);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: white;
}

/* Tours Archive Page */
.tours-filters {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tours-results {
    margin-bottom: 40px;
}

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

.sort-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: white;
}

/* Tour Detail Page */

.tour-detalles {padding: 60px 0;}
.tour-detail-header {

}

.single-tour .tour-gallery {
  overflow: hidden;
  margin-bottom: 0;
}

.single-tour .main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    margin-bottom: 10px;
}

.single-tour .gallery-thumbs {
    display: flex;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.single-tour .gallery-thumb {
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    width: calc(100% / 6);
    aspect-ratio: 3 / 2;
}

.single-tour .gallery-thumb:hover,
.single-tour .gallery-thumb.active {
    border-color: var(--primary-color);
    transform: none;
}

.single-tour .tour-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 2rem;
}

.single-tour .tour-main-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    grid-column: 1 / 3;
}

.single-tour .tour-sidebar {
    height: fit-content;
    grid-column: 3 / 4;
}

.single-tour .booking-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.price-display {
    margin-bottom: 20px;
}

.price-from {
    font-size: 14px;
    color: var(--text-color);
}

.price-amount {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.price-person {
    font-size: 14px;
    color: var(--text-color);
}

.tour-tabs {

}

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
.tab-content ul {
  padding: 0;
  margin-bottom: 1rem;
  list-style: none;
}
.tab-content ul li {
 padding: 0;
 padding-left: 15px;
 position: relative;
 margin-bottom: 15px;
}
.tab-content ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-weight: bold;
}

.tab-content ol {
  padding: 0;
  margin-bottom: 1rem;
  padding-left: 15px;
}
.tab-content ol li {
 padding: 0;

 position: relative;
 margin-bottom: 15px;
}

.single-tour .itinerary-day {
    margin-bottom: 30px;

}
.single-tour .itinerary-day h3 {
    background: var(--primary-color);
    width: fit-content;
    border-radius: 5px;
    padding: 8px 12px;
    color: var(--white-color);
    line-height: 1em;
    text-transform: uppercase;
    font-size: 18px;
}

.tab-content .includes-list,
.tab-content .not-includes-list {
    list-style: none;
    padding: 0;
}

.tab-content .includes-list li,
.tab-content .not-includes-list li {

}

.tab-content .includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tab-content .not-includes-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: bold;
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
}

.contact-form-section {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* About Page */
.about-intro {

}

.about-content {
    display: grid;
    grid-template-columns: auto;
    gap: 1rem;
    align-items: center;
}

.about-text {
    grid-column: 1 / 3;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    grid-column: 3 / 3;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-card {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
}

/* FAQ Page */
.faq-section {
   
}

.faq-item {
    overflow: hidden;
    border-bottom: 1px solid #dadada;
}

.faq-question {
    padding: 20px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
}

.faq-icon {
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .6s ease;
    margin: 0;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.faq-item.active .faq-answer {
    padding: 0 10px 20px;
    max-height: 500px;
    transition: .6s ease;
}

/* Terms & Conditions */
.terms-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.terms-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.terms-content h3 {
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content ul {
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
}

.terms-content ul li {
    padding: 0;
    padding-left: 15px;
    position: relative;
    margin-bottom: 15px;
}
.terms-content ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-weight: bold;
}
/* Checkout Process */
.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background-color: var(--success-color);
    color: white;
}

.step-line {
    width: 100px;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 20px;
}

.step.completed + .step-line {
    background-color: var(--success-color);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Additional Tour Page Styles */
.tour-detail {
    padding: 60px 0;
}

.tour-highlights {
    margin: 30px 0;
}

.tour-highlights-list {
    list-style: none;
    padding: 0;
}

.tour-highlights-item {
    padding: 10px 0;
}

.tour-highlights-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}





.pricing-info {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.pricing-info h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-discount {
    color: var(--danger-color);
    font-weight: bold;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table tr:nth-child(even) {
    background: var(--light-color);
}

.pricing-table td {
    padding: 10px;
    border: 1px solid var(--border-color);
}

.pricing-table td:last-child {
    text-align: right;
}

.important-note {
    margin-top: 30px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 10px;
}

.reservation-highlight {
    background: #d4edda;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.reservation-amount {
    font-size: 1.2em;
    color: #155724;
    font-weight: bold;
}

.payment-steps {
    line-height: 2;
    padding: 0;
    margin: 20px 0;
}

.contact-info-section {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.single-tour .booking-form {
    margin-top: 20px;
}

.single-tour .form-group {
    margin-bottom: 1rem;
}

.single-tour .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.single-tour .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

.booking-actions {
    margin-top: 20px;
    text-align: center;
}

.booking-help {
    margin-bottom: 10px;
}

.booking-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 5px;
    font-size: 14px;
}

.related-tours-section {
    background: var(--light-color);
    padding: 60px 0;
}

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

/* Day Number Styling */
.day-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

/* Full width buttons */
.btn-full-width {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .whatsapp-float,
    .back-to-top,
    .booking-card,
    .cta-section,
    .newsletter {
        display: none !important;
    }
    
    .tour-info-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 30px 0;
        background: none;
        color: var(--dark-color);
    }
    
    .page-header h1 {
        color: var(--dark-color);
    }
}
/* ===========================================
   HEADER DROPDOWNS & MODAL
   =========================================== */

/* Dropdown Wrappers */
.user-dropdown-wrapper,
.cart-dropdown-wrapper {
    position: relative;
}


/* Dropdowns Base */
.user-dropdown,
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: -10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.user-dropdown.active,
.cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* User Dropdown */
.user-dropdown {
    width: 250px;
}

.user-dropdown .dropdown-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.user-dropdown .dropdown-header h4 {
    margin: 0;
    font-size: 16px;
    color: var(--dark-color);
}

.user-dropdown .dropdown-content {
    padding: 10px 0;
}

.user-dropdown .dropdown-content a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.user-dropdown .dropdown-content a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.user-dropdown .dropdown-content a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.user-dropdown .dropdown-content hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.user-dropdown .logout-link {
    color: var(--danger-color) !important;
}

/* Cart Dropdown */
.cart-dropdown {
    width: 380px;
}

.cart-dropdown .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-dropdown .dropdown-header h4 {
    margin: 0;
    font-size: 16px;
}

.cart-dropdown .cart-items-count {
    font-size: 14px;
    color: var(--gray-color);
}

.cart-dropdown .cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px 0;
}

.cart-dropdown .cart-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.cart-dropdown .cart-item:last-child {
    border-bottom: none;
}

.cart-dropdown .cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.cart-dropdown .item-details {
    flex: 1;
}

.cart-dropdown .item-details h5 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.cart-dropdown .item-meta {
    font-size: 12px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.cart-dropdown .item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.cart-dropdown .remove-item {
    background: none;
    border: none;
    color: var(--gray-color);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.cart-dropdown .remove-item:hover {
    color: var(--danger-color);
}

.cart-dropdown .cart-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--light-color);
    border-radius: 0 0 10px 10px;
}

.cart-dropdown .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.cart-dropdown .cart-total strong {
    color: var(--primary-color);
    font-size: 20px;
}

.cart-dropdown .cart-actions {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    box-shadow: none;
    background: none;
    border-radius: 0;
}

.cart-dropdown .cart-actions .btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.search-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-content {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    position: relative;
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
    z-index: 1;
}

.close-modal:hover {
    color: var(--dark-color);
    transform: rotate(90deg);
}

.search-modal-body {
    padding: 1rem;
}

.search-modal-body h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.search-form {
    /* margin-bottom: 40px; */
}

.search-input-wrapper {
    display: flex;
    background: var(--light-color);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: none;
    font-size: 14px;
    outline: none;
}

.search-submit {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0 30px;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: #6a9b37;
}

.search-suggestions {
    margin-bottom: 30px;
}

.search-suggestions h4 {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

.quick-categories h4 {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.category-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.category-item i {
    font-size: 24px;
    margin-bottom: 8px;
}

.category-item span {
    font-size: 14px;
    text-align: center;
}

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

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
}

/* =========================================== 
   HEADER ICONS FIX
   =========================================== */

/* Ensure header actions are visible */
.header-actions {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

/* Icon buttons reset */
.header-actions .icon-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--gray-color);
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.header-actions .icon-btn:hover {
    color: var(--primary-color);
    background: rgba(124, 179, 66, 0.1);
}

/* Cart specific */
.cart-dropdown-wrapper {
    position: relative;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Dropdown wrappers */
.user-dropdown-wrapper,
.cart-dropdown-wrapper {
    position: relative;
    display: inline-block;
}



/* =========================================== 
   BLOG CARDS IMPROVEMENTS
   =========================================== */

/* Better blog cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    flex: 1;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: var(--secondary-color);
}

/* =========================================== 
   BLOG CAROUSEL
   =========================================== */

.blog-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin-bottom: 40px;
}

.blog-carousel {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.blog-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.blog-carousel .blog-card {
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    flex: 0 0 calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
}

/* Carousel Controls */
.blog-carousel-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.blog-carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.blog-prev {
    left: 0;
}

.blog-next {
    right: 0;
}

/* Carousel Dots */
.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-carousel-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Page Styles */

.page-section-normal {padding: 60px 0;}
.page-section-normal ul {
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
    text-align: left;
}

.page-section-normal ul li {
    padding: 0;
    padding-left: 15px;
    position: relative;
    margin-bottom: 15px;
}
.page-section-normal ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-weight: bold;
}
.page-section-normal .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Carrito Style */

.cart-section {
    padding: 60px 0;
}

.cart-section .cart-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}
.cart-section .cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    /* flex-flow: column; */
    gap: 1rem;
}

/* Checkout Style */

.checkout-section .payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* font-size: 24px; */
    color: var(--text-color);
    flex-flow: column;
}

.checkout-section .form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.checkout-section .payment-method-label {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    gap: 5px;
}

.checkout-section .terms-label {
    display: inline-block;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.4;
}

/* Mi Cuenta Style */

.account-section .form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Atajos */
.display-grid {display: grid;}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gap-0-5 {gap: 0.5rem;}

.w-100 {width: 100%;}
.m-b-0px {margin-bottom: 0px;}
.m-b-15px {margin-bottom: 15px;}
.m-b-20px {margin-bottom: 20px;}

.clearboth {clear: both;}

/* Responsive Design */
@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:gap-1 {gap: 1rem;}
}
@media (min-width: 1170px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:gap-1-5 {gap: 1.5rem;}
}

@media (max-width: 991px) {
   
   body {
      font-size: 13px;
   }
   html .logo img {
       height: 36px;
       width: auto;
   }
   .header-top {
        display: none;
    }
    .nav-menu {
         position: fixed;
         left: -100%;
         top: 66px;
         flex-direction: column;
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
         padding: 20px 0;
         height: calc(100% / 1 - 66px);
         background: rgb(0 0 0 / 83%);
         z-index: 10000;
         justify-content: center;
     }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0px 0;
    }
    .nav-menu li a {
       padding: 8px 0;
       font-size: 1rem;
       color: var(--white-color);
     }
    .nav-menu a.active::after {
        content: '';
       display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 10px;
    }
    .cart-dropdown.active, .user-dropdown.active {
        width: 300px;
        position: fixed;
        left: 50%;
        top: 50%;
        right: inherit;
        transform: translate(-50%, -50%);
    }


    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }

    /* WooCommerce Responsive */
   

    .checkout-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .account-forms-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shop-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shop-sidebar {
        position: static;
        order: -1;
    }

    .dashboard-sidebar {
        position: static;
    }

    .cart-sidebar {
        position: static;
    }

    .checkout-sidebar {
        position: static;
    }

    .cart-table-wrapper {
        overflow-x: auto;
    }
    
    /* Hero Slider Responsive */
    
    .hero-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
        z-index: 2;
    }
    .hero-controls button {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        padding: 6px 8px;
        font-size: 14px;
        cursor: pointer;
        transition: var(--transition);
        border-radius: 5px;
    }
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        z-index: 1;
        max-width: 800px;
        padding: 0 0px;
        width: calc(100% / 1 - 84px);
    }
    .hero-content h1 {
         font-size: 2rem;
     }
     .hero-content p {
         font-size: 1rem;
         margin-bottom: 1rem;
     }
     
     /* Search Section Responsive */
     
     .search-section {
          border-bottom: 1px solid var(--border-color);
          padding: 2rem 0;
      }
      
      .search-box {
           /* padding: 1rem; */
           border-radius: 0;
           box-shadow: none;
       }
     
      .search-form {
          flex-direction: column;
      }
     
      .form-group {
          width: 100%;
      }
      
      /* Featured Tours Section Responsive */
      
      .featured-tours {
           padding: 2rem 0;
       }
       .tour-card {
           box-shadow: none;
           border: 1px solid var(--border-color);
       }
       .tour-card:hover {
           transform: none;
           box-shadow: none;
       }
       .tour-category {
           font-size: 12px;
           margin-bottom: 10px;
       }
       .tour-content h3 {
           font-size: 0.9rem;
           margin-bottom: 10px;
       }
       .tour-content p {
           color: var(--text-color);
           margin-bottom: 10px;
           line-height: 1.2;
           font-size: 12px;
         display: none; 
       }
       
       .tour-meta {
           display: flex;
           gap: 0.5rem;
           margin-bottom: 15px;
           font-size: 12px;
           color: var(--text-color);
           flex-flow: column;
           /* display: none; */
       }
       .tour-footer {
           display: flex;
           justify-content: space-between;
           align-items: center;
           padding-top: 15px;
           border-top: 1px solid var(--border-color);
           flex-flow: column;
           gap: 0.5rem;
       }
       .price-value {
           font-size: 1.2rem;
           font-weight: 600;
           color: var(--primary-color);
       }
       .btn {
            padding: 9px 15px;
            font-size: 13px;
        }
       /* Why Choose Us Section Responsive */
       
       .why-choose-us {
          padding: 2rem 0;
       }
       
       /* Blog Section Responsive */
       
       .blog-section {
          padding: 2rem 0;
       }
       .blog-carousel .blog-card {
            min-width: calc((100% - 30px) / 2);
            max-width: calc((100% - 30px) / 2);
            flex: 0 0 calc((100% - 30px) / 2);
        }
       
       /* CTA Section Responsive */
       
       .cta-section {
          padding: 2rem 0;
       }
       
       .cta-content h2 {
             font-size: 1.45rem;
          }
          .cta-content p {
         font-size: 1rem;
         margin-bottom: 1rem;
          }
      
      .section-header h2 {
          font-size: 1.45rem;
      }
      .section-header p {
       font-size: 1rem;
         margin-bottom: 1rem;
      }
      
      /* Footer Responsive */
      
      .main-footer {
         padding: 2rem 0px;
      }
      .footer-content {
           grid-template-columns: 1fr;
           text-align: center;
       }
      .footer-column {}
      .footer-logo {}
      html .footer-logo img {
          height: 60px;
          margin-bottom: 10px;
      }
      .footer-column p {}
      .footer-column .social-links {
    justify-content: center;
}
      .footer-column .social-links a {}
      .footer-column h4 {
          color: white;
          margin-bottom: 20px;
      }
      .footer-column ul {}
      .footer-column ul li {}
      .footer-column ul li a {}
      
      .contact-info {}
      .contact-info p {
          margin-bottom: 10px;
      }
      
      .footer-column .payment-methods-footer {
           justify-content: center;
       }
       .footer-column .payment-logo.webpay {}
       .footer-column .payment-icon {}
       .footer-column .payment-icon i {}
       
       .footer-bottom {}
       .footer-bottom p {}
       .footer-bottom p:last-child {}
       
       /* Single Tour Responsive */
       .tour-detalles {
           padding: 2rem 0;
       }
       
       .related-tours-section  {
            padding: 2rem 0;
        }
       
       .single-tour .tour-info-grid {
           grid-template-columns: 1fr;
          gap: 1.5rem;
       }
       .single-tour .tour-main-content {
           background-color: transparent;
           padding: 0;
           border-radius: 0;
           box-shadow: none;
       }
       .single-tour .tour-sidebar {
           grid-column: 1 / 3;
       }
       .single-tour .tab-nav {
           display: flex;
           border-bottom: 2px solid var(--border-color);
           margin-bottom: 30px;
           overflow-x: auto;
           overflow-y: hidden;
           -webkit-overflow-scrolling: touch;
           scrollbar-width: none;
           -ms-overflow-style: none;
           position: relative;
           white-space: nowrap;
       }
       
       .single-tour .tab-nav::-webkit-scrollbar {
           display: none;
       }
       
       .single-tour .tab-nav .tab-btn {
           flex: 0 0 auto;
           padding: 12px 16px;
           font-size: 13px;
           white-space: nowrap;
           min-width: fit-content;
           border-bottom: 3px solid transparent;
           transition: all 0.3s ease;
       }
       
       .single-tour .tab-nav .tab-btn.active {
           border-bottom-color: var(--primary-color);
           color: var(--primary-color);
           font-weight: 600;
       }
       .single-tour .includes-excludes-grid {
           grid-template-columns: 1fr;
           gap: 1rem;
       }
       /* Page Responsive */
       .page-section-normal {padding: 2rem 0;}
       .page-section-normal .terms-content {
           padding: 0;
           border-radius: 0;
           box-shadow: none;
           background: transparent;
       }
       .about-image {display: none;}
       
       /* Carrito Responsive */
       
       .cart-section {
         padding: 2rem 0;
       }
       .cart-section .cart-content {display: block;}
       .cart-section .cart-actions {
          flex-flow: column;
       }
       .page-header h1 {
           color: white;
           font-size: 2rem;
           margin-bottom: 15px;
       }
       .contact-form-section {padding: 1.2rem;}
       
       .contact-info-grid {margin-bottom: 1.5rem;}
       .contact-info-item {padding: 1.2rem;}
      
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 2rem; }
    h2 {font-size: 1.45rem;}
    h3 {font-size: 1.15rem;}

    .hero-section {
        height: 400px;
    }

   

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-carousel-wrapper {
         padding: 0 40px;
     }
     
     .blog-carousel .blog-card {
         min-width: 100%;
         max-width: 100%;
         flex: 0 0 100%;
     }
     
     .blog-carousel-btn {
         width: 35px;
         height: 35px;
         font-size: 14px;
         top: 35%;
     }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .back-to-top {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
   

    .btn {

    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 200px;
    }
    .blog-carousel-wrapper {
         padding: 0;
         margin-bottom: 30px;
     }
     
     .blog-carousel-btn {
         display: none;
     }
     
     .blog-carousel {
         overflow-x: auto;
         scroll-snap-type: x mandatory;
         -webkit-overflow-scrolling: touch;
         padding-bottom: 10px;
     }
     
     .blog-track {
         padding: 0 15px;
     }
     
     .blog-carousel .blog-card {
         scroll-snap-align: center;
         min-width: 85vw;
         max-width: 85vw;
         flex: 0 0 85vw;
     }
     
     .blog-content {
         min-height: 250px;
     }
}


/* =========================================== 
   ADDITIONAL TAB NAVIGATION IMPROVEMENTS
   FOR MOBILE AND TABLET SCREENS
   =========================================== */

/* Mobile Small Screens (375px to 767px) */
@media (max-width: 767px) and (min-width: 375px) {
    .single-tour .tab-nav {
        padding: 0;
        gap: 0;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .single-tour .tab-nav .tab-btn {
        padding: 10px 12px;
        border-bottom-width: 2px;
    }
    
    /* Add visual indicator for scrollable tabs on the right */
    .single-tour .tour-tabs {
        position: relative;
    }
    
    .single-tour .tab-nav::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 15px;
        background: linear-gradient(to left, transparent, white);
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .single-tour .tab-nav::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 15px;
        background: linear-gradient(to right, transparent, white);
        pointer-events: none;
        z-index: 1;
    }
    
    /* Responsive tab content */
    .single-tour .tab-content {
        padding: 15px 0;
    }
    
    .single-tour .tab-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .single-tour .itinerary-day h3 {
      font-size: 16px;
    }
    
    .single-tour .tab-content h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    /* Ensure tabs scroll smoothly */
    .single-tour .tab-nav {
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }
    
    .single-tour .tab-nav .tab-btn {
        scroll-snap-align: start;
    }
}

/* Tablet Screens (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .single-tour .tab-nav .tab-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .single-tour .tab-nav {
        gap: 0;
        scroll-behavior: smooth;
    }
    
    /* Visual scroll indicators for tablets */
    .single-tour .tab-nav::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.95));
        pointer-events: none;
        z-index: 1;
    }
}
