.bsm-product-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden
}

.bsm-product-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right,#ff5757,#ff8a5b)
}

.bsm-tab-content {
    padding: 20px 0
}

.bsm-product-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center
}

.bsm-product-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #ff6b01;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
	min-width: 260px;
   
}
.bsm-product-description-title{
    font-size: 18px;
    font-weight: 600;
    color: #ff6b01;
    margin-bottom: 10px;
}
.bsm-product-description ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    padding-left: 20px;
}
.bsm-product-description li{
    margin-bottom: 10px;
    position: relative;
    font-weight: 500;
}
.bsm-product-description li:before{
    content: url("../icons/check-38.svg");
    color: #ff6b01;
    position: absolute;
    left: -21px;
    top: 2px;
    width: 15px;
    height: 15px;
}
.bsm-product-quality-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.1)
}

.bsm-quality-option {
    padding: 15px 30px;
    background-color: #f8f8f8;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    flex: 1;
    border: 1px solid #e0e0e0;
    transition: all .3s ease;
    position: relative
}

.bsm-quality-option.active {
    background-color: #f8f8f8;
    color: #333
}

.bsm-quality-option.recommended {
    background-color: #4285f4;
    color: #fff
}

.bsm-recommended-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #ff6b01;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px
}

.bsm-product-cards {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.bsm-product-tier {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 20px;
    position: relative
}

.bsm-bulk-tier {
    margin-top: 40px;
    padding-top: 20px;
    position: relative
}

.bsm-bulk-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,.2)
}

.bsm-product-card {
    position: relative;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    overflow: hidden;
    transition: all .3s ease;
    border: 2px solid transparent
}

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

.bsm-product-card.recommended {
    border-color: #4285f4;
    box-shadow: 0 5px 20px rgba(66,133,244,.2)
}

.bsm-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff6b01;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700
}

.bsm-product-card-header {
    text-align: center;
    padding: 25px 15px 15px;
    background-color: #f8f8f8
}

.bsm-product-quantity {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #333
}

.bsm-product-card-body {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.6
}

.bsm-product-card-body ul {
    padding-left: 20px;
    margin: 0
}

.bsm-product-card-body li {
    margin-bottom: 8px
}

.bsm-product-card-footer {
    padding: 15px 20px 25px;
    text-align: center
}

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

.bsm-product-price del {
    color: #999;
    font-weight: 400;
    font-size: 16px
}

.bsm-product-price ins {
    text-decoration: none;
    color: #4285f4;
    margin-left: 5px
}

.bsm-product-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #4285f4;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease
}

.bsm-product-buy:hover {
    background-color: #3367d6
}

.bsm-button-icon {
    margin-left: 8px;
    display: flex;
    align-items: center
}

.bsm-button-icon img {
    width: 16px;
    height: 16px
}

.bsm-extra-features {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #eaeaea
}

#bsm_popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease,visibility .3s ease
}

#bsm_popup.active {
    opacity: 1;
    visibility: visible
}

.bsm-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    overflow: auto
}

.bsm-popup-container {
    background-color: #fff;
    width: 90%;
    max-width: 1080px;
    max-height: 750px;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    overflow: hidden;
    position: relative;
    animation: bsmPopupFadeIn .3s ease-out;
    z-index: 9999999
}

@keyframes bsmPopupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

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

.bsm-popup-header {
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.bsm-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.bsm-popup-close {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color .2s
}

.bsm-popup-close:hover {
    color: #ff5757
}

.bsm-popup-body {
    height: calc(90vh - 70px);
    max-height: 700px;
    overflow: hidden
}

.bsm-popup-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px
}

.bsm-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,87,87,.2);
    border-top: 3px solid #ff5757;
    border-radius: 50%;
    animation: bsmSpin 1s linear infinite
}

.bsm-spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: bsmSpin 1s linear infinite
}

@keyframes bsmSpin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.bsm-error-message {
    padding: 20px;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin: 20px;
    text-align: center
}

.bsm-tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: visible;
    background-color: transparent;
    gap: 15px;
    flex-wrap: wrap;
    box-shadow: none
}

.bsm-tab-item:last-child {
    border-right: none
}

.bsm-tab-item.active {
    background-color: #fff;
    color: #000;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    transform: translateY(-2px)
}

