.elementor-2906 .elementor-element.elementor-element-08b8200{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-d48be6d */:root {
    --primary: #4a12cd;
    --light: #4A12CD12;
    --dark: #211d2b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat";
    background: var(--light);
    color: var(--dark);
}

.tickelsa-pos {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.pos-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pos-logo {
    height: 40px;
    width: auto;
}

.pos-header h1 {
    flex: 1;
    margin-left: 20px;
    font-size: 24px;
    color: var(--dark);
}

.pos-cart-icon {
    position: relative;
    cursor: pointer;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.pos-cart-icon:hover {
    background: var(--light);
}

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

/* Container */
.pos-container {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.pos-events-panel,
.pos-tickets-panel,
.pos-cart-panel {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.pos-events-panel {
    display: block;
}

.pos-tickets-panel {
    max-width: 800px;
}

.pos-cart-panel {
    width: 350px;
    background: white;
    border-left: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none !important;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.event-info {
    padding: 15px;
}

.event-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.event-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.event-info small {
    font-size: 12px;
    color: var(--primary);
}

/* Tickets Panel */
.back-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.back-btn:hover {
    opacity: 0.7;
}

.event-header h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

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

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Tickets */
.ticket-item {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e0e0;
}

.ticket-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.ticket-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}

.ticket-item small {
    font-size: 12px;
    color: #999;
}

.ticket-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.quantity-input {
    width: 50px;
    padding: 6px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

/* Seating Charts */
.seating-chart-item {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
}

.seating-chart-item h4 {
    margin-bottom: 10px;
}

.pick-seats-btn {
    width: 100%;
}

/* Cart */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.cart-header h2 {
    font-size: 20px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 15px;
}

.cart-item {
    background: var(--light);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h5 {
    font-size: 13px;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 12px;
    color: #666;
}

.cart-item-price {
    color: var(--primary);
    font-weight: bold;
}

.remove-item-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
}

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

.cart-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

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

/* Buttons */
.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: #e0e0e0;
    color: var(--dark);
}

.btn-secondary:hover {
    background: #d0d0d0;
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .pos-container {
        flex-direction: column;
    }
    
    .pos-cart-panel {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        max-height: 300px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .pos-header {
        flex-wrap: wrap;
    }
    
    .pos-header h1 {
        flex: none;
        width: 100%;
        margin-left: 0;
    }
}/* End custom CSS */
/* Start custom CSS */.tpos-wrapper {
    margin: 0px !important;
}/* End custom CSS */