/**
 * Paradise Tours — Frontend Styles
 *
 * Design: Mediterranean warmth with modern travel agency aesthetic.
 * Uses CSS custom properties set by plugin settings.
 */

/* ── Base Variables ── */
:root {
    --pt-primary: #1B5E7B;
    --pt-secondary: #C4704A;
    --pt-accent: #D4B896;
    --pt-text: #2C3E3A;
    --pt-bg: #FAF8F5;
    --pt-white: #FFFFFF;
    --pt-gray-100: #F5F3F0;
    --pt-gray-200: #E8E4DF;
    --pt-gray-300: #999999;
    --pt-gray-400: #333333;
    --pt-radius: 6px;
    --pt-radius-lg: 12px;
    --pt-shadow: 0 2px 8px rgba(44,62,58,0.08);
    --pt-shadow-lg: 0 8px 30px rgba(44,62,58,0.12);
    --pt-transition: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    --pt-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* ── Container ── */
.pt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Breadcrumb Navigation ── */
.pt-breadcrumb {
    background: var(--pt-gray-100);
    border-bottom: 1px solid var(--pt-gray-200);
    padding: 12px 0;
    font-size: 13px;
}
.pt-breadcrumb .pt-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.pt-breadcrumb a {
    color: var(--pt-gray-400);
    text-decoration: none;
    transition: color var(--pt-transition);
}
.pt-breadcrumb a:hover {
    color: var(--pt-primary);
}
.pt-bc-sep {
    margin: 0 8px;
    color: var(--pt-gray-300);
    font-size: 12px;
}
.pt-bc-current {
    color: var(--pt-text);
    font-weight: 600;
}

/* ── Taxonomy Tags (Single Tour) ── */
.pt-tour-taxonomy-nav {
    background: var(--pt-white);
    border-bottom: 1px solid var(--pt-gray-200);
    padding: 10px 0;
}
.pt-tour-taxonomy-nav .pt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pt-tax-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 100px;
    transition: all var(--pt-transition);
}
.pt-tax-tag svg {
    opacity: 0.5;
    flex-shrink: 0;
}
.pt-tax-destination,
.pt-tax-category,
.pt-tax-type {
    background: var(--pt-gray-100) !important;
    color: var(--pt-text) !important;
    border: 1px solid var(--pt-gray-200) !important;
}
.pt-tax-destination:hover,
.pt-tax-category:hover,
.pt-tax-type:hover {
    background: var(--pt-primary) !important;
    color: #FFFFFF !important;
    border-color: var(--pt-primary) !important;
}
.pt-tax-tag:hover svg {
    opacity: 1;
}

/* ── Navigation Sections (Archive) ── */
.pt-nav-section {
    margin-top: 16px;
}
.pt-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 0.06em;
    color: var(--pt-gray-400);
    margin-bottom: 8px;
}
.pt-nav-label svg {
    opacity: 0.5;
}
.pt-nav-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pt-tag-count {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 2px;
}

/* ── Results Info ── */
.pt-results-info {
    padding: 12px 0;
    font-size: 14px;
    color: var(--pt-gray-400);
}
.pt-results-info a {
    color: var(--pt-primary);
}

/* ── No Results ── */
.pt-no-results {
    text-align: center;
    padding: 60px 20px;
}
.pt-no-results-icon {
    color: var(--pt-gray-300);
    margin-bottom: 16px;
}
.pt-no-results h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pt-text);
    margin: 0 0 8px;
}
.pt-no-results p {
    color: var(--pt-gray-400);
    margin-bottom: 20px;
}

/* ── Buttons ── */
/* ── Global Link Color Override ── */
.pt-archive-wrap a,
.pt-single-tour a,
.pt-modal a {
    color: var(--pt-primary) !important;
    text-decoration: none;
}
.pt-archive-wrap a:hover,
.pt-single-tour a:hover,
.pt-modal a:hover {
    color: var(--pt-secondary) !important;
    text-decoration: underline;
}
/* Card links inherit — force everything non-badge to be text color */
.pt-card-link,
.pt-card-link *,
.pt-card-link:hover,
.pt-card-link:hover *,
body .pt-card-link,
body a.pt-card-link,
body a.pt-card-link:hover {
    color: inherit !important;
    text-decoration: none !important;
}
body .pt-card-link .pt-card-title,
body a.pt-card-link .pt-card-title {
    color: #2C3E3A !important;
}
body .pt-card-link .pt-price-amount {
    color: #1B5E7B !important;
}