.bsm-tab-item:hover:not(.active) {
    background-color: #f1f3f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,.07)
}

.bsm-tab-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #ff5757;
    color: #fff;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    z-index: 2;
    white-space: nowrap
}

.bsm-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: rgba(0,0,0,.05);
    color: #555;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    cursor: pointer;
    position: relative;
    transition: all .2s ease
}

.bsm-help-icon:hover {
    background-color: rgba(0,0,0,.1);
    color: #333
}

.bsm-tooltip-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none
}

.bsm-tooltip-active {
    display: block
}

.bsm-tooltip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    cursor: pointer
}

.bsm-tooltip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 90%;
    width: 500px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,.15);
    padding: 25px;
    z-index: 10000;
    overflow-y: auto
}

.bsm-tooltip-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee
}

.bsm-tooltip-content {
    font-size: 14px;
    line-height: 1.6;
    color: #555
}

.bsm-tooltip-content p {
    margin-bottom: 12px
}

.bsm-tooltip-content ul {
    padding-left: 20px;
    margin-bottom: 15px
}

.bsm-tooltip-content li {
    margin-bottom: 8px
}

.bsm-tooltip-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    font-size: 22px;
    line-height: 22px;
    text-align: center;
    color: #999;
    cursor: pointer;
    transition: color .2s ease
}

.bsm-tooltip-close:hover {
    color: #333
}

.tabs-style-default .bsm-tab-item {
    max-width: 200px;
    padding: 18px 24px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    background-color: #f8f9fa;
    color: #333;
    position: relative;
    flex: 1;
    margin-top: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    min-width: 120px
}

.tabs-style-default .bsm-tab-item.active {
    background-color: #fff;
    color: #000;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    transform: translateY(-2px)
}

.tabs-style-default .bsm-tab-item:hover:not(.active) {
    background-color: #f1f3f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,.07)
}

.tabs-style-modern .bsm-tab-item {
    max-width: 200px;
    padding: 16px 22px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    background-color: #f8f9fa;
    color: #333;
    position: relative;
    flex: 1;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    min-width: 120px;
    border-bottom: 3px solid transparent
}

.tabs-style-modern .bsm-tab-item.active {
    background-color: #fff;
    color: #000;
    border-bottom: 3px solid #ff5757;
    box-shadow: none;
    transform: none
}

.tabs-style-modern .bsm-tab-item:hover:not(.active) {
    background-color: #f1f3f5;
    transform: none;
    box-shadow: none
}

.tabs-style-gradient .bsm-tab-item {
    max-width: 200px;
    padding: 18px 24px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    background-image: linear-gradient(to right,#4e73df,#224abe);
    color: #fff;
    position: relative;
    flex: 1;
    margin-top: 12px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,.1);
    min-width: 120px
}

.tabs-style-gradient .bsm-tab-item.active {
    background-image: linear-gradient(to right,#224abe,#4e73df);
    color: #fff;
    box-shadow: 0 5px 12px rgba(0,0,0,.15);
    transform: translateY(-2px)
}

.tabs-style-gradient .bsm-tab-item:hover:not(.active) {
    opacity: .95;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,.12)
}

.tabs-style-bordered .bsm-tab-item {
    padding: 16px 22px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    background-color: transparent;
    color: #333;
    position: relative;
    flex: 1;
    margin-top: 12px;
    border-radius: 10px;
    box-shadow: none;
    border: 2px solid #eaeaea
}

.tabs-style-bordered .bsm-tab-item.active {
    background-color: transparent;
    color: #ff5757;
    border-color: #ff5757;
    box-shadow: none;
    transform: none
}

.tabs-style-bordered .bsm-tab-item:hover:not(.active) {
    background-color: rgba(0,0,0,.02);
    transform: none;
    box-shadow: none
}

.bsm-product-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden
}

.product-bg-style-1 .bsm-product-container {
    background-color: #fff
}

.product-bg-style-2 .bsm-product-container {
    background-color: #f9f9f9
}

.product-bg-style-3 .bsm-product-container {
    background-color: #f5f7fa
}

