/**
 * Santorini Boat Tours - Frontend Styles
 * Greek-inspired clean blue and white aesthetic
 */

:root {
    --sbt-primary: #1e3a8a;
    --sbt-primary-light: #3b82f6;
    --sbt-primary-dark: #1e40af;
    --sbt-secondary: #0ea5e9;
    --sbt-accent: #f59e0b;
    --sbt-success: #10b981;
    --sbt-danger: #ef4444;
    --sbt-white: #ffffff;
    --sbt-gray-50: #f9fafb;
    --sbt-gray-100: #f3f4f6;
    --sbt-gray-200: #e5e7eb;
    --sbt-gray-300: #d1d5db;
    --sbt-gray-400: #9ca3af;
    --sbt-gray-600: #4b5563;
    --sbt-gray-700: #374151;
    --sbt-gray-900: #111827;
    --sbt-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --sbt-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --sbt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --sbt-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Global Santorini-inspired styles */
.sbt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.sbt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.sbt-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sbt-btn:hover::before {
    width: 300px;
    height: 300px;
}

.sbt-btn:focus {
    outline: 3px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

.sbt-btn-primary {
    background: linear-gradient(135deg, var(--sbt-primary-light) 0%, var(--sbt-primary) 100%);
    color: var(--sbt-white) !important;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3) !important;
}

.sbt-btn-primary:hover {
    background: linear-gradient(135deg, var(--sbt-primary) 0%, var(--sbt-primary-dark) 100%);
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 16px 32px rgba(30, 58, 138, 0.4) !important;
}

.sbt-btn-primary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3) !important;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.sbt-btn-secondary {
    background: var(--sbt-white);
    color: var(--sbt-primary) !important;
    border: 2px solid var(--sbt-primary) !important;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1) !important;
}

.sbt-btn-secondary:hover {
    background: var(--sbt-primary);
    color: var(--sbt-white) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.3) !important;
    border-color: var(--sbt-primary-dark) !important;
}

.sbt-btn-secondary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2) !important;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.sbt-btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.sbt-btn-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

.sbt-btn-large:hover {
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.4);
}

.sbt-btn-large:hover::after {
    animation: shimmer 1.5s infinite;
}

.sbt-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.sbt-btn:disabled::before {
    display: none;
}

/* =======================
   TOUR ARCHIVE / LIST
   ======================= */

.sbt-tour-archive {
    padding: 40px 0;
}

.sbt-tour-archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--sbt-gray-50);
    border-radius: 12px;
}

.sbt-tour-count {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sbt-count-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--sbt-primary);
}

.sbt-count-label {
    font-size: 16px;
    color: var(--sbt-gray-600);
}

.sbt-tour-filters {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sbt-filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sbt-filter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--sbt-gray-700);
    font-size: 14px;
    text-wrap: nowrap;
}

.sbt-filter-label svg {
    color: var(--sbt-primary);
}

.sbt-tour-type-filter {
    padding: 10px 16px;
    border: 2px solid var(--sbt-gray-200);
    border-radius: 8px;
    font-size: 14px;
    background: var(--sbt-white);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.sbt-tour-type-filter:focus {
    outline: none;
    border-color: var(--sbt-primary-light);
}

.sbt-tour-type-filter:hover {
    border-color: var(--sbt-primary);
}

/* Tours Grid */
.sbt-tours-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.sbt-tour-card-archive {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.sbt-tour-card-archive:nth-child(1) { animation-delay: 0.05s; }
.sbt-tour-card-archive:nth-child(2) { animation-delay: 0.1s; }
.sbt-tour-card-archive:nth-child(3) { animation-delay: 0.15s; }
.sbt-tour-card-archive:nth-child(4) { animation-delay: 0.2s; }
.sbt-tour-card-archive:nth-child(5) { animation-delay: 0.25s; }
.sbt-tour-card-archive:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sbt-tours-columns-1 {
    grid-template-columns: 1fr;
}

.sbt-tours-columns-2 {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.sbt-tours-columns-3 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.sbt-tour-card-archive {
    background: var(--sbt-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--sbt-gray-100);
    position: relative;
}

.sbt-tour-card-archive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.sbt-tour-card-archive:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.sbt-tour-card-archive:hover::before {
    opacity: 1;
}

.sbt-tour-card-archive .sbt-tour-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.sbt-tour-card-archive .sbt-tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sbt-tour-card-archive:hover .sbt-tour-card-image img {
    transform: scale(1.1);
}

.sbt-tour-type-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--sbt-shadow-md);
}

.sbt-tour-card-archive .sbt-tour-card-content {
    padding: 24px;
    background-color: #fff;
}

.sbt-tour-card-title {
    margin: 0 0 12px 0;
}

.sbt-tour-card-title a {
    font-size: 22px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sbt-tour-card-title a:hover {
    color: var(--sbt-primary);
}

.sbt-tour-card-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sbt-gray-600);
    margin-bottom: 20px;
}

.sbt-tour-card-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--sbt-gray-100);
    border-bottom: 1px solid var(--sbt-gray-100);
}

.sbt-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sbt-gray-700);
}

.sbt-meta-item svg {
    color: var(--sbt-primary);
    flex-shrink: 0;
}

.sbt-tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
}

.sbt-tour-card-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.sbt-price-label {
    font-size: 12px;
    color: var(--sbt-gray-600);
    text-transform: uppercase;
    font-weight: 600;
}

.sbt-price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--sbt-primary);
}

.sbt-price-per {
    font-size: 13px;
    color: var(--sbt-gray-600);
}

.sbt-no-tours {
    padding: 60px 20px;
    text-align: center;
    background: var(--sbt-gray-50);
    border-radius: 12px;
}