/* ── Buttons — !important to override theme ── */
.pt-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 28px !important;
    font-family: var(--pt-font) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    border-radius: var(--pt-radius) !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    transition: all var(--pt-transition) !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
}
.pt-btn-primary {
    background: var(--pt-primary) !important;
    color: var(--pt-white) !important;
    border-color: var(--pt-primary) !important;
}
.pt-btn-primary:hover {
    background: #145068 !important;
    color: var(--pt-white) !important;
    border-color: #145068 !important;
}
.pt-btn-outline {
    background: transparent !important;
    color: var(--pt-text) !important;
    border-color: var(--pt-gray-200) !important;
}
.pt-btn-outline:hover {
    border-color: var(--pt-primary) !important;
    color: var(--pt-primary) !important;
}
.pt-btn-whatsapp {
    background: #25D366 !important;
    color: var(--pt-white) !important;
    border-color: #25D366 !important;
}
.pt-btn-whatsapp:hover {
    background: #1EBE57 !important;
}
.pt-btn-block {
    width: 100% !important;
    text-align: center !important;
}

/* ── Premium Select Styling ── */
.pt-archive-filters select,
.pt-inquiry-form select,
.pt-search-form select,
.pt-filter-field select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
    padding-right: 40px !important;
    background-color: var(--pt-white) !important;
}

/* ── Premium Date Input ── */
.pt-inquiry-form input[type="date"],
.pt-inquiry-form input[type="text"].pt-date-input {
    position: relative;
}


/* ══════════════════════════════════════
   ARCHIVE PAGE
   ══════════════════════════════════════ */

.pt-archive-wrap {
    background: var(--pt-bg);
    padding-bottom: 60px;
}

/* ── Breadcrumbs ── */
.pt-breadcrumbs {
    padding: 14px 0;
    border-bottom: 1px solid var(--pt-gray-200);
    background: var(--pt-white);
}
.pt-breadcrumbs .pt-container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 13px;
}
.pt-breadcrumbs a {
    color: var(--pt-gray-400);
    text-decoration: none;
    transition: color var(--pt-transition);
}
.pt-breadcrumbs a:hover {
    color: var(--pt-primary);
}
.pt-bc-sep {
    color: var(--pt-gray-300);
    font-size: 12px;
}
.pt-bc-current {
    color: var(--pt-text);
    font-weight: 600;
}

.pt-archive-header {
    padding: 48px 0 32px;
    text-align: center;
}
.pt-archive-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--pt-text);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.pt-archive-desc {
    font-size: 16px;
    color: var(--pt-gray-400);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* Breadcrumb */
.pt-breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: var(--pt-gray-400);
    border-bottom: 1px solid var(--pt-gray-100);
}
.pt-breadcrumb a {
    color: var(--pt-primary);
    text-decoration: none;
    transition: color var(--pt-transition);
}
.pt-breadcrumb a:hover {
    color: var(--pt-secondary);
    text-decoration: underline;
}
.pt-bc-sep {
    margin: 0 8px;
    color: var(--pt-gray-300);
}
.pt-bc-current {
    color: var(--pt-text);
    font-weight: 600;
}

/* Category / Destination Navigation */
.pt-nav-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.pt-nav-label {
    font-size: 12px;
    font-weight: 700;
    
    letter-spacing: 0.05em;
    color: var(--pt-gray-400);
    white-space: nowrap;
}
.pt-nav-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Results Info */
.pt-results-info {
    padding: 12px 0 20px;
    font-size: 14px;
    color: var(--pt-gray-400);
}
.pt-results-info a {
    color: var(--pt-primary);
    text-decoration: none;
    font-weight: 500;
}
.pt-results-info a:hover {
    text-decoration: underline;
}