.product-bg-style-gradient-1 .bsm-product-container {
    background: linear-gradient(135deg,#fff,#f5f7fa)
}

.product-bg-style-gradient-2 .bsm-product-container {
    background: linear-gradient(135deg,#f9f9f9,#efefef)
}

@media (max-width: 768px) {
    .bsm-tooltip {
        width:95%;
        max-height: 80vh
    }

    .bsm-tooltip-title {
        font-size: 16px;
        padding-right: 30px
    }
}

@media (max-width: 576px) {
    .bsm-tabs-nav {
        flex-direction:column;
        gap: 10px
    }

    .bsm-tab-item {
        width: 100%;
        max-width: 100%
    }
}

.bsm-product-content {
    display: flex;
    width: 100%;
    gap: 30px;
    justify-content: space-between
}

/* .bsm-product-left {
    flex: 0 0 67%;
} */

.bsm-product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin-bottom: 30px
}

@media (max-width: 1024px) {
    .bsm-product-grid {
        grid-template-columns:repeat(3,1fr)
    }
}

@media (max-width: 768px) {
    .bsm-product-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .bsm-product-content {
        flex-direction: column;
        gap: 0;
    }

    .bsm-product-left,.bsm-product-right {
        flex: 0 0 100%
    }

    .bsm-product-right {
        margin-top: 20px
    }
}

.bsm-quantity-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center
}

.bsm-quantity-card {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    padding: 20px 15px;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    cursor: pointer;
    transition: all .3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative
}

.bsm-quantity-card:hover {
    background-color: #f1f3f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,.08)
}

.bsm-quantity-card.selected {
    border-color: #ff5757;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    transform: translateY(-3px)
}

.bsm-quantity-value {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px
}

.bsm-quantity-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px
}

.bsm-quantity-price {
    font-weight: 600;
    color: #ff5757;
    font-size: 16px
}

.bsm-bestseller-badge {
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #000;
    width: 85px;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    z-index: 1
}

.bsm-custom-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6c5ce7;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    z-index: 1
}

.bsm-price-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    transition: all .3s ease;
}

.bsm-price-display {
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bsm-price-display .bsm-you-save {
    font-size: 14px;
    margin-left: 8px
}

.bsm-price-display del {
    margin-right: 11px;
    font-size: 18px;
    color: #999;
    font-weight: 500
}

.bsm-price-display ins {
    text-decoration: none;
    font-size: 24px
}

.bsm-price-display ins .bsm-currency {
    font-size: 16px;
    margin-right: 2px;
    vertical-align: 8px;
    color: #3c3c3c;
}

.bsm-price-label {
    font-weight: 500;
    margin-right: 5px
}

.bsm-price-value {
    font-weight: 700;
    color: #ff5757;
    font-size: 30px
}

.bsm-currency {
    font-size: 18px;
    margin-right: 5px;
    vertical-align: 2px
}

.bsm-order-now-container {
    text-align: center;
    margin-top: 30px
}

.bsm-order-now-btn {
    background: linear-gradient(to right,#ff5757,#ff8a5b);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 17px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255,87,87,.25);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    min-width: 250px;
}

.bsm-order-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,87,87,.3);
    background: linear-gradient(to right,#ff4747,#ff7a4b);
    color: #fff
}

.bsm-product-features {
    flex: 0 0 30%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    min-height: 300px;
    border: 4px solid #4285f4
}

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

.bsm-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.4
}

.feature-icon {
    margin-right: 10px;
    display: flex;
    align-items: center
}

.feature-icon img {
    width: 16px;
    height: 16px
}

.bsm-service-highlight-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
    justify-content: center;
    align-items: center
}

.bsm-service-highlight-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 5px 10px;
    color: #666
}

.bsm-service-highlight-list li img {
    width: 16px;
    height: 16px;
    margin-right: 6px
}

.bsm-product-quality-selector {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,.05)
}

.bsm-quality-option {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    background-color: #f8f9fa;
    color: #333;
    position: relative
}

.bsm-quality-option.active {
    background-color: #fff;
    color: #000
}

.bsm-quality-option.recommended {
    background-color: #f8f9fa;
    color: #333
}

.bsm-quality-option.recommended.active {
    background-color: #fff;
    color: #000
}

.bsm-recommended-tag {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #ff5757;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px
}

.bsm-product-cards {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.bsm-product-tier {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: relative
}

.bsm-bulk-label {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #6c5ce7;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 600
}

.bsm-tooltip-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none
}

.bsm-tooltip-active {
    display: block
}