.sbt-no-tours p {
    font-size: 18px;
    color: var(--sbt-gray-600);
}

/* =======================
   SINGLE TOUR DETAIL
   ======================= */

.sbt-single-tour-detail {
    margin: 0 0 60px 0;
}

.sbt-tour-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 40px;
}

.sbt-tour-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sbt-tour-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.sbt-tour-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--sbt-white);
    margin: 0 0 12px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sbt-tour-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--sbt-gray-50) 0%, var(--sbt-white) 100%);
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--sbt-shadow-sm);
}

.sbt-quick-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sbt-quick-info-item svg {
    color: var(--sbt-primary);
    flex-shrink: 0;
}

.sbt-quick-info-item span {
    font-size: 14px;
    line-height: 1.6;
    color: var(--sbt-gray-700);
}

.sbt-quick-info-item strong {
    color: var(--sbt-gray-900);
}

/* Two Column Layout */
.sbt-tour-two-column {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.sbt-tour-left-column {
    min-width: 0;
}

.sbt-tour-right-column {
    position: relative;
}

.sbt-booking-card-sticky {
    position: sticky;
    top: 20px;
}

/* Tour Sections */
.sbt-tour-section {
    margin-bottom: 40px;
    padding: 32px;
    background: var(--sbt-white);
    border-radius: 12px;
    box-shadow: var(--sbt-shadow-sm);
    border: 1px solid var(--sbt-gray-100);
}

.sbt-section-heading {
    font-size: 24px !important;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sbt-section-heading svg {
    color: var(--sbt-primary);
}

.sbt-section-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sbt-gray-700);
}

.sbt-section-content p {
    margin-bottom: 16px;
}

/* Tour Highlights */
.sbt-highlights-list,
.sbt-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.sbt-highlights-list li,
.sbt-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--sbt-gray-50);
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--sbt-gray-700);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    position: relative;
}

.sbt-highlights-list li::before,
.sbt-included-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sbt-highlights-list li:hover,
.sbt-included-list li:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    border-left-color: var(--sbt-primary-light);
}

.sbt-highlights-list li:hover::before,
.sbt-included-list li:hover::before {
    opacity: 1;
}