/* No Results */
.pt-no-results {
    text-align: center;
    padding: 60px 20px;
}
.pt-no-results-icon {
    color: var(--pt-gray-300);
    margin-bottom: 16px;
}
.pt-no-results h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pt-text);
    margin: 0 0 8px;
}
.pt-no-results p {
    font-size: 15px;
    color: var(--pt-gray-400);
    margin: 0 0 20px;
}

/* Filter Navigation */
.pt-archive-filters {
    margin-top: 24px;
    margin-bottom: 16px;
}
.pt-filters-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    background: var(--pt-white);
    padding: 12px 16px;
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow);
}
.pt-filter-field {
    flex: 1;
    min-width: 140px;
}
.pt-filter-field select,
.pt-filter-field input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--pt-font);
    border: 1px solid var(--pt-gray-200);
    border-radius: var(--pt-radius);
    background: var(--pt-white);
    color: var(--pt-text);
    transition: border-color var(--pt-transition);
    appearance: auto;
}
.pt-filter-field select:focus,
.pt-filter-field input:focus {
    border-color: var(--pt-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27,94,123,0.1);
}
.pt-filter-search {
    flex: 1.5;
}
.pt-filter-actions {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
    min-width: auto;
}
.pt-btn-clear {
    padding: 10px 14px !important;
    font-size: 16px;
}

.pt-filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.pt-filter-tag {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 18px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--pt-text) !important;
    background: var(--pt-white) !important;
    border: 1px solid var(--pt-gray-200) !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: all var(--pt-transition) !important;
}
.pt-filter-tag:hover,
.pt-filter-tag.active {
    background: var(--pt-primary) !important;
    color: var(--pt-white) !important;
    border-color: var(--pt-primary) !important;
}
.pt-tag-count {
    font-size: 11px;
    opacity: 0.5;
    font-weight: 400;
}
.pt-filter-tag.active .pt-tag-count {
    opacity: 0.7;
}

/* ── Tour Grid ── */
.pt-tours-grid {
    display: grid;
    gap: 24px;
}
.pt-cols-2 { grid-template-columns: repeat(2, 1fr); }
.pt-cols-3 { grid-template-columns: repeat(3, 1fr); }
.pt-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Tour Card ── */
.pt-tour-card {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    box-shadow: var(--pt-shadow);
    transition: transform var(--pt-transition), box-shadow var(--pt-transition);
}
.pt-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pt-shadow-lg);
}
.pt-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.pt-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--pt-gray-100);
}
.pt-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pt-tour-card:hover .pt-card-image img {
    transform: scale(1.05);
}
.pt-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--pt-gray-300);
}
.pt-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 0.06em;
    background: var(--pt-secondary) !important;
    color: #FFFFFF !important;
    border-radius: 100px;
    z-index: 2;
}
.pt-card-destination {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0,0,0,0.6) !important;
    color: #FFFFFF !important;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.pt-card-body {
    padding: 20px;
}
.pt-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #2C3E3A !important;
    margin: 0 0 8px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.pt-card-excerpt {
    font-size: 13px;
    color: var(--pt-gray-400);
    margin: 0 0 12px;
    line-height: 1.5;
}
.pt-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}
.pt-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--pt-gray-400);
}
.pt-meta-item svg { opacity: 0.6; }
.pt-meta-transport {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: var(--pt-gray-100);
    border-radius: 100px;
    color: var(--pt-text) !important;
}
.pt-meta-transport svg {
    opacity: 0.7;
    flex-shrink: 0;
}
.pt-status-limited {
    color: var(--pt-secondary);
    font-weight: 600;
    font-size: 11px;
}

.pt-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--pt-gray-100);
}
.pt-price-label {
    font-size: 12px;
    color: var(--pt-gray-400);
}
.pt-price-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--pt-primary);
    letter-spacing: -0.02em;
}
.pt-price-per {
    font-size: 12px;
    color: var(--pt-gray-400);
}

