/* Product Page General Styles */
.product-page-area {
    background-color: #f8f9fa;
}

/* Product Sidebar Styles */
.product-sidebar .sidebar-widget {
    background: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.product-sidebar .sidebar-widget .search-widget {
    position: relative;
}

.product-sidebar .sidebar-widget .search-widget input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.product-sidebar .sidebar-widget .search-widget button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    color: #007bff;
}

.product-sidebar .sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.product-sidebar .sidebar-list {
    list-style: none;
    padding-left: 0;
}

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

.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    /* margin-bottom: 12px; */
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #007bff;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* Product Card Styles */
.product-card {
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    /* margin-bottom: 30px; */
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.12);
} */

.product-image {
    flex: 0 0 40%;
    height: 200px;
    min-height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* flex-grow: 1; */
}

.product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px 20px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.seat-availability {
    background-color: #E9EBEE;
    color: #FF0000;
    font-weight: 700;
    padding: 5px;
    font-size: 14px;
}

.product-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 10px 20px;
    flex-grow: 1;
}

.product-info .product-date {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-features li {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.product-features li i {
    color: #28a745;
    margin-right: 5px;
}

.btn-book-now {
    background-color: #fff;
    color: #333;
    border: 1px solid #ced4da;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.btn-book-now:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
    text-decoration: none;
}

/* Mobile responsive styles for book now button */
@media (max-width: 768px) {
    .btn-book-now {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 100px;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .btn-book-now {
        padding: 14px 16px;
        font-size: 13px;
        min-width: 90px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .btn-book-now {
        padding: 12px 14px;
        font-size: 12px;
        min-width: 80px;
        letter-spacing: 0.5px;
    }
}

/* Button container for manage and booking buttons */
.btn-action-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

/* Manage button styles */
.btn-manage {
    background-color: #fff;
    color: #333;
    border: 1px solid #ced4da;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 100px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.btn-manage:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
    text-decoration: none;
}

/* Booking button styles */
.btn-booking {
    background-color: #dc3545;
    color: #fff;
    border: 1px solid #dc3545;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 100px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.btn-booking:hover {
    background-color: #c82333;
    color: #fff;
    border-color: #c82333;
    text-decoration: none;
}

/* Mobile responsive styles for manage and booking buttons */
@media (max-width: 768px) {
    .btn-action-container {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .btn-manage, .btn-booking {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 120px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .btn-manage, .btn-booking {
        padding: 14px 12px;
        font-size: 12px;
        min-width: 100px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .btn-manage, .btn-booking {
        padding: 12px 10px;
        font-size: 11px;
        min-width: 90px;
        letter-spacing: 0.3px;
    }
}

.product-footer {
    background-color: #0f172a;
    color: #fff;
    padding: 10px 20px;
    font-size: 12px;
}

.product-share {
    background-color: #075E54;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    /* transform: rotate(180deg); */
    padding: 10px;
    /* border-top-right-radius: 15px;
    border-bottom-right-radius: 15px; */
}

.product-share a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-share a span {
    writing-mode: horizontal-tb;
    font-weight: 600;
}

/* .product-share a i {
    font-size: 24px;
    transform: rotate(90deg);
} */

@media (max-width: 991px) {
    .product-card {
        flex-direction: column;
    }
    .product-image {
        flex-basis: 200px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0;
    }
    .product-share {
        writing-mode: horizontal-tb;
        transform: rotate(0);
        border-radius: 0;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .product-share a i {
        transform: rotate(0);
    }
}
