/* WTP Events Stylesheet */

.wtp-events-outer-wrapper,
.wtp-event-detail-container {
    width: 100%;
    margin: 20px auto;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wtp-events-outer-wrapper *,
.wtp-event-detail-container * {
    box-sizing: border-box;
}

/* ==========================================================================
   BLOG-POST CARD LISTINGS
   ========================================================================== */
.wtp-events-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    position: relative;
    transition: opacity 0.3s ease;
}

.wtp-events-list-container.wtp-loading {
    opacity: 0.5;
    pointer-events: none;
}

.wtp-event-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.wtp-event-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.wtp-event-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.wtp-event-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Price Badge */
.wtp-event-badge,
.wtp-event-card-price {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.wtp-event-badge.free,
.wtp-event-card-price.free {
    background: #def7ec;
    color: #03543f;
}

.wtp-event-badge.paid,
.wtp-event-card-price.paid {
    background: #e0f2fe;
    color: #258BE0;
}

.wtp-event-card-details {
    padding: 20px;
}

.wtp-event-card-date {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.wtp-event-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.wtp-event-card-location {
    display: block;
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 12px;
}

.wtp-event-card-excerpt {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   EVENT DETAIL VIEW
   ========================================================================== */
.wtp-event-back-bar {
    margin-bottom: 20px;
}

.wtp-event-back-btn {
    text-decoration: none;
    color: #258BE0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    gap: 6px;
    transition: color 0.2s ease;
}

.wtp-event-back-btn:hover {
    color: #1a6fb5;
    text-decoration: underline;
}

/* Side-by-Side Hero Split Layout */
.wtp-event-detail-hero-split {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.wtp-event-hero-image-col {
    flex: 0 0 45%;
    max-width: 45%;
    position: sticky;
    top: 30px;
    align-self: flex-start;
    border-radius: 12px;
    overflow: hidden;
}

.wtp-event-hero-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    display: block;
}

.wtp-event-hero-info-col {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.wtp-event-hero-info-col .wtp-event-badge {
    position: static;
    display: inline-block;
    width: fit-content;
    margin-bottom: 18px;
    box-shadow: none !important;
    font-size: 1.15rem;
    padding: 8px 16px;
}

.wtp-event-hero-info-col .wtp-event-hero-title {
    color: #111827;
    text-shadow: none;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-align: left;
}

.wtp-event-hero-meta-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.wtp-event-hero-meta-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
}

.wtp-hero-meta-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.wtp-event-hero-meta-item strong {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.wtp-event-hero-meta-item span:not(.wtp-hero-meta-icon) {
    font-size: 1.15rem;
    color: #1f2937;
    font-weight: 600;
}

/* Share Section */
.wtp-event-share-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 25px 0;
    width: 100%;
}

.wtp-share-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.wtp-share-icons {
    display: flex;
    gap: 12px;
}

.wtp-share-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    transition: all 0.2s ease;
}

.wtp-share-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.wtp-share-btn.active {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

/* Maps frame container */
.wtp-event-map-container {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.wtp-event-map-container iframe {
    display: block;
}

.wtp-event-detail-body-full {
    margin-top: 10px;
    padding: 0;
}

.wtp-event-content-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
}

.wtp-event-content-text p {
    margin-bottom: 20px;
}

/* Sign Up Buttons */
.wtp-event-register-btn {
    background: #258BE0;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: capitalize !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease;
}

.wtp-event-register-btn:hover {
    background: #1a6fb5;
}

/* ==========================================================================
   REGISTRATION POPUP MODAL
   ========================================================================== */
body.wtp-modal-open {
    overflow: hidden;
}

.wtp-event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wtp-event-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wtp-event-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    border-bottom: 1px solid #f3f4f6;
}

.wtp-event-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #111827;
    line-height: 1;
}

.wtp-event-modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.wtp-event-modal-close:hover {
    color: #111827;
}

/* Forms layout */
.wtp-event-form {
    padding: 25px;
}

.wtp-form-price-badge {
    background: #f3f4f6;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: #374151;
}

.wtp-form-price-badge strong {
    font-size: 1.45rem;
    color: #258BE0;
    margin-left: 5px;
    display: inline-block;
}

.wtp-form-group {
    margin-bottom: 18px;
}

.wtp-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
}