/* Pagination */
.pt-pagination {
    margin-top: 40px;
    text-align: center;
}
.pt-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.pt-pagination a,
.pt-pagination span {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: var(--pt-radius);
    border: 1px solid var(--pt-gray-200);
    text-decoration: none;
    color: var(--pt-text);
    transition: all var(--pt-transition);
}
.pt-pagination a:hover { border-color: var(--pt-primary); color: var(--pt-primary); }
.pt-pagination .current { background: var(--pt-primary); color: var(--pt-white); border-color: var(--pt-primary); }

/* No results */
.pt-no-results {
    text-align: center;
    padding: 80px 20px;
}
.pt-no-results-icon {
    color: var(--pt-gray-300);
    margin-bottom: 16px;
}
.pt-no-results h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pt-text);
    margin: 0 0 8px;
}
.pt-no-results p {
    font-size: 15px;
    color: var(--pt-gray-400);
    margin: 0 0 24px;
}

/* ── Taxonomy Navigation ── */
.pt-taxonomy-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px 24px;
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow);
}
.pt-tax-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.pt-tax-label {
    font-size: 12px;
    font-weight: 700;
    
    letter-spacing: 0.05em;
    color: var(--pt-gray-400);
    min-width: 100px;
    padding-top: 7px;
    flex-shrink: 0;
}
.pt-tax-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pt-tax-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pt-text);
    background: var(--pt-gray-100);
    border: 1px solid transparent;
    border-radius: 100px;
    text-decoration: none;
    transition: all var(--pt-transition);
}
.pt-tax-tag:hover {
    background: var(--pt-primary);
    color: var(--pt-white);
}
.pt-tax-tag.active {
    background: var(--pt-primary);
    color: var(--pt-white);
    font-weight: 600;
}
.pt-tax-count {
    font-size: 11px;
    opacity: 0.7;
    background: rgba(0,0,0,0.08);
    padding: 1px 6px;
    border-radius: 100px;
}
.pt-tax-tag.active .pt-tax-count,
.pt-tax-tag:hover .pt-tax-count {
    background: rgba(255,255,255,0.25);
}

/* ── Results Info ── */
.pt-results-info {
    font-size: 13px;
    color: var(--pt-gray-400);
    margin-bottom: 16px;
}

/* ══════════════════════════════════════
   SINGLE TOUR PAGE
   ══════════════════════════════════════ */

/* ── Hero ── */
.pt-tour-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: var(--pt-primary);
    display: flex;
    align-items: flex-end;
}
.pt-hero-overlay {
    width: 100%;
    padding: 120px 0 48px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
    color: var(--pt-white);
}
/* Force ALL hero text to be white regardless of theme styles */
.pt-hero-overlay,
.pt-hero-overlay *,
.pt-hero-overlay h1,
.pt-hero-overlay h2,
.pt-hero-overlay h3,
.pt-hero-overlay span,
.pt-hero-overlay p,
.pt-hero-overlay a {
    color: var(--pt-white) !important;
}
.pt-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 0.06em;
    background: var(--pt-secondary);
    border-radius: 100px;
    margin-bottom: 12px;
}
.pt-tour-title {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.pt-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.pt-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    backdrop-filter: blur(4px);
}
.pt-hero-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.pt-price-from {
    font-size: 14px;
    opacity: 0.8;
}
.pt-price-amount-lg {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.pt-price-note {
    font-size: 13px;
    opacity: 0.7;
}

/* ── Layout: Main + Sidebar ── */
.pt-single-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
    align-items: start;
}
.pt-main-content { min-width: 0; }

/* ── Sections ── */
.pt-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--pt-gray-200);
}
.pt-section:last-child { border-bottom: 0; }
.pt-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--pt-text);
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.pt-content-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--pt-text);
}
.pt-content-body p { margin: 0 0 16px; }

/* ── Gallery Grid / Mobile Carousel ── */
.pt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}
.pt-gallery-thumb {
    display: block;
    aspect-ratio: 1;
    border-radius: var(--pt-radius);
    overflow: hidden;
    flex-shrink: 0;
}
.pt-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pt-gallery-thumb:hover img {
    transform: scale(1.08);
}

