.gtbs-booking-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.gtbs-form-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 1.5em;
}

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

.gtbs-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
    font-size: 0.95em;
}

.gtbs-input,
.gtbs-select,
.gtbs-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    /* Important for width 100% */
}

.gtbs-input:focus,
.gtbs-select:focus,
.gtbs-textarea:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.gtbs-price-display {
    background: #f0f7ff;
    border: 1px solid #cce5ff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    color: #004085;
}

.gtbs-price-display .label {
    display: block;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.gtbs-price-display .price {
    font-size: 1.8em;
    font-weight: bold;
    color: #0066cc;
}

.gtbs-button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.gtbs-button:hover {
    background-color: #218838;
}

.gtbs-button:disabled {
    background-color: #94d3a2;
    cursor: not-allowed;
}

.gtbs-message {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.gtbs-message.success {
    color: #28a745;
}

.gtbs-message.error {
    color: #dc3545;
}

/* Gallery Grid */
.gtbs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.gtbs-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.2s;
}

.gtbs-gallery-item img:hover {
    transform: scale(1.02);
}

/* Single Tour Template Layout */
.gtbs-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gtbs-single-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    align-items: flex-start;
}

.gtbs-main-content {
    flex: 2;
    min-width: 300px;
}

.gtbs-sidebar {
    flex: 1;
    min-width: 320px;
    margin-top: 0;
}

.gtbs-sticky-widget {
    position: sticky;
    top: 100px;
    z-index: 99;
}

/* Override wrapper margin in sidebar for better fit */
.gtbs-sidebar .gtbs-booking-wrapper {
    margin: 0;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Featured Image */
.gtbs-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* Entry Title */
.gtbs-entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333;
}

/* Meta Data Box */
.gtbs-meta-info {
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #f4f8fb;
    border-left: 5px solid #007cba;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gtbs-meta-item {
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: center;
}

.gtbs-meta-item strong {
    color: #333;
    margin-right: 5px;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .gtbs-single-row {
        flex-direction: column;
    }

    .gtbs-sidebar {
        width: 100%;
        margin-top: 30px;
    }
}