.product-card {
    font-size: 0.9em;
    padding: 10px;
    margin: 4px 0 8px;
    border-radius: 5px !important;
    transition: 0.3s;
   background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.product-img-container{
    text-align: center;
}
.product-img-container img {
    border-radius: 3px;
    max-height: 300px;
    max-width: 300px;
}

.product-title {
    margin-bottom: 20px;
    margin-top: 5px;
}

.product-description p{
   line-height: 20px;
    margin: 0 0 8px;
    color: #777777;
}

.product-description p strong {
   color: #777777;
}

.category-wrapper {
    gap: 4px;
}

.category-tab {
    padding: 6px 13px;
    border-width: 3px;
    min-width: 100px;
    color: #f90;
    border-color: #f90;
    background-color: transparent;
}

.category-section-header {
   padding: 50px 0 30px 0;
   scroll-margin-top: 105px;
}

.inner-card {
    margin-bottom: 60px !important;
}

.price-btn {
    margin-top: 20px;
}

.inner-card {
    height: 100%;
}

.product-row{
    margin-bottom: 50px;
}

html {
  scroll-behavior: smooth;
}

.category-section .price{
        font-weight: 600;
}

.product-modal-overlay{
    display:none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgb(104 100 100 / 80%);
    z-index: 999999;
}
.product-modal-overlay .close{
    margin: 0px;
    cursor: pointer;
}
.product-modal-overlay h4{
    color: #ee741d;
    margin-top: 15px;
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: -0.7px;
    line-height: 1.42857;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.product-modal-overlay .product-image img{
    max-height: 200px;
}

.form-back-btn{
    width: 10% !important;
}

.success-footer-note{
    margin-top: 20px;
}

.order-list-wrapper .mobile-label {
    display: none;
}

@media (max-width: 767px) {
    #productDetailModal {
        display: none !important;
    }

    .order-list-wrapper table.order, 
    .order-list-wrapper table.order thead, 
    .order-list-wrapper table.order tbody, 
    .order-list-wrapper table.order tr, 
    .order-list-wrapper table.order td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .order-list-wrapper table.order thead {
        display: none;
    }

    .order-list-wrapper table.order tr {
        margin-bottom: 5px;
        border-bottom: 1px solid #eee;
        background: #fff;
    }

    .order-list-wrapper table.order td.product {
        font-size: 1.3em;
        font-weight: 400;
        text-transform: uppercase;
        padding: 10px 15px;
        background: #f9f9f9; 
        cursor: pointer;
    }

    .order-list-wrapper table.order td:not(.product) {
        display: none; 
        padding: 8px 20px;
        border: none;
        align-items: center;
        justify-content: space-between;
    }

    .order-list-wrapper table.order tr.is-open td:not(.product) {
        display: flex;
        justify-content: flex-start; 
        gap: 25%
    }

    .order-list-wrapper .mobile-label {
        display: inline-block;
        float: left;
        padding: 0;
        font-size: 16px;
    }

    .order-list-wrapper .price-value {
        margin: 0;
        padding-left: 15px;
        font-size: 18px;
    }

    .order-list-wrapper input[type="number"] {
        width: 60px;
        text-align: center;
        border: 1px solid #ccc;
        padding: 4px;
    }
}