/* Mobile: horizontal scroll carousel */
@media (max-width: 768px) {
    .pt-gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--pt-gray-300) transparent;
    }
    .pt-gallery-grid::-webkit-scrollbar {
        height: 4px;
    }
    .pt-gallery-grid::-webkit-scrollbar-thumb {
        background: var(--pt-gray-300);
        border-radius: 4px;
    }
    .pt-gallery-thumb {
        min-width: 200px;
        width: 200px;
        aspect-ratio: 4/3;
        scroll-snap-align: start;
        border-radius: var(--pt-radius-lg);
    }
}

/* ── Itinerary Timeline ── */
.pt-timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--pt-gray-200);
    margin-left: 8px;
}
.pt-timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 20px;
}
.pt-timeline-item:last-child { margin-bottom: 0; }
.pt-timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--pt-primary);
    border: 3px solid var(--pt-white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--pt-primary);
}
.pt-timeline-marker {
    margin-bottom: 8px;
}
.pt-day-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--pt-white);
    background: var(--pt-primary);
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    
}
.pt-day-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pt-text);
    margin: 0 0 6px;
    line-height: 1.3;
}
.pt-day-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--pt-text);
    margin-bottom: 12px;
}
.pt-day-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
    background: var(--pt-gray-100);
    border-radius: var(--pt-radius);
    margin-top: 8px;
}
.pt-day-detail {
    font-size: 13px;
    color: var(--pt-gray-400);
}
.pt-day-detail strong {
    color: var(--pt-text);
}

/* ── Flights ── */
.pt-flights-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pt-flight-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--pt-gray-100);
    border-radius: var(--pt-radius);
    font-size: 14px;
    flex-wrap: wrap;
}
.pt-flight-date {
    font-weight: 700;
    font-size: 13px;
    color: var(--pt-primary);
    min-width: 40px;
}
.pt-flight-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}
.pt-flight-route svg { color: var(--pt-gray-300); }
.pt-flight-airline {
    font-size: 12px;
    color: var(--pt-gray-400);
    padding: 2px 10px;
    background: var(--pt-white);
    border-radius: 100px;
}
.pt-flight-times {
    font-size: 13px;
    color: var(--pt-gray-400);
    margin-left: auto;
}