.bsm-popup-content {
    display: flex;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    max-height: 690px;
}

.bsm-popup-form-container {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    border-right: 1px solid #eee
}

.bsm-popup-api-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    max-height: calc(750px - 60px);
    /* height: 100%; */
}

.bsm-popup-api-header {
    padding: 8px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 2px 4px rgb(0 0 0 / 24%);
}

.bsm-popup-api-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600
    
}

.bsm-selected-count {
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #555
}

.post-info span svg {
    width: 12px;
    height: 12px;
    margin-right: 4px
}

.bsm-product-summary {
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-radius: 8px
}

.bsm-product-info h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333
}

.bsm-quantity-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px
}

.bsm-price-info {
    font-weight: 600;
    color: #ff5757
}

#bsm_service_selection {
    margin-bottom: 20px
}

.bsm-service-selection-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.bsm-service-selection-dropdown {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff
}

#bsm_form_inputs .form-group {
    margin-bottom: 20px
}

#bsm_form_inputs label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px
}

#bsm_form_inputs input[type=email],#bsm_form_inputs input[type=number],#bsm_form_inputs input[type=text],#bsm_form_inputs select,#bsm_form_inputs textarea,.bsm-service-selection-dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    transition: all .2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.05) inset
}

#bsm_form_inputs input[type=email]:focus,#bsm_form_inputs input[type=number]:focus,#bsm_form_inputs input[type=text]:focus,#bsm_form_inputs select:focus,#bsm_form_inputs textarea:focus,.bsm-service-selection-dropdown:focus {
    border-color: #ff5757;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(255,87,87,.1)
}

#bsm_form_inputs input[type=email]::placeholder,#bsm_form_inputs input[type=number]::placeholder,#bsm_form_inputs input[type=text]::placeholder,#bsm_form_inputs textarea::placeholder {
    color: #aaa;
    font-style: italic
}

#bsm_form_inputs textarea {
    min-height: 120px;
    resize: vertical
}

#bsm_form_inputs .description {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
    font-style: italic
}

.bsm-service-selection-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333;
    font-size: 14px
}

.bsm-service-selection-dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    padding-right: 35px;
    cursor: pointer
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(to right,#ff5757,#ff8a5b);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 10px rgba(255,87,87,.25)
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,87,87,.3);
    background: linear-gradient(to right,#ff4747,#ff7a4b)
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none
}

#load_posts {
    background-color: #ff5757;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

#load_posts:hover {
    background-color: #ff4747;
    transform: translateY(-1px)
}

#load_posts:disabled {
    background-color: #ccc;
    cursor: not-allowed
}

.bsm-spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: bsmSpin 1s linear infinite;
    margin-right: 8px;
    display: inline-block
}

.bsm-error-message,.bsm-success-message {
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center
}

.bsm-error-message {
    background-color: #fff2f2;
    color: #d32f2f;
    border: 1px solid #ffcdd2
}

.bsm-success-message {
    background-color: #f1f8e9;
    color: #43a047;
    border: 1px solid #dcedc8
}

.bsm-success-message p {
    margin: 10px 0 0
}

.bsm-success-message .button {
    display: inline-block;
    background-color: #43a047;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    margin: 0 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease
}

.bsm-success-message .button:hover {
    background-color: #388e3c
}

@media (max-width: 768px) {
    .bsm-popup-content {
        flex-direction:column
    }

    .bsm-popup-form-container {
        border-right: none;
        border-bottom: 1px solid #eee;
        
    }

    .bsm-popup-api-container {
       display: none;
    }
    .bsm-price-cta.buttom-fixed{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 99999;
        margin-bottom: 0;
        padding: 10px;
        box-shadow: 2px 2px 4px #000;
        flex-direction: row;
        justify-content: space-between;
    }
    .bsm-price-display{
        margin-bottom: 5px;
    }
    .bsm-price-cta.buttom-fixed .bsm-order-now-btn{
        padding: 10px;
        max-width: 150px;
        min-width:130px;
    }
    .bsm-price-cta.buttom-fixed .bsm-you-save{
        display: none;
        position: absolute;
        bottom: 5px;
        left: 0;
        font-size: 8px;
        
    }
    .bsm-price-cta.buttom-fixed .bsm-reviews{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
}
