.site-number{
    display: flex;
    justify-content: end;
    align-items: center;
}
.header-phone{
    text-align: left;
    margin-left: 15px;
}
.header-phone-text{
    font-size: 14px;
}
.header-phone-num a{
    font-size: 20px;
    margin-left: 2px;
    color: var(--main-color-one);
}
@media (max-width: 480px) {
    .header-phone-text{
        font-size: 13px;
    }
    .header-phone-num b{
        font-size: 17px;
    }
    .product-property {
        display: none;
    }
}
.item-product {
    position: relative;
    overflow: hidden;
}

.item-product .product-card,
.item-product .product-price {
    opacity: 1;
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.item-product:hover .product-card,
.item-product:hover .product-price {
    opacity: 0.5;
}

/* مشخصات محصول */
.product-property {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;

    padding: 15px;

    background: rgba(255, 255, 255, 0.95);

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);

    transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

    z-index: 20;
}

/* نمایش مشخصات */
.item-product:hover .product-property {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.product-property {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;

    padding: 12px 14px;

    background: rgba(255, 255, 255, 0.97);

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);

    transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;

    z-index: 20;
}

/* نمایش هنگام Hover */
.item-product:hover .product-property {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* هر Property */
.property-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 7px 2px;

    font-size: 12px;
    line-height: 1.6;

    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

/* آخرین مورد Border نداشته باشد */
.property-item:last-child {
    border-bottom: none;
}

/* اسم ویژگی */
.property-name {
    color: #777;
    font-weight: 400;
}

/* مقدار ویژگی */
.property-value {
    color: #333;
    font-weight: 500;
}
.pr-title{
    width: 100%;
    background: unset;
    padding: 15px;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-details-btn {
    display: flex;
    justify-content: center;
    gap: 3px;
    padding: 7px 12px;
    color: #555;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-details-arrow {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.product-details-btn:hover {
    color: var(--main-color-one);
    background: #fff;
    border-color: var(--main-color-one);
}
.product-label{
    font-size: 13px;
}
.product-label b{
    color: #353535;
}.product-label span{
     color: var(--main-color-one);
 }.show-product-info {
      direction: rtl;
      width: 100%;
      background: #fff;
      border-radius: 10px;
      padding: 10px 14px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }


/* مشخصات */

.product-spec {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 38px;

    border-bottom: 1px dashed #dedede;

    font-size: 13px;
}
.product-spec:first-child{
    margin-top: -5px !important;
}
.product-spec span {
    color: #999;
}

.product-spec strong {
    color: #333;
    font-weight: 500;
}


/* لینک‌های مودال */

.product-modal-links {
    padding: 0 2px;
}

.product-modal-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 38px;
    padding: 6px 2px;

    color: #555;
    text-decoration: none;

    border-bottom: 1px dashed #dedede;

    font-size: 13px;
}


/* فوتر */

.product-footer {
    margin-top: 16px;
}


/* اشتراک گذاری */

.product-share {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 13px;
}

.product-share span {
    color: #888;
    font-size: 13px;
}

.share-links {
    display: flex;
    gap: 6px;
}

.share-links a {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e5e5e5;
    border-radius: 50%;

    color: #666;
    text-decoration: none;

    font-size: 12px;
}


/* شناسه محصول */

.product-id {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 11px 0 15px;

    border-top: 1px solid #f1f1f1;

    font-size: 11px;
}

.product-id span {
    color: #aaa;
}

.product-id strong {
    color: #666;
    font-weight: 500;
}


/* دکمه استعلام قیمت */

.price-inquiry {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 42px;



    background: #fff;
    color: var(--main-color-one-hover);

    border: 1px solid var(--main-color-one);
    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
}
.price-inquiry:hover{
    background: #fff;
    color: #444;

    border: 1px solid #e4e4e4;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-links a {
    width: 25px;
    height: 25px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777;
    text-decoration: none;

    transition: .2s;
}

.share-links a:hover {
    color: #222;
    background: #f5f5f5;
}

.share-links i {
    font-size: 12px;
}
.price-inquiry-modal {
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Header */
.price-inquiry-modal .modal-header {
    padding: 22px 25px 16px;
    border-bottom: 1px solid #eeeeee;
}

.price-inquiry-modal .modal-title {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #222;
}

.price-inquiry-modal .modal-subtitle {
    margin: 7px 0 0;
    color: #888;
    font-size: 13px;
    line-height: 1.8;
}

/* Body */
.price-inquiry-modal .modal-body {
    padding: 22px 25px 25px;
}

/* Labels */
.price-inquiry-modal .form-label {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.price-inquiry-modal .form-label span {
    color: #e53935;
}

/* Inputs */
.price-inquiry-modal .form-control {
    min-height: 44px;
    border: 1px solid #e3e3e3;
    border-radius: 9px;
    background: #fff;
    color: #333;
    font-size: 13px;
    box-shadow: none;
    transition: border-color .2s, box-shadow .2s;
}

.price-inquiry-modal .form-control::placeholder {
    color: #aaa;
}

.price-inquiry-modal .form-control:focus {
    border-color: var(--main-color-one);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .04);
}

/* Textarea */
.price-inquiry-modal textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

/* Help */
.price-inquiry-modal .form-help {
    display: block;
    margin-top: 6px;
    color: #999;
    font-size: 11px;
    line-height: 1.7;
}

/* Footer */
.price-inquiry-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 18px;
    border-top: 1px solid #eeeeee;
}

/* Buttons */
.price-inquiry-footer .btn {
    min-height: 42px;
    padding: 8px 20px;
    border-radius: 9px;
    font-size: 13px;
}

.price-inquiry-footer .btn-light {
    border: 1px solid #e5e5e5;
    color: #666;
}

/* Modal */
.inquiry-modal {
    background-color: rgba(0, 0, 0, 0.65);
}

.inquiry-modal.show {
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile */
@media (max-width: 575px) {

    .modal .modal-content {
        border: none !important;
    }

    .price-inquiry-modal .modal-header {
        padding: 15px 14px 12px;
    }

    .price-inquiry-modal .modal-body {
        padding: 14px;
    }

    .price-inquiry-modal .modal-title {
        font-size: 16px;
    }

    .price-inquiry-modal .modal-subtitle {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.6;
    }

    .price-inquiry-modal .form-group,
    .price-inquiry-modal .mb-3 {
        margin-bottom: 8px !important;
    }

    .price-inquiry-modal .form-label {
        margin-bottom: 4px;
        font-size: 11px;
    }

    .price-inquiry-modal .form-control {
        min-height: 36px;
        height: 36px;
        padding: 6px 9px;
        border-radius: 7px;
        font-size: 11px;
    }

    .price-inquiry-modal textarea.form-control {
        height: 65px;
        min-height: 65px;
    }

    .price-inquiry-modal .form-help {
        margin-top: 3px;
        font-size: 9px;
        line-height: 1.5;
    }

    .price-inquiry-footer {
        gap: 6px;
        margin-top: 10px;
        padding-top: 12px;
    }

    .price-inquiry-footer .btn {
        width: 100%;
        min-height: 36px;
        padding: 6px 12px;
        border-radius: 7px;
        font-size: 11px;
    }

    .price-inquiry-footer {
        flex-direction: column;
    }
}
.site-shadow{
    box-shadow: 0px 4px 16px 0px #14141414;
    border-radius: 15px;
}

.bg-site-info {
    position: relative;
    overflow: hidden;

    background-image:
            linear-gradient( 135deg, rgba(35, 28, 5, 0.78) 0%, rgba(75, 58, 5, 0.72) 50%, rgba(115, 85, 10, 0.68) 100% ), url("https://jahansazepolymer.com/media/img/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-site-info::before,
.bg-site-info::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* حباب بزرگ */
.bg-site-info::before {
    width: 280px;
    height: 280px;
    top: -140px;
    right: -70px;
    background: rgba(255, 255, 255, 0.20);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow:
            0 0 50px rgba(255, 255, 255, 0.18),
            inset 0 0 40px rgba(255, 255, 255, 0.12);
}

.bg-site-info::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -60px;
    background: rgba(255, 255, 255, 0.16);
    border: 2px solid rgba(255, 255, 255, 0.20);
    box-shadow:
            0 0 40px rgba(255, 255, 255, 0.15),
            inset 0 0 30px rgba(255, 255, 255, 0.10);
}