/* ── Hotels ── */
.pt-hotels-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pt-hotel-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--pt-gray-100);
    border-radius: var(--pt-radius);
    gap: 16px;
    flex-wrap: wrap;
}
.pt-hotel-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--pt-text);
    margin: 0 0 2px;
}
.pt-hotel-location {
    font-size: 13px;
    color: var(--pt-gray-400);
}
.pt-hotel-details {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.pt-hotel-stars {
    color: var(--pt-accent);
    font-size: 14px;
    letter-spacing: 1px;
}
.pt-hotel-nights,
.pt-hotel-meal,
.pt-hotel-dates {
    font-size: 12px;
    color: var(--pt-gray-400);
    padding: 3px 10px;
    background: var(--pt-white);
    border-radius: 100px;
}

/* ── Inclusions / Exclusions ── */
.pt-incl-excl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.pt-incl-list h3,
.pt-excl-list h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--pt-text);
}
.pt-incl-list ul,
.pt-excl-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pt-incl-item,
.pt-excl-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--pt-text);
}
.pt-incl-item svg { color: #22854a; flex-shrink: 0; margin-top: 2px; }
.pt-excl-item svg { color: #b32d2e; flex-shrink: 0; margin-top: 2px; }

/* ── Accordion ── */
.pt-info-accordion {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pt-accordion-item {
    border: 1px solid var(--pt-gray-200);
    border-radius: var(--pt-radius);
    overflow: hidden;
}
.pt-accordion-item summary {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--pt-text);
    cursor: pointer;
    transition: background var(--pt-transition);
    list-style: none;
}
.pt-accordion-item summary::-webkit-details-marker { display: none; }
.pt-accordion-item summary::before {
    content: '+';
    display: inline-block;
    width: 20px;
    font-weight: 400;
    font-size: 18px;
    color: var(--pt-gray-400);
}
.pt-accordion-item[open] summary::before { content: '−'; }
.pt-accordion-item summary:hover { background: var(--pt-gray-100); }
.pt-accordion-body {
    padding: 0 18px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--pt-text);
}

/* ══════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════ */
.pt-sidebar-sticky {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pt-price-box {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pt-price-main {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pt-gray-100);
}
.pt-price-box .pt-price-from {
    font-size: 13px;
    color: var(--pt-gray-400);
    display: block;
}
.pt-price-big {
    font-size: 38px;
    font-weight: 800;
    color: var(--pt-primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.pt-price-box .pt-price-note {
    font-size: 12px;
    color: var(--pt-gray-400);
    display: block;
}
.pt-price-detail {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--pt-gray-400);
    padding: 4px 0;
}
.pt-price-detail span:last-child { font-weight: 600; color: var(--pt-text); }
.pt-price-deposit { border-top: 1px dashed var(--pt-gray-200); padding-top: 8px; }

.pt-early-bird {
    background: #FFF8E7;
    border: 1px solid #F0D88D;
    border-radius: var(--pt-radius);
    padding: 16px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}
.pt-early-bird strong {
    display: block;
    color: var(--pt-secondary) !important;
    font-size: 14px;
    font-weight: 800;
    
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.pt-early-bird span {
    font-size: 26px;
    font-weight: 800;
    color: var(--pt-secondary) !important;
    display: block;
    line-height: 1.2;
}
.pt-early-bird small {
    display: block;
    color: var(--pt-gray-400) !important;
    font-size: 13px;
    margin-top: 4px;
}

/* Quick Info */
.pt-quick-info {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow);
    padding: 20px 24px;
}
.pt-qi-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--pt-gray-100);
    font-size: 13px;
}
.pt-qi-item:last-child { border-bottom: 0; }
.pt-qi-label { color: var(--pt-gray-400); }
.pt-qi-value { font-weight: 600; color: var(--pt-text); }

.pt-qi-dates {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--pt-gray-200);
}
.pt-qi-dates > .pt-qi-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    
    letter-spacing: 0.04em;
    color: var(--pt-text);
    margin-bottom: 8px;
}
.pt-qi-date-row {
    display: flex;
    gap: 4px;
    padding: 6px 0;
    font-size: 13px;
    align-items: center;
    flex-wrap: wrap;
}
.pt-date-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: auto;
}
.pt-date-available .pt-date-status { background: #E8F5E9; color: #2E7D32; }
.pt-date-limited .pt-date-status { background: #FFF3E0; color: #E65100; }
.pt-date-full .pt-date-status { background: var(--pt-gray-100); color: var(--pt-gray-400); text-decoration: line-through; }
.pt-date-cancelled .pt-date-status { background: #FFEBEE; color: #C62828; text-decoration: line-through; }

/* ══════════════════════════════════════
   INQUIRY MODAL
   ══════════════════════════════════════ */
.pt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.pt-modal.active {
    display: flex;
}
.pt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
.pt-modal-dialog {
    position: relative;
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow-lg);
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    animation: ptModalIn 0.3s ease;
}
@keyframes ptModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.pt-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--pt-gray-200);
}
.pt-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--pt-text);
}
.pt-modal-close {
    width: 36px;
    height: 36px;
    background: var(--pt-gray-100);
    border: 0;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--pt-gray-400);
    transition: all var(--pt-transition);
}
.pt-modal-close:hover { background: var(--pt-gray-200); color: var(--pt-text); }

.pt-modal-body { padding: 24px; }
.pt-modal-tour-name {
    font-weight: 600;
    color: var(--pt-primary);
    margin: 0 0 20px;
    font-size: 15px;
}

/* ── Form Styles ── */
.pt-inquiry-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-text);
    margin-bottom: 4px;
}
.pt-inquiry-form input[type="text"],
.pt-inquiry-form input[type="email"],
.pt-inquiry-form input[type="tel"],
.pt-inquiry-form input[type="date"],
.pt-inquiry-form input[type="number"],
.pt-inquiry-form select,
.pt-inquiry-form textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--pt-font);
    border: 1px solid var(--pt-gray-200);
    border-radius: var(--pt-radius);
    background: var(--pt-white);
    color: var(--pt-text);
    transition: border-color var(--pt-transition);
}
.pt-inquiry-form input:focus,
.pt-inquiry-form select:focus,
.pt-inquiry-form textarea:focus {
    outline: none;
    border-color: var(--pt-primary);
    box-shadow: 0 0 0 3px rgba(27,94,123,0.1);
}
.pt-inquiry-form input.pt-invalid {
    border-color: #b32d2e;
}