.wtp-form-group input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
}

.wtp-form-group input:focus {
    outline: none;
    border-color: #258BE0;
    box-shadow: 0 0 0 3px rgba(37, 139, 224, 0.1);
}

.wtp-form-submit-btn {
    width: 100%;
    height: 44px;
    background: #258BE0;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: capitalize !important;
    box-shadow: none !important;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.wtp-form-submit-btn:hover {
    background: #1a6fb5;
}

.wtp-form-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* ==========================================================================
   TICKET RECEIPT VIEW
   ========================================================================== */
.wtp-ticket-box {
    padding: 0;
}

.wtp-ticket-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.wtp-success-checkmark {
    font-size: 44px;
    color: #10b981;
    display: block;
    margin-bottom: 10px;
}

.wtp-ticket-header h4 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
}

.wtp-ticket-header p {
    font-size: 1.05rem;
    color: #6b7280;
    margin: 6px 0 0 0;
}

/* Split Side-by-Side Ticket Layout */
.wtp-ticket-split-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.wtp-ticket-left-image-col {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 12px;
    overflow: hidden;
}

.wtp-ticket-split-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.wtp-ticket-right-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wtp-ticket-title-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 25px 0;
}

.wtp-ticket-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.wtp-ticket-details-list li {
    display: flex;
    flex-direction: column;
    font-size: 1.25rem;
    color: #111827;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.wtp-ticket-details-list li strong {
    font-size: 0.88rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.wtp-ticket-details-list li span {
    font-weight: 600;
}

.wtp-ticket-details-list li.wtp-ticket-code-item {
    border-bottom: none;
    padding-bottom: 0;
}

.wtp-ticket-details-list li code {
    font-size: 1.45rem;
    font-weight: bold;
    font-family: monospace;
    color: #258BE0;
    background: #f0f7ff;
    padding: 6px 12px;
    border-radius: 6px;
    width: fit-content;
}

.wtp-ticket-footer {
    display: flex;
    gap: 15px;
    width: 100%;
}

.wtp-ticket-footer .wtp-ticket-print-btn {
    flex: 1;
    height: 48px;
    background: #111827 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    cursor: pointer;
    font-size: 1.05rem;
    text-transform: capitalize;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wtp-ticket-footer .wtp-ticket-print-btn:hover {
    background: #1f2937 !important;
}

.wtp-ticket-footer .wtp-ticket-back-btn {
    flex: 1;
    height: 48px;
    background: #258BE0 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    cursor: pointer;
    font-size: 1.05rem;
    text-transform: capitalize;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wtp-ticket-footer .wtp-ticket-back-btn:hover {
    background: #1a6fb5 !important;
}

.wtp-ticket-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 15px;
}

/* ==========================================================================
   NUMERICAL PAGINATION
   ========================================================================== */
.wtp-events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.wtp-event-page-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.wtp-event-page-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #111827;
}

.wtp-event-page-btn.active {
    background: #258BE0;
    border-color: #258BE0;
    color: #ffffff;
    cursor: default;
}

/* Style 2: Split Row Cards */
.wtp-events-list-container.style-2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wtp-event-row-card.style-2 {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.25s ease;
}

.wtp-event-row-card.style-2:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.wtp-event-row-image {
    width: 280px;
    height: auto;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.wtp-event-row-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.wtp-event-row-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #258BE0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
    align-self: flex-start;
    text-transform: capitalize !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease;
}

.wtp-event-row-btn:hover {
    background: #1a6fb5;
}

/* Style 3: Minimalist Board Item */
.wtp-events-list-container.style-3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wtp-event-board-item.style-3 {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 5px solid #258BE0;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: none;
    transition: transform 0.2s ease, border-left-color 0.2s ease;
}

.wtp-event-board-item.style-3:hover {
    transform: translateX(4px);
    border-left-color: #1a6fb5;
}

.wtp-event-board-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 24px;
    border-right: 1px solid #f3f4f6;
    margin-right: 24px;
    min-width: 65px;
    flex-shrink: 0;
}