.sbt-highlights-list li svg,
.sbt-included-list li svg {
    color: var(--sbt-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tour Gallery */
.sbt-tour-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.sbt-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(30, 58, 138, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sbt-gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.sbt-gallery-item:hover::after {
    opacity: 1;
}

.sbt-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-gallery-item:hover .sbt-gallery-image {
    transform: scale(1.15) rotate(2deg);
}

/* Lightbox */
.sbt-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.sbt-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.sbt-lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sbt-lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sbt-lightbox-close,
.sbt-lightbox-prev,
.sbt-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--sbt-gray-900);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.sbt-lightbox-close:hover,
.sbt-lightbox-prev:hover,
.sbt-lightbox-next:hover {
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    transform: scale(1.2) rotate(90deg);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.sbt-lightbox-close:active,
.sbt-lightbox-prev:active,
.sbt-lightbox-next:active {
    transform: scale(1.1) rotate(90deg);
}

.sbt-lightbox-close {
    top: 20px;
    right: 20px;
}

.sbt-lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.sbt-lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Booking Card */
.sbt-booking-card {
    background: var(--sbt-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--sbt-shadow-lg);
    border: 2px solid var(--sbt-gray-100);
}

.sbt-booking-price {
    padding: 24px;
    background: linear-gradient(135deg, var(--sbt-gray-50) 0%, var(--sbt-white) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
}

.sbt-price-amount {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--sbt-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.sbt-price-label {
    display: block;
    font-size: 14px;
    color: var(--sbt-gray-600);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sbt-tour-availability-section {
    margin: 24px 0;
    padding: 20px;
    background: var(--sbt-gray-50);
    border-radius: 12px;
}

.sbt-availability-title {
    font-size: 16px !important;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sbt-availability-title svg {
    color: var(--sbt-primary);
}

.sbt-tour-availability-section .sbt-calendar {
    background: var(--sbt-white);
    padding: 16px;
}

.sbt-booking-card-features {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--sbt-gray-200);
}

.sbt-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--sbt-gray-700);
}

.sbt-feature-item svg {
    color: var(--sbt-success);
    flex-shrink: 0;
}

/* =======================
   PAGE CONTAINER
   ======================= */

.sbt-page-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

.sbt-page-container.sbt-booking-page {
    max-width: 100%;
    padding: 0;
}

/* =======================
   BOOKING WIDGET
   ======================= */

.sbt-booking-widget {
    background: var(--sbt-white);
    border-radius: 0;
    padding: 60px 40px;
    box-shadow: none;
    margin: 0 auto;
    width: 100%;
}

.sbt-booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.sbt-booking-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--sbt-gray-200);
    z-index: 0;
}

.sbt-booking-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sbt-step-number {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sbt-gray-200);
    color: var(--sbt-gray-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 6px var(--sbt-white);
}

.sbt-booking-step.active .sbt-step-number {
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    box-shadow: 0 0 0 6px var(--sbt-white), 0 6px 20px rgba(59, 130, 246, 0.5);
    transform: scale(1.15);
    animation: step-pulse 2s ease-in-out infinite;
}

@keyframes step-pulse {
    0%, 100% {
        box-shadow: 0 0 0 6px var(--sbt-white), 0 6px 20px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 0 6px var(--sbt-white), 0 6px 20px rgba(59, 130, 246, 0.7), 0 0 0 10px rgba(59, 130, 246, 0.2);
    }
}

.sbt-booking-step.completed .sbt-step-number {
    background: linear-gradient(135deg, var(--sbt-success), #059669);
    color: var(--sbt-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-step-label {
    display: block;
    font-size: 14px;
    color: var(--sbt-gray-600);
    font-weight: 500;
    text-wrap: nowrap;
}

.sbt-booking-step.active .sbt-step-label {
    color: var(--sbt-primary);
    font-weight: 700;
}

.sbt-booking-step.completed {
    cursor: pointer;
}

.sbt-booking-step.completed:hover .sbt-step-number {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px var(--sbt-white), 0 8px 20px rgba(16, 185, 129, 0.5);
    animation: pulse 1s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 6px var(--sbt-white), 0 8px 20px rgba(16, 185, 129, 0.5);
    }
    50% {
        box-shadow: 0 0 0 6px var(--sbt-white), 0 8px 20px rgba(16, 185, 129, 0.7);
    }
}

/* Step Content Sections */
.sbt-step-content {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.sbt-step-content[style*="display: none"] {
    opacity: 0;
    transform: translateY(20px);
}

.sbt-step-section {
    background: var(--sbt-white);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--sbt-gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-step-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sbt-step-section.collapsed {
    max-height: 80px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sbt-step-section.collapsed .sbt-step-body,
.sbt-step-section.collapsed .sbt-step-footer {
    display: none;
}

.sbt-step-section.collapsed .sbt-step-header {
    cursor: pointer;
    background: var(--sbt-gray-50);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-step-section.collapsed .sbt-step-header:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: scale(1.01);
}

.sbt-step-header {
    padding: 32px 40px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f0f9ff 100%);
    border-bottom: 2px solid var(--sbt-gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sbt-step-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--sbt-primary-light) 0%, var(--sbt-primary) 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-step-section:not(.collapsed) .sbt-step-header::before {
    opacity: 1;
}

.sbt-step-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, var(--sbt-primary) 0%, var(--sbt-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sbt-step-description {
    font-size: 15px;
    color: var(--sbt-gray-600);
    margin: 0;
    line-height: 1.6;
}

.sbt-step-body {
    padding: 40px;
}

.sbt-step-footer {
    padding: 24px 40px;
    background: var(--sbt-gray-50);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    border-top: 1px solid var(--sbt-gray-100);
}

.sbt-step-footer .sbt-btn {
    flex: 1;
    max-width: 200px;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-step-footer .sbt-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.sbt-step-footer .sbt-btn-primary {
    margin-left: auto;
}

.sbt-step-content h3 {
    font-size: 28px !important;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin-bottom: 0;
}

/* Tour Selection in Booking Widget */
.sbt-tour-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.sbt-tour-columns-2 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.sbt-tours-grid.sbt-tour-selection {
    gap: 24px;
}

.sbt-tour-card-archive.sbt-tour-option {
    position: relative;
    border: 3px solid var(--sbt-gray-200);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--sbt-white);
}

.sbt-tour-card-archive.sbt-tour-option:hover {
    border-color: var(--sbt-primary);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.25);
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.sbt-tour-card-archive.sbt-tour-option.selected {
    border-color: var(--sbt-primary);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 12px 32px rgba(59, 130, 246, 0.3);
    transform: translateY(-6px);
}

/* Checkbox and Radio Wrapper */
.sbt-tour-checkbox-wrapper,
.sbt-tour-radio-wrapper {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.sbt-tour-checkbox,
.sbt-tour-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sbt-tour-checkbox-label,
.sbt-tour-radio-label {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 3px solid var(--sbt-gray-300);
    background: var(--sbt-white);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sbt-tour-radio-label {
    border-radius: 50%;
}

.sbt-tour-checkbox:checked + .sbt-tour-checkbox-label,
.sbt-tour-radio:checked + .sbt-tour-radio-label {
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    border-color: var(--sbt-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3), 0 4px 12px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.sbt-tour-checkbox:checked + .sbt-tour-checkbox-label::after,
.sbt-tour-radio:checked + .sbt-tour-radio-label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--sbt-white);
    font-size: 18px;
    font-weight: 700;
    animation: checkmark-pop 0.3s ease;
}

.sbt-tour-checkbox-label:hover,
.sbt-tour-radio-label:hover {
    border-color: var(--sbt-primary-light);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    background: var(--sbt-gray-50);
}

.sbt-tour-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sbt-btn-tour-detail {
    flex: 1;
}

@keyframes checkmark-pop {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.sbt-tour-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sbt-tour-option label {
    display: block;
    cursor: pointer;
    margin: 0;
}

.sbt-tour-option .sbt-tour-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.sbt-tour-option .sbt-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sbt-tour-option:hover .sbt-tour-image img {
    transform: scale(1.1);
}

.sbt-tour-option .sbt-tour-content {
    padding: 20px;
}

.sbt-tour-option .sbt-tour-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 8px 0;
}

.sbt-tour-option .sbt-tour-excerpt {
    font-size: 13px;
    color: var(--sbt-gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.sbt-tour-option .sbt-tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--sbt-gray-200);
}

.sbt-tour-duration,
.sbt-tour-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.sbt-tour-duration svg,
.sbt-tour-price svg {
    color: var(--sbt-primary);
}

.sbt-tour-price {
    font-weight: 700;
    color: var(--sbt-primary);
}

/* Multi-Destination Section */
.sbt-destinations-section {
    margin-top: 32px;
    padding: 24px;
    background: var(--sbt-gray-50);
    border-radius: 12px;
    border: 2px dashed var(--sbt-gray-200);
}

.sbt-form-section {
    margin-bottom: 24px;
}

.sbt-form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sbt-form-section-title svg {
    color: var(--sbt-primary);
}

.sbt-section-description {
    font-size: 14px;
    color: var(--sbt-gray-600);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.sbt-destinations-list {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.sbt-destination-item {
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sbt-destination-item label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sbt-gray-700);
    margin-bottom: 8px;
}

.sbt-destination-input {
    width: 100%;
    padding: 12px 16px;
    padding-right: 48px;
    border: 2px solid var(--sbt-gray-200);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sbt-destination-input:focus {
    outline: none;
    border-color: var(--sbt-primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sbt-remove-destination {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: var(--sbt-danger);
    color: var(--sbt-white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sbt-remove-destination:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.sbt-add-destination {
    width: 100%;
    justify-content: center;
}

.sbt-selected-dates-summary {
    margin-top: 20px;
    padding: 16px;
    background: #dbeafe;
    border-radius: 8px;
    display: none;
}

.sbt-selected-dates-summary.active {
    display: block;
}

.sbt-selected-dates-summary h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sbt-primary);
    margin: 0 0 12px 0;
}

.sbt-selected-dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sbt-selected-date-tag {
    padding: 6px 12px;
    background: var(--sbt-white);
    border: 1px solid var(--sbt-primary);
    border-radius: 6px;
    font-size: 13px;
    color: var(--sbt-primary);
    font-weight: 600;
}

/* Calendar */
.sbt-calendar {
    background: var(--sbt-white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--sbt-gray-200);
}

.sbt-calendar-full-width {
    width: 100%;
    max-width: none;
}

.sbt-calendar-full-width .sbt-calendar-grid {
    gap: 12px;
}

.sbt-calendar-full-width .sbt-calendar-day {
    padding: 16px 8px;
    font-size: 16px;
}

.sbt-calendar-multi-select .sbt-calendar-day.in-range {
    background: #bfdbfe;
    color: var(--sbt-primary-dark);
    border-color: var(--sbt-primary-light);
}

.sbt-calendar-multi-select .sbt-calendar-day.range-start {
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.sbt-calendar-multi-select .sbt-calendar-day.range-end {
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.sbt-calendar-multi-select .sbt-calendar-day.range-start.range-end {
    border-radius: 8px;
}

.sbt-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sbt-calendar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0;
}

.sbt-calendar-nav {
    background: var(--sbt-gray-100);
    border: none;
    color: var(--sbt-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sbt-calendar-nav:hover {
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.sbt-calendar-nav:active {
    transform: scale(0.95);
}

.sbt-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.sbt-calendar-day-header {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--sbt-gray-600);
    padding: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sbt-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--sbt-white);
    border: 2px solid var(--sbt-gray-200);
    position: relative;
}

.sbt-calendar-day::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-calendar-day:hover:not(.disabled):not(.blocked) {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
    border-color: var(--sbt-primary-light);
    z-index: 10;
}

.sbt-calendar-day:hover:not(.disabled):not(.blocked)::before {
    width: 100%;
    height: 100%;
}

.sbt-calendar-day.selected {
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    border-color: var(--sbt-primary);
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3), 0 8px 20px rgba(59, 130, 246, 0.5);
    font-weight: 700;
    z-index: 10;
}

.sbt-calendar-day.selected::before {
    display: none;
}

.sbt-calendar-day.disabled {
    color: var(--sbt-gray-300);
    cursor: not-allowed;
    background: var(--sbt-gray-50);
}

.sbt-calendar-day.blocked {
    background: var(--sbt-gray-100);
    color: var(--sbt-gray-400);
    cursor: not-allowed;
    text-decoration: line-through;
}

.sbt-calendar-day.almost-full {
    background: #fef3c7;
    color: #92400e;
    border-color: var(--sbt-accent);
}

.sbt-calendar-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--sbt-gray-200);
    flex-wrap: wrap;
}

.sbt-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sbt-gray-700);
}

.sbt-legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--sbt-gray-200);
}

.sbt-legend-available {
    background: var(--sbt-white);
}

.sbt-legend-almost-full {
    background: #fef3c7;
}

.sbt-legend-blocked {
    background: var(--sbt-gray-100);
}

/* Passenger Counter */
.sbt-passenger-counter {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    margin: 40px 0;
    padding: 32px;
    background: var(--sbt-gray-50);
    border-radius: 12px;
}

.sbt-counter-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--sbt-primary-light);
    background: var(--sbt-white);
    color: var(--sbt-primary-light);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.sbt-counter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.sbt-counter-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    transform: scale(1.2) rotate(90deg);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    border-color: var(--sbt-primary);
}

.sbt-counter-btn:active:not(:disabled) {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.sbt-counter-btn:active:not(:disabled)::before {
    width: 100px;
    height: 100px;
}

.sbt-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.sbt-counter-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--sbt-primary);
    min-width: 80px;
    text-align: center;
}

/* Booking Form */
.sbt-booking-final-step {
    display: grid;
    gap: 30px;
}

.sbt-booking-summary-card,
.sbt-booking-form-card {
    background: var(--sbt-white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--sbt-gray-200);
}

.sbt-summary-title,
.sbt-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sbt-summary-title svg,
.sbt-form-title svg {
    color: var(--sbt-primary);
}

.sbt-summary-content {
    display: grid;
    gap: 16px;
}

.sbt-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.sbt-summary-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sbt-gray-600);
    font-weight: 500;
}

.sbt-summary-label svg {
    color: var(--sbt-primary);
}

.sbt-summary-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--sbt-gray-900);
}

.sbt-summary-divider {
    height: 1px;
    background: var(--sbt-gray-200);
    margin: 8px 0;
}

.sbt-summary-total-row {
    padding-top: 16px;
    border-top: 2px solid var(--sbt-gray-200);
}

.sbt-summary-total-row .sbt-summary-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--sbt-gray-900);
}