.pt-form-row { margin-bottom: 16px; }
.pt-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pt-form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

.pt-form-consent label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
    color: var(--pt-text);
    cursor: pointer;
    line-height: 1.4;
}
.pt-form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    accent-color: var(--pt-primary);
    cursor: pointer;
    border: 2px solid var(--pt-gray-300);
    border-radius: 3px;
}
.pt-form-consent a {
    color: var(--pt-primary);
    text-decoration: underline;
    font-weight: 500;
}

.pt-form-actions { margin-top: 20px; }

/* Force submit button styling over theme */
.pt-inquiry-form .pt-inquiry-submit,
.pt-inquiry-form button[type="submit"],
.pt-modal .pt-btn-primary {
    background: var(--pt-primary) !important;
    color: var(--pt-white) !important;
    border-color: var(--pt-primary) !important;
    font-size: 16px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
}
.pt-inquiry-form .pt-inquiry-submit:hover,
.pt-inquiry-form button[type="submit"]:hover {
    background: #145068 !important;
    border-color: #145068 !important;
}

/* Consent link */
.pt-form-consent a {
    color: var(--pt-primary) !important;
    text-decoration: underline !important;
    font-weight: 500;
}
.pt-form-consent a:hover {
    color: var(--pt-secondary) !important;
}

