/*styles for the sidepanel for the container*/
/*styles for the sidepanel*/
.product-widget .product-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.product-widget .product-body .product-category {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.product-category input {
    height: 100%;
    width: 70%;
}

.icons-01 {
    margin: 0 auto;
    font-size: 14px;
    cursor: pointer;
}

.product-widget .product-img {
    width: 65px;
}

.product-img {
    aspect-ratio: 1/1;
}

.c1sp {
    max-width: 400px;
    border-radius: 0px;
    padding: 0px;
    border-bottom: 1px solid #222;
    margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .c1box {
        flex: 1 1 45%;
    }

    .c1prog-bar {
        font-size: 0.8rem;
    }

    .c1stats {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .c1box {
        flex: 1 1 100%;
    }

    .c1img {
        aspect-ratio: 1;
    }
}

.c1sp-h2 {
    margin-bottom: 15px;
    font-size: 20px;
}

.c1opt {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.c1box {
    text-align: center;
    cursor: pointer;
    padding: 0px;
    border: 2px solid #ddd;
    border-radius: 1px;
    transition: border-color 0.3s ease;
    width: 75px;
}

.c1box.selected {
    border-color: #b23437;
}

.c1img {
    width: 70px;
    height: 70px;
    background-color: #f2f2f2;
    border-radius: 12px;
    margin: 1px auto;
}

.c1prog-wrap {
    background-color: #f0dada;
    border-radius: 20px;
    overflow: hidden;
    height: 25px;
    margin-bottom: 10px;
    position: relative;
}

.c1prog-bar {
    background-color: #b23437;
    height: 100%;
    width: 0%;
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    transition: width 0.5s ease;
}

.c1stats {
    font-size: 15px;
    font-weight: bold;
    color: #666;
    margin-bottom: 15px;
}

.c1input-wrap {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
}

.c1cbm-input {
    flex: 1;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    width: 40%;
    /* For Firefox */
    -moz-appearance: textfield;
}

.c1cbm-input:focus {
    border-color: #b23437;
}

.c1btn-link {
    flex: 1;
    text-decoration: none;
}

.c1btn {
    width: 50%;
    padding: 8px;
    font-size: 1rem;
    background-color: #b23437;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.c1btn:hover {
    background-color: #991f23;
    color: #fff;
}

/* Restore number input spinners for Chrome, Edge, Safari */
.c1cbm-input::-webkit-outer-spin-button,
.c1cbm-input::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button;
    margin: 0;
}

/*</style>< !-- Modal Styles --><style>*/
.modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header {
    position: relative;
    text-align: center;
    padding: 10px 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.modal-title {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.close-modal {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 20px 0;
}

.container-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.products-list {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.product-item:last-child {
    border-bottom: none;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.product-details {
    flex-grow: 1;
}

.product-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.product-details p {
    margin: 5px 0;
    color: #666;
}

.modal-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.btn-proceed {
    background: #b23437;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-proceed:hover {
    background: #991f23;
}

.guest-form {
    display: none;
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b23437;
    outline: none;
}

.action-buttons {
    display: none;
    margin-top: 20px;
    gap: 10px;
}

.action-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-send {
    background: #28a745;
    color: white;
}

.btn-send:hover {
    background: #218838;
}

.btn-save {
    background: #007bff;
    color: white;
}

.btn-save:hover {
    background: #0056b3;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/*</style>< !-- Add these styles for the proceed button --><style>*/
.proceed-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.proceed-button-container .btn-proceed {
    background: #b23437;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.proceed-button-container .btn-proceed:hover {
    background: #991f23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.proceed-button-container .btn-proceed i {
    font-size: 18px;
}

@media (max-width: 991px) {
    .proceed-button-container {
        display: none;
    }

    /* Show on small screens */
    .navA1 {
        display: flex;
    }
    #breadcrumb{
        margin-top: 0;
    }
}

/* Hide on large screens */
@media (min-width: 991px) {
    .navA1 {
        display: none !important;
    }
}

.navA1 {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-around;
    padding: 5px 0;
    z-index: 999;
}

.navB2,
.btn-proceed {
    background: transparent;
    padding: 0;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    width: 50%;
}

.btn-proceed:hover,
.navB2:hover {
    background: #ddd;
}

.navIconC1,
.navIconC2,
.navIconC3,
.navIconC4 {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.navTextD1,
.navTextD2,
.navTextD3,
.navTextD4 {
    display: block;
}

/*upload button style*/
.c92d8e_widget {
    background-color: #fff;
    border: 2px solid #b23437;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.f29b1d_title {
    color: #b23437;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.b42cf1_form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.e63cf0_input {
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 4px;
}

.d51be9_button {
    background-color: #b23437;
    color: #fff;
    border: none;
    padding: 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.d51be9_button:hover {
    background-color: #9c2e31;
}

.e40fd3_message {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #b23437;
    text-align: center;
}

/*</style>< !-- Add these notification styles --><style>*/
.product .product-body {
    min-height: 130px;
}

.bread {
    min-height: 1vh;
    margin-top: 115px;
}

/* Add these notification styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.notification {
    background: #fff;
    border-left: 4px solid #b23437;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    color: #b23437;
    font-size: 20px;
}

.notification-message {
    flex-grow: 1;
    font-size: 14px;
    color: #333;
}

.notification-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #b23437;
    width: 100%;
    animation: timer 3s linear forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes timer {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

.notification.removing {
    animation: slideOut 0.3s ease-out forwards;
}