.sbt-summary-total-row .sbt-summary-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--sbt-primary);
    padding-top: 0 !important;
}

/* Form Inputs and Elements */
.sbt-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.sbt-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sbt-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--sbt-gray-700);
}

.sbt-required {
    color: var(--sbt-danger);
}

.sbt-form-input,
.sbt-form-textarea,
.sbt-form-select {
    padding: 12px 16px;
    border: 2px solid var(--sbt-gray-200);
    border-radius: 8px;
    font-size: 15px;
    color: var(--sbt-gray-900);
    background: var(--sbt-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
}

.sbt-form-input:hover,
.sbt-form-textarea:hover,
.sbt-form-select:hover {
    border-color: var(--sbt-gray-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sbt-form-input:focus,
.sbt-form-textarea:focus,
.sbt-form-select:focus {
    outline: none;
    border-color: var(--sbt-primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
    background: linear-gradient(to bottom, #ffffff 0%, #fafbff 100%);
}

.sbt-form-input.error,
.sbt-form-textarea.error,
.sbt-form-select.error {
    border-color: var(--sbt-danger);
}

.sbt-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.sbt-field-error {
    font-size: 13px;
    color: var(--sbt-danger);
    margin-top: 4px;
}

/* Payment Methods */
.sbt-payment-methods {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.sbt-payment-option {
    display: block;
    cursor: pointer;
}

.sbt-payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sbt-payment-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--sbt-gray-200);
    border-radius: 8px;
    background: var(--sbt-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sbt-payment-option-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-payment-option:hover .sbt-payment-option-content {
    border-color: var(--sbt-primary-light);
    background: linear-gradient(135deg, #fafbff 0%, #f0f7ff 100%);
    transform: translateX(4px) scale(1.01);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.sbt-payment-option:hover .sbt-payment-option-content::before {
    opacity: 1;
}

.sbt-payment-option input[type="radio"]:checked + .sbt-payment-option-content {
    border-color: var(--sbt-primary);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 16px rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.sbt-payment-option-content svg {
    color: var(--sbt-primary);
    flex-shrink: 0;
}

.sbt-payment-option-content span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sbt-payment-option-content strong {
    font-size: 15px;
    color: var(--sbt-gray-900);
}

.sbt-payment-option-content small {
    font-size: 13px;
    color: var(--sbt-gray-600);
}

/* Checkbox */
.sbt-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--sbt-gray-700);
    line-height: 1.6;
}

.sbt-checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--sbt-primary);
}

.sbt-checkbox-label a {
    color: var(--sbt-primary);
    text-decoration: underline;
}

/* Error Message */
.sbt-error-message {
    padding: 16px;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    color: #991b1b;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.sbt-error-message:not(:empty) {
    display: block;
}

/* Form Actions */
.sbt-form-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 24px;
    flex-wrap: wrap;
}

.sbt-form-actions .sbt-btn {
    flex: 1;
    min-width: 200px;
}

/* Loading State */
.sbt-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--sbt-white);
    border-radius: 50%;
    animation: sbt-spin 0.6s linear infinite;
}

@keyframes sbt-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Badge */
.sbt-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.sbt-badge-success {
    background: #d1fae5;
    color: #065f46;
}

.sbt-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.sbt-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sbt-tour-two-column {
        grid-template-columns: 1fr;
    }

    .sbt-booking-card-sticky {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .sbt-tours-columns-2,
    .sbt-tours-columns-3 {
        grid-template-columns: 1fr;
    }

    .sbt-form-row {
        grid-template-columns: 1fr;
    }

    .sbt-booking-steps {
        gap: 12px;
    }

    .sbt-booking-steps::before {
        display: none;
    }

    .sbt-booking-step {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sbt-step-number {
        margin-bottom: 0;
    }

    .sbt-tour-archive-header {
        flex-direction: column;
        gap: 20px;
    }

    .sbt-tour-filters {
        width: 100%;
    }

    .sbt-form-actions {
        flex-direction: column;
    }

    .sbt-form-actions .sbt-btn {
        width: 100%;
    }

    .sbt-step-header h3 {
        font-size: 22px;
    }

    .sbt-step-body {
        padding: 24px 0 !important;
    }

    .sbt-passenger-counter {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .sbt-booking-widget {
        padding: 30px 20px;
    }

    .sbt-tour-hero-title {
        font-size: 32px;
    }

    .sbt-calendar-grid {
        gap: 4px;
    }

    .sbt-calendar-day {
        font-size: 12px;
    }

    .sbt-tour-card-meta-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Elements */
.sbt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.sbt-form-group {
    margin-bottom: 24px;
}

.sbt-form-label {
    display: block;
    font-weight: 600;
    color: var(--sbt-gray-700);
    margin-bottom: 8px;
    font-size: 14px;
}

.sbt-required {
    color: var(--sbt-danger);
    font-weight: 700;
}

.sbt-form-input,
.sbt-form-select,
.sbt-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--sbt-gray-200);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.sbt-form-input:focus,
.sbt-form-select:focus,
.sbt-form-textarea:focus {
    outline: none;
    border-color: var(--sbt-primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sbt-form-input::placeholder,
.sbt-form-textarea::placeholder {
    color: var(--sbt-gray-400);
}

.sbt-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.sbt-field-error {
    display: block;
    color: var(--sbt-danger);
    font-size: 13px;
    margin-top: 6px;
}

.sbt-error-message {
    padding: 16px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Payment Methods */
.sbt-payment-methods {
    display: grid;
    gap: 12px;
}

.sbt-payment-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.sbt-payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sbt-payment-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--sbt-gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sbt-payment-option:hover .sbt-payment-option-content {
    border-color: var(--sbt-primary);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.sbt-payment-option input[type="radio"]:checked + .sbt-payment-option-content {
    border-color: var(--sbt-primary);
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sbt-payment-option-content svg {
    color: var(--sbt-primary);
    flex-shrink: 0;
}

.sbt-payment-option-content span {
    display: flex;
    flex-direction: column;
}

.sbt-payment-option-content strong {
    font-size: 15px;
    color: var(--sbt-gray-900);
    margin-bottom: 2px;
}

.sbt-payment-option-content small {
    font-size: 13px;
    color: var(--sbt-gray-600);
}

.sbt-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--sbt-gray-700);
}

.sbt-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.sbt-checkbox-label a {
    color: var(--sbt-primary);
    text-decoration: underline;
}

.sbt-form-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--sbt-gray-200);
}

/* Loading States */
.sbt-loading {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--sbt-gray-200);
    border-top-color: var(--sbt-primary-light);
    border-radius: 50%;
    animation: sbt-spin 1s linear infinite;
}

@keyframes sbt-spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .sbt-tour-two-column {
        grid-template-columns: 1fr;
    }
    
    .sbt-booking-card-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .sbt-tour-hero-title {
        font-size: 32px;
    }

    .sbt-tour-hero-image {
        height: 300px;
    }

    .sbt-tours-grid {
        grid-template-columns: 1fr;
    }

    .sbt-tour-archive-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .sbt-booking-widget {
        padding: 30px 20px;
    }

    .sbt-page-container {
        padding: 20px 10px;
    }
    
    .sbt-booking-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .sbt-booking-steps::before {
        display: none;
    }
    
    .sbt-form-row {
        grid-template-columns: 1fr;
    }
    
    .sbt-quick-info {
        grid-template-columns: 1fr;
    }
    
    .sbt-tour-section {
        padding: 20px;
    }
    
    .sbt-price-amount {
        font-size: 36px;
    }
    
    .sbt-form-actions {
        flex-direction: column;
    }
    
    .sbt-form-actions .sbt-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sbt-tour-hero-title {
        font-size: 24px;
    }
    
    .sbt-count-number {
        font-size: 24px;
    }
    
    .sbt-booking-summary-card,
    .sbt-booking-form-card {
        padding: 20px;
    }
    
    .sbt-passenger-counter {
        padding: 20px;
    }
    
    .sbt-counter-value {
        font-size: 36px;
    }
}

/* Accessibility */
.sbt-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus States */
*:focus-visible {
    outline: 2px solid var(--sbt-primary);
    outline-offset: 2px;
}

/* =======================
   BOOKING CONFIRMATION
   ======================= */

/* Confirmation Container */
.sbt-booking-confirmation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Confirmation Header */
.sbt-confirmation-header {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #fff 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.sbt-confirmation-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.sbt-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sbt-success), #059669);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    animation: success-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

@keyframes success-pop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.sbt-success-icon svg {
    color: var(--sbt-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.sbt-confirmation-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--sbt-gray-900);
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, var(--sbt-primary) 0%, var(--sbt-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.sbt-confirmation-subtitle {
    font-size: 18px;
    color: var(--sbt-gray-600);
    margin: 0 0 32px 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.sbt-confirmation-code-display {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 40px;
    background: var(--sbt-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.sbt-code-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sbt-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sbt-code-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--sbt-primary);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.sbt-code-highlight {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--sbt-primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Status Badges */
.sbt-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 0 auto;
}
.sbt-booking-confirmation  h2, .sbt-booking-confirmation h3 {
    font-size: 26px !important;
}
.sbt-status-confirmed {
    background: linear-gradient(135deg, var(--sbt-success), #059669);
    color: var(--sbt-white);
}

.sbt-status-pending {
    background: linear-gradient(135deg, var(--sbt-accent), #d97706);
    color: var(--sbt-white);
}

.sbt-status-cancelled {
    background: linear-gradient(135deg, var(--sbt-danger), #dc2626);
    color: var(--sbt-white);
}

/* Confirmation Actions */
.sbt-confirmation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sbt-export-pdf,
.sbt-print-confirmation {
    min-width: 180px;
}

/* Content Grid */
.sbt-confirmation-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Confirmation Sections */
.sbt-confirmation-section {
    background: var(--sbt-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--sbt-gray-100);
    transition: all 0.3s ease;
}

.sbt-confirmation-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.sbt-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--sbt-gray-100);
}

.sbt-section-title svg {
    color: var(--sbt-primary);
}

/* Tours List */
.sbt-tours-list {
    display: grid;
    gap: 24px;
}

.sbt-tour-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 20px;
    background: var(--sbt-gray-50);
    border-radius: 12px;
    border: 1px solid var(--sbt-gray-200);
    transition: all 0.3s ease;
}

.sbt-tour-item:hover {
    background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 100%);
    border-color: var(--sbt-primary-light);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.sbt-tour-thumbnail {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sbt-tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sbt-tour-item:hover .sbt-tour-thumbnail img {
    transform: scale(1.1);
}

.sbt-tour-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sbt-tour-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0;
}

.sbt-tour-type-label {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    color: var(--sbt-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: fit-content;
}

.sbt-tour-meta-list {
    display: grid;
    gap: 8px;
}

.sbt-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--sbt-gray-700);
}

.sbt-meta-row svg {
    color: var(--sbt-primary);
    flex-shrink: 0;
}

/* Detail Groups */
.sbt-detail-group {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--sbt-gray-200);
}

.sbt-detail-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sbt-detail-title svg {
    color: var(--sbt-primary);
}

.sbt-detail-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--sbt-gray-900);
}

/* Dates List */
.sbt-dates-list {
    display: grid;
    gap: 12px;
}

.sbt-date-item {
    padding: 14px 16px;
    background: var(--sbt-white);
    border-left: 4px solid var(--sbt-primary);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sbt-gray-900);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sbt-date-item:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Destinations Route */
.sbt-destinations-route {
    font-size: 16px;
    font-weight: 600;
    color: var(--sbt-primary);
    padding: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Sidebar */
.sbt-confirmation-sidebar {
    display: grid;
    gap: 24px;
    align-content: start;
}

/* Summary Rows */
.sbt-summary-rows {
    display: grid;
    gap: 16px;
}

.sbt-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
}

.sbt-summary-label {
    font-size: 14px;
    color: var(--sbt-gray-600);
    font-weight: 600;
}

.sbt-summary-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    text-align: right;
}

.sbt-summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--sbt-gray-200) 50%, transparent 100%);
    margin: 8px 0;
}

