/* Shop Page Styles */
.shop-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.shop-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.shop-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
}

.search-box button {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 15px 25px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 18px;
}

.shop-content {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.shop-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.shop-main {
    flex: 1;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px var(--shadow);
}

.sidebar-widget h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 18px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background-color: rgba(255, 183, 3, 0.1);
    color: var(--accent);
}

.price-range {
    padding: 20px 0;
}

.price-range input[type="range"] {
    width: 100%;
    margin: 15px 0;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-light);
}

.best-sellers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.best-seller-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
}

.best-seller-item:hover {
    background-color: rgba(255, 183, 3, 0.1);
}

.best-seller-img {
    width: 50px;
    height: 50px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
}

.best-seller-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.best-seller-info .price {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-count {
    color: var(--text-light);
}

.sort-options select {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: var(--white);
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-img {
    height: 200px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.buy-now-btn,
.add-to-cart-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.buy-now-btn {
    background-color: var(--accent);
    color: var(--primary);
}

.buy-now-btn:hover {
    background-color: var(--accent-dark);
}

.add-to-cart-btn {
    background-color: #f8f9fa;
    color: var(--text);
}

.add-to-cart-btn:hover {
    background-color: #e9ecef;
}

/* Image Seat Modal */
.image-seat-modal .modal-content {
    max-width: 900px;
    width: 95%;
}

.modal-row {
    display: flex;
    gap: 30px;
}

.image-selection {
    flex: 2;
}

.seat-selection {
    flex: 1;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.main-image {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: var(--accent);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seat-selection h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

.seat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.seat-option {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seat-option:hover {
    border-color: var(--accent);
    background-color: rgba(255, 183, 3, 0.05);
}

.seat-option.selected {
    border-color: var(--accent);
    background-color: rgba(255, 183, 3, 0.1);
}

.seat-name {
    font-weight: 600;
    color: var(--primary);
}

.seat-price {
    color: var(--accent);
    font-weight: 700;
}

.seat-selection .seat-price {
    font-size: 32px;
    text-align: center;
    margin: 20px 0;
}

.seat-selection .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Admin Protection */
.admin-protection {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.admin-login-form {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    color: white;
}

.admin-login-form h2 {
    margin-bottom: 20px;
    text-align: center;
}

.admin-login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
}

.admin-login-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.error-message {
    color: #ff6b6b;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}

.admin-btn {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--accent);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.admin-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .shop-content {
        flex-direction: column;
    }
    
    .shop-sidebar {
        width: 100%;
    }
    
    .modal-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-actions {
        flex-direction: column;
    }
}