.pt-form-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--pt-radius);
    font-size: 14px;
    display: none;
}
.pt-form-message.success {
    display: block;
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}
.pt-form-message.error {
    display: block;
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.pt-inquiry-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Search Form ── */
.pt-search-form {
    background: var(--pt-white);
    border-radius: var(--pt-radius-lg);
    box-shadow: var(--pt-shadow);
    padding: 24px;
    margin-bottom: 32px;
}
.pt-search-fields {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.pt-search-field {
    flex: 1;
    min-width: 160px;
}
.pt-search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--pt-gray-400);
    margin-bottom: 4px;
    
    letter-spacing: 0.03em;
}
.pt-search-field input,
.pt-search-field select {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--pt-gray-200);
    border-radius: var(--pt-radius);
    background: var(--pt-white);
}
.pt-search-submit {
    flex: 0 0 auto;
    min-width: auto;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .pt-single-layout {
        grid-template-columns: 1fr;
    }
    .pt-sidebar-sticky {
        position: static;
    }
    .pt-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pt-cols-3,
    .pt-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pt-incl-excl-grid {
        grid-template-columns: 1fr;
    }
    .pt-form-row-2,
    .pt-form-row-3 {
        grid-template-columns: 1fr;
    }
    .pt-hero-price .pt-price-amount-lg {
        font-size: 28px;
    }
    .pt-container {
        padding: 0 16px;
    }
    .pt-flight-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .pt-flight-times { margin-left: 0; }
    .pt-nav-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .pt-nav-tags {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .pt-filter-tag {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .pt-cols-2,
    .pt-cols-3,
    .pt-cols-4 {
        grid-template-columns: 1fr;
    }
    .pt-search-fields {
        flex-direction: column;
    }
    .pt-tour-hero { height: 300px; }
    .pt-hero-overlay { padding: 60px 0 28px; }
}

@media (max-width: 768px) {
    .pt-tour-hero { height: 400px; }
    .pt-filters-row {
        flex-direction: column;
    }
    .pt-filter-field {
        min-width: 100%;
    }
    .pt-filter-actions {
        width: 100%;
    }
    .pt-filter-actions .pt-btn {
        flex: 1;
    }
    .pt-tax-group {
        flex-direction: column;
        gap: 6px;
    }
    .pt-tax-label {
        min-width: auto;
    }
    .pt-taxonomy-nav {
        padding: 14px 16px;
    }
}

/* ══════════════════════════════════════
   THEME OVERRIDE — NUCLEAR
   Forces Paradise Tours styles over any theme.
   ══════════════════════════════════════ */

/* All buttons — force primary color */
body .pt-btn.pt-btn-primary,
body .pt-modal .pt-btn.pt-btn-primary,
body .pt-sidebar .pt-btn.pt-btn-primary,
body .pt-archive-wrap .pt-btn.pt-btn-primary,
body .pt-single-tour .pt-btn.pt-btn-primary,
body button.pt-btn.pt-btn-primary,
body a.pt-btn.pt-btn-primary,
body .pt-inquiry-form button[type="submit"] {
    background-color: #1B5E7B !important;
    color: #FFFFFF !important;
    border-color: #1B5E7B !important;
}
body .pt-btn.pt-btn-primary:hover,
body .pt-modal .pt-btn.pt-btn-primary:hover,
body button.pt-btn.pt-btn-primary:hover,
body a.pt-btn.pt-btn-primary:hover,
body .pt-inquiry-form button[type="submit"]:hover {
    background-color: #145068 !important;
    color: #FFFFFF !important;
    border-color: #145068 !important;
}

/* Filter tags — force colors */
body .pt-filter-tag:hover,
body .pt-filter-tag.active,
body a.pt-filter-tag:hover,
body a.pt-filter-tag.active {
    background-color: #1B5E7B !important;
    color: #FFFFFF !important;
    border-color: #1B5E7B !important;
}

/* All links inside plugin — force primary */
body .pt-archive-wrap a:not(.pt-card-link):not(.pt-filter-tag):not(.pt-btn),
body .pt-single-tour a:not(.pt-card-link):not(.pt-btn):not(.glightbox),
body .pt-modal a,
body .pt-results-info a,
body .pt-form-consent a,
body .pt-breadcrumb a {
    color: #1B5E7B !important;
}
body .pt-archive-wrap a:not(.pt-card-link):not(.pt-filter-tag):not(.pt-btn):hover,
body .pt-single-tour a:not(.pt-card-link):not(.pt-btn):not(.glightbox):hover,
body .pt-modal a:hover,
body .pt-form-consent a:hover {
    color: #C4704A !important;
}

/* Card elements — force white on overlays */
body .pt-card-badge,
body .pt-card-destination,
body .pt-hero-badge {
    color: #FFFFFF !important;
}

/* Image overlay badges inside cards — prevent link color inheritance */
body .pt-card-link .pt-card-badge,
body .pt-card-link .pt-card-destination {
    color: #FFFFFF !important;
}

/* Price color */
body .pt-price-amount,
body .pt-price-big {
    color: #1B5E7B !important;
}

/* Success message */
body .pt-form-message.success {
    background: #ECFDF5 !important;
    color: #065F46 !important;
    border: 1px solid #A7F3D0 !important;
}

/* Date badge on cards */
body .pt-meta-date svg,
body .pt-meta-duration svg {
    color: inherit !important;
    opacity: 0.5;
}

/* ── Flatpickr Premium Theme ── */
.flatpickr-calendar {
    border-radius: 10px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border: 1px solid #E8E4DF !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif !important;
}
.flatpickr-months {
    border-radius: 10px 10px 0 0;
    background: #1B5E7B !important;
    padding: 4px 0 !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #D4B896 !important;
}
.flatpickr-current-month .cur-month,
.flatpickr-current-month .numInputWrapper {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}
.flatpickr-current-month input.cur-year {
    color: #FFFFFF !important;
}
span.flatpickr-weekday {
    color: #1B5E7B !important;
    font-weight: 700 !important;
    font-size: 12px !important;
}
.flatpickr-day {
    border-radius: 6px !important;
    font-weight: 500 !important;
    color: #2C3E3A !important;
}
.flatpickr-day:hover {
    background: #EBF5FB !important;
    border-color: #EBF5FB !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #1B5E7B !important;
    border-color: #1B5E7B !important;
    color: #FFFFFF !important;
}
.flatpickr-day.today {
    border-color: #C4704A !important;
}
.flatpickr-day.today:hover {
    background: #C4704A !important;
    color: #FFFFFF !important;
}