.sbt-summary-total {
    padding-top: 16px;
    border-top: 2px solid var(--sbt-primary);
    margin-top: 8px;
    align-items: center;
}

.sbt-summary-total .sbt-summary-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--sbt-gray-900);
}

.sbt-summary-total .sbt-summary-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--sbt-primary);
}

/* Customer Info */
.sbt-customer-info {
    display: grid;
    gap: 16px;
}

.sbt-info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 12px 0;
}

.sbt-info-row.sbt-info-full {
    grid-template-columns: 1fr;
    gap: 8px;
}

.sbt-info-label {
    font-size: 13px;
    color: var(--sbt-gray-600);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sbt-info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--sbt-gray-900);
}

.sbt-info-full .sbt-info-value {
    padding: 12px;
    background: var(--sbt-gray-50);
    border-radius: 8px;
    border-left: 3px solid var(--sbt-primary);
}

/* Important Info */
.sbt-important-info {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--sbt-accent);
}

.sbt-info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sbt-info-title svg {
    color: var(--sbt-accent);
}

.sbt-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.sbt-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--sbt-gray-700);
    padding-left: 24px;
    position: relative;
}

.sbt-info-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--sbt-accent);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

/* Confirmation Footer */
.sbt-confirmation-footer {
    text-align: center;
    padding: 32px;
    background: var(--sbt-gray-50);
    border-radius: 12px;
    margin-top: 40px;
    border: 1px dashed var(--sbt-gray-300);
}