.board-day {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}

.board-month {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
}

.wtp-event-board-info {
    flex-grow: 1;
}

.wtp-event-board-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #111827;
}

.wtp-event-board-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.98rem;
    color: #6b7280;
}

.wtp-event-board-meta span {
    display: inline-flex;
    align-items: center;
}

.wtp-event-board-action {
    flex-shrink: 0;
}

.wtp-event-board-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    color: #258BE0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.2s ease;
}

.wtp-event-board-btn:hover {
    background: #258BE0;
    color: #ffffff;
    border-color: #258BE0;
}

/* Style 4: Interactive Calendar Layout */
.wtp-calendar-container {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: none;
    padding: 24px;
    width: 100%;
}

.wtp-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 16px;
}

.wtp-calendar-month-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.wtp-calendar-nav-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.wtp-calendar-nav-btn:hover {
    background: #e5e7eb;
}

.wtp-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.wtp-calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.wtp-calendar-day {
    min-height: 95px;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    padding: 8px;
    position: relative;
    cursor: pointer;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    transition: all 0.2s ease;
}

.wtp-calendar-day-events {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 5px;
    width: 100%;
}

.wtp-calendar-day-event-name {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #0369a1;
    background: rgba(3, 105, 161, 0.08);
    padding: 2px 4px;
    border-radius: 3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: left;
}

.wtp-calendar-day.selected-day .wtp-calendar-day-event-name {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.25) !important;
}

.wtp-calendar-day:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.wtp-calendar-day.outside-day {
    background: #f9fafb;
    color: #d1d5db;
    cursor: default;
    pointer-events: none;
    border-color: transparent;
}

.wtp-calendar-day.current-day {
    border-color: #4f46e5;
    background: #f5f3ff;
}

.wtp-calendar-day.current-day .day-number {
    color: #4f46e5;
    font-weight: 700;
}

.wtp-calendar-day.has-events {
    background: #e0f2fe;
    border-color: #bae6fd;
}

.wtp-calendar-day.has-events .day-number {
    color: #0369a1;
    font-weight: 700;
}

.wtp-calendar-day.selected-day {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    color: #ffffff !important;
}

.wtp-calendar-day.selected-day * {
    color: #ffffff !important;
}

.day-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.event-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0284c7;
    align-self: center;
}

.wtp-calendar-day.selected-day .event-dot {
    background: #ffffff;
}

/* Calendar Event Drawer */
.wtp-calendar-drawer {
    margin-top: 30px;
    border-top: 1px dashed #e5e7eb;
    padding-top: 24px;
}

.wtp-drawer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
}

