.form-error {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    background: rgba(249, 113, 3, 0.08);
    color: #c74f00;
    border: 1px solid rgba(249, 113, 3, 0.25);
    margin-top: 12px;
    margin-bottom: -4px;
}

.image-preview .preview-img {
    cursor: pointer;
}
.image-preview .preview-img:hover {
    opacity: .85;
    transition: opacity .2s;
}

.msg-success,
.msg-error {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}
.msg-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.msg-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
.msg-icon {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.copy-section {
    cursor: pointer;
}

.banner-block {
    padding: 0;
    overflow: hidden;
}

.product-div ul {
    background-color: #fff;
    position: absolute;
    display: none;
    z-index: 999;
    width: 100%;
    overflow: auto;
    max-height: 300px;
    top: 62px;
    padding-top: 6px;
}
.product-div ul li {
    cursor: pointer;
    padding: 3px 0;
}
.product-div ul.show {
    display: block;
}

.my-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 1.4rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: #f97101;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.my-loader span {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.pg-sb-amount {
    font-size: 18px;
    font-weight: 700;
}
.pg-sb-target {
    font-size: 18px;
    font-weight: 700;
    color: #F97101;
}
.pg-sb-track {
    height: 8px;
    background: #E0E0E0;
    border-radius: 99px;
    margin-right: 6px;
}
.pg-sb-fill {
    height: 100%;
    background: linear-gradient(to right, #FF8A00, #D32F2F);
    border-radius: 99px;
}
.pg-sb-dot {
    width: 12px;
    height: 12px;
    background: #D32F2F;
    border-radius: 50%;
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
}
.pg-sb-tooltip-area {
    height: 44px;
    margin-top: 4px;
}
.pg-sb-tooltip-wrap {
    position: absolute;
    transform: translateX(-50%);
    top: 0;
}
.pg-sb-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #1C1C1C;
    margin: 0 auto;
}
.pg-sb-badge {
    background: #1C1C1C;
    color: #fff;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
}

.text-f97103 {
    color: #f97103;
}
.text-ffd700 {
    color: #FFD700;
}
.text-ad5cff {
    color: #AD5CFF;
}

.btn-weight-minus,
.btn-weight-plus {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-weight-minus {
    left: 24px;
}
.btn-weight-plus {
    right: -2px;
}

.container-add .product-list .product-item .btn-plus {
    right: -2px !important;
}

.container-add .product-list .product-item .btn-minus {
    left: 24px !important;
}

.input-field.countProduct  {
    width: 124px !important;
}

.input-field.weightProduct   {
    width: 124px !important;
}

.input-field.productPrice   {
    width: 114px !important;
}

.container-add .product-list .product-item .count {
    flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
    .input-field.countProduct  {
        width: 100% !important;
    }

    .input-field.weightProduct   {
        width: 100% !important;
    }

    .input-field.productPrice   {
        width: 100% !important;
    }
}

@media screen and (min-width: 1380px) {
    .w-175 {
        width: 175px !important;
    }

    .w-200 {
        width: 200px !important;
    }
}


@media screen and (max-width: 1380px) {
    .hidden-label {
        display: none;
    }
}