.sbt-confirmation-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    color: var(--sbt-gray-700);
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.sbt-confirmation-footer p:last-child {
    margin: 0;
}

.sbt-confirmation-footer svg {
    color: var(--sbt-primary);
    flex-shrink: 0;
}

.sbt-confirmation-footer strong {
    color: var(--sbt-primary);
    font-weight: 700;
}

/* Error States */
.sbt-confirmation-error {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--sbt-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sbt-error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sbt-danger), #dc2626);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.3);
}

.sbt-error-icon svg {
    color: var(--sbt-white);
}

.sbt-confirmation-error h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 16px 0;
}

.sbt-confirmation-error p {
    font-size: 16px;
    color: var(--sbt-gray-600);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.sbt-confirmation-error p:last-child {
    margin: 0;
}

/* Print Styles for Confirmation */
@media print {
    .sbt-confirmation-actions,
    .sbt-export-pdf,
    .sbt-print-confirmation {
        display: none !important;
    }

    .sbt-booking-confirmation {
        padding: 20px;
    }

    .sbt-confirmation-content-grid {
        grid-template-columns: 1fr;
    }

    .sbt-confirmation-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--sbt-gray-300);
    }
}

/* Responsive Confirmation */
@media (max-width: 1024px) {
    .sbt-confirmation-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sbt-confirmation-header {
        padding: 40px 24px;
    }

    .sbt-confirmation-title {
        font-size: 32px;
    }

    .sbt-code-value {
        font-size: 24px;
    }

    .sbt-confirmation-section {
        padding: 24px;
    }

    .sbt-tour-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sbt-tour-thumbnail {
        width: 100%;
        height: 200px;
    }

    .sbt-info-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sbt-summary-total .sbt-summary-value {
        font-size: 24px;
    }

    .sbt-confirmation-actions {
        flex-direction: column;
    }

    .sbt-export-pdf,
    .sbt-print-confirmation {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sbt-confirmation-title {
        font-size: 24px;
    }

    .sbt-confirmation-subtitle {
        font-size: 16px;
    }

    .sbt-code-value {
        font-size: 20px;
    }

    .sbt-confirmation-header {
        padding: 30px 20px;
    }

    .sbt-confirmation-section {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .sbt-booking-widget,
    .sbt-btn,
    .sbt-booking-card {
        display: none;
    }
}

/* =======================
   FILTER SIDEBAR
   ======================= */

/* Tour Archive with Sidebar Layout */
.sbt-tour-archive.sbt-has-sidebar-filters {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* Filter Sidebar */
.sbt-filters-sidebar {
    background: var(--sbt-white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--sbt-gray-100);
    position: sticky;
    top: 20px;
}

.sbt-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--sbt-gray-100);
}

.sbt-filters-title {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sbt-filters-title svg {
    color: var(--sbt-primary);
}

.sbt-clear-filters {
    padding: 6px 14px;
    background: var(--sbt-gray-100);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sbt-gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sbt-clear-filters:hover {
    background: var(--sbt-danger);
    color: var(--sbt-white);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Filter Sections */
.sbt-filter-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sbt-gray-100);
}

.sbt-filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sbt-filter-section-title {
    font-size: 15px !important;
    font-weight: 700;
    color: var(--sbt-gray-900);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sbt-filter-section-title svg {
    color: var(--sbt-primary);
    flex-shrink: 0;
}

/* Search Filter */
.sbt-filter-search {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--sbt-gray-200);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-filter-search:focus {
    outline: none;
    border-color: var(--sbt-primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: linear-gradient(to bottom, #ffffff 0%, #fafbff 100%);
}

.sbt-filter-search::placeholder {
    color: var(--sbt-gray-400);
}

/* Filter Options - Checkboxes */
.sbt-filter-options {
    display: grid;
    gap: 10px;
}

.sbt-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--sbt-gray-50);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sbt-filter-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbt-filter-checkbox:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: var(--sbt-primary-light);
    transform: translateX(6px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.sbt-filter-checkbox:hover::before {
    opacity: 1;
}

.sbt-filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--sbt-primary);
    flex-shrink: 0;
}

.sbt-filter-checkbox span {
    font-size: 14px;
    color: var(--sbt-gray-700);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.sbt-filter-checkbox input[type="checkbox"]:checked + span {
    font-weight: 700;
    color: var(--sbt-primary);
}

/* Filter Range Slider */
.sbt-filter-range {
    padding: 8px 0;
}

.sbt-filter-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--sbt-gray-200);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.sbt-filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.sbt-filter-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
}

.sbt-filter-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sbt-primary-light), var(--sbt-primary));
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.sbt-filter-slider::-moz-range-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
}