.wtp-drawer-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wtp-drawer-event-item {
    display: flex;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.wtp-drawer-event-item:hover {
    transform: translateY(-1px);
}

.wtp-drawer-evt-image {
    width: 140px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.wtp-drawer-evt-details {
    padding: 16px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wtp-drawer-evt-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #111827;
}

.wtp-drawer-evt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.wtp-drawer-load-more-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #ffffff;
    color: #4f46e5;
    border: 1px solid #4f46e5;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wtp-drawer-load-more-btn:hover {
    background: #f5f3ff;
    border-color: #4338ca;
    color: #4338ca;
}

.wtp-drawer-evt-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.wtp-drawer-evt-meta .price-tag {
    font-weight: 700;
    color: #03543f;
}

.wtp-drawer-evt-link {
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wtp-drawer-evt-link:hover {
    color: #4338ca;
}

.wtp-drawer-empty-msg {
    color: #6b7280;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   PRINT STYLES (PDF TICKET GENERATION)
   ========================================================================== */
@media print {
    /* Hide everything on the page except the modal dialog ticket wrapper */
    body * {
        visibility: hidden !important;
    }
    
    #wtp_event_modal,
    #wtp_event_modal *,
    #wtp_event_ticket_container,
    #wtp_event_ticket_container * {
        visibility: visible !important;
    }
    
    #wtp_event_modal {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: auto !important;
        background: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .wtp-event-modal-card {
        box-shadow: none !important;
        max-width: 100% !important;
        border: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .wtp-event-modal-header,
    .wtp-ticket-footer {
        display: none !important; /* Hide close buttons and print buttons */
    }
    
    .wtp-ticket-box {
        padding: 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .wtp-ticket-split-layout {
        display: flex !important;
        flex-direction: row !important;
        gap: 30px !important;
    }

    .wtp-ticket-left-image-col {
        flex: 0 0 35% !important;
        max-width: 35% !important;
    }

    .wtp-ticket-right-info-col {
        flex: 1 !important;
    }

    .wtp-ticket-details-list li {
        border-bottom: 1px solid #000000 !important;
    }

    .wtp-ticket-details-list li code {
        border: 1px solid #000000 !important;
        background: #ffffff !important;
        color: #000000 !important;
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */

@media screen and (max-width: 900px) {
    .wtp-event-detail-hero-split {
        flex-direction: column;
        gap: 0;
        overflow: visible !important;
    }

    .wtp-event-hero-image-col {
        position: sticky !important;
        top: 0;
        z-index: 1;
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 300px;
        border-radius: 0 !important;
    }

    .wtp-event-hero-img {
        border-radius: 0 !important;
    }

    .wtp-event-hero-info-col {
        position: relative;
        z-index: 2;
        background: #ffffff;
        padding: 24px 0;
        border-radius: 0 !important;
        margin-top: 0 !important;
        box-shadow: none !important;
    }

    /* Ticket mobile styles */
    .wtp-ticket-split-layout {
        flex-direction: column !important;
        gap: 25px !important;
    }

    .wtp-ticket-left-image-col {
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .wtp-ticket-split-img {
        max-height: 280px !important;
    }

    .wtp-ticket-right-info-col {
        width: 100% !important;
    }

    .wtp-ticket-footer {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .wtp-ticket-footer button {
        width: 100% !important;
        flex: none !important;
    }

    .wtp-event-map-container {
        margin-top: 20px !important; /* Reduced map margin top on mobile */
    }
}

@media screen and (max-width: 768px) {
    .wtp-event-row-card.style-2 {
        flex-direction: column;
    }
    
    .wtp-event-row-image {
        width: 100%;
        height: 180px;
    }
    
    .wtp-calendar-day {
        min-height: 65px;
        padding: 4px;
    }
    
    .wtp-calendar-day-event-name {
        font-size: 0.58rem !important;
        padding: 1px 2px !important;
    }
    
    .wtp-drawer-event-item {
        flex-direction: column;
    }
    
    .wtp-drawer-evt-image {
        width: 100%;
        height: 120px;
    }
}

@media screen and (max-width: 600px) {
    .wtp-event-hero-image-col {
        min-height: 200px;
        max-height: 220px;
    }

    .wtp-event-hero-info-col .wtp-event-hero-title {
        font-size: 1.5rem;
    }

    .wtp-event-share-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .wtp-share-icons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .wtp-event-board-item.style-3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .wtp-event-board-date {
        flex-direction: row;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid #f3f4f6;
        padding-bottom: 10px;
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }
    
    .board-day {
        font-size: 1.3rem;
    }
    
    .wtp-event-board-action {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

/* ==========================================================================
   CALENDAR DAY EVENTS MODAL LIGHTBOX OVERLAY
   ========================================================================== */
.wtp-cal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.wtp-cal-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.wtp-cal-modal-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 580px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin: 20px;
    animation: wtpCalModalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes wtpCalModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wtp-cal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.wtp-cal-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.wtp-cal-modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    font-weight: 400;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.15s ease;
}

.wtp-cal-modal-close:hover {
    color: #0f172a;
}

.wtp-cal-modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.wtp-cal-modal-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