.sbt-filter-range-value {
    margin-top: 12px;
    font-size: 14px;
    color: var(--sbt-gray-700);
    text-align: center;
    font-weight: 600;
}

.sbt-range-current {
    color: var(--sbt-primary);
    font-weight: 700;
    font-size: 18px;
}

.sbt-range-separator {
    margin: 0 4px;
    color: var(--sbt-gray-400);
}

.sbt-range-max {
    color: var(--sbt-gray-600);
}

/* Tours Main Content Area */
.sbt-tours-main-content {
    min-width: 0;
}

/* =======================
   BOOKING SEARCH BAR
   ======================= */

.sbt-booking-search-bar {
    padding: 0 40px 24px;
    border-bottom: 1px solid var(--sbt-gray-100);
}

.sbt-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sbt-search-input-wrapper svg {
    position: absolute;
    left: 16px;
    color: var(--sbt-gray-400);
    pointer-events: none;
}

.sbt-booking-search-input {
    width: 100%;
    padding: 14px 50px 14px 48px;
    border: 2px solid var(--sbt-gray-200);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--sbt-white);
}

.sbt-booking-search-input:focus {
    outline: none;
    border-color: var(--sbt-primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: linear-gradient(to bottom, #ffffff 0%, #fafbff 100%);
}

.sbt-booking-search-input::placeholder {
    color: var(--sbt-gray-400);
}

.sbt-search-clear {
    position: absolute;
    right: 14px;
    background: var(--sbt-gray-200);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.sbt-search-clear:hover {
    background: var(--sbt-danger);
    color: var(--sbt-white);
    transform: scale(1.15);
}

.sbt-search-clear svg {
    width: 14px;
    height: 14px;
}

/* Hide/Show Tours Based on Filter */
.sbt-tour-card-archive.sbt-filtered-hidden {
    display: none;
}

/* Mobile Filter Toggle Button */
.sbt-mobile-filter-toggle {
    display: none !important;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--sbt-primary-light) 0%, var(--sbt-primary) 100%);
    color: var(--sbt-white) !important;
    border: none !important;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 24px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sbt-mobile-filter-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.sbt-mobile-filter-toggle:hover::before {
    left: 100%;
}

.sbt-mobile-filter-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.sbt-mobile-filter-toggle:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.sbt-mobile-filter-toggle.active {
    background: linear-gradient(135deg, var(--sbt-danger) 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.sbt-mobile-filter-toggle svg {
    flex-shrink: 0;
}

.sbt-filter-count {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

/* Responsive Filters */
@media (max-width: 1199px) {
    .sbt-mobile-filter-toggle {
        display: flex !important;
        width: fit-content !important;
    }
    .sbt-tour-archive.sbt-has-sidebar-filters {
        grid-template-columns: 1fr !important;
    }
    .sbt-filters-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
        border-radius: 0;
    }

    .sbt-filters-sidebar.active {
        left: 0;
    }

    .sbt-filters-sidebar::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
    }

    .sbt-filters-sidebar.active::before {
        opacity: 1;
        pointer-events: none;
        left: 400px;
    }

    .sbt-filters-header {
        position: sticky;
        top: 0;
        background: var(--sbt-white);
        z-index: 10;
        padding: 20px 0;
        margin: 0 0 20px 0;
    }

    .sbt-filter-section {
        animation: filterSlideIn 0.3s ease backwards;
    }

    .sbt-filter-section:nth-child(1) { animation-delay: 0.05s; }
    .sbt-filter-section:nth-child(2) { animation-delay: 0.1s; }
    .sbt-filter-section:nth-child(3) { animation-delay: 0.15s; }
    .sbt-filter-section:nth-child(4) { animation-delay: 0.2s; }
    .sbt-filter-section:nth-child(5) { animation-delay: 0.25s; }

    @keyframes filterSlideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Horizontal wrap for filter options */
    .sbt-filter-options {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .sbt-filter-checkbox {
        flex: 0 1 auto;
        min-width: fit-content;
        padding: 8px 14px;
    }
}

@media (max-width: 1024px) {
    .sbt-tour-archive.sbt-has-sidebar-filters {
        grid-template-columns: 1fr;
    }

    .sbt-filters-sidebar {
        position: static;
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .sbt-filters-sidebar {
        padding: 20px;
    }

    .sbt-booking-search-bar {
        padding: 0 24px 20px;
    }

    .sbt-booking-search-input {
        padding: 12px 44px 12px 42px;
        font-size: 14px;
    }
}
