.detail {
        .mobile-container {
            padding: 15px;
            text-align: right;
        }

        .Breadcrumbs {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .Breadcrumbs span, a {
            color: #767676;
            font-size: 12px;
        }

        .Breadcrumbs span.active {
            color: #191919;
        }

        .Breadcrumbs i {
            font-size: 11px;
            color: #98a2b3;
            padding: 4px 6px;
        }

        .product-title {
            font-size: 20px;
            margin-top: 5px;
            font-weight: bold;
            line-height: 1.5;
        }

        .product-image {
            display: flex;
            gap: 22px;
            align-items: flex-start;
            margin-top: 10px;
        }


        .product-image .main-image-box {
            position: relative;
            width: 100%;
            height: 339px;
            background-color: #fafafa;
            border-radius: 12px;
            border: solid 1px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }



        .product-image .main-image {
            width: 100%;
            height: 100%;
            object-fit: contain !important;
            object-position: center;
        }



        .product-image .zoom-btn {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: white;
            border: none;
            padding: 12px;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

        .product-image .thumbs-wrapper {
            width: 90px;
            height: 339px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            /* padding-top: 8px;
                padding-bottom: 8px; */
        }

        .product-image .thumbs {
            flex: 1;
            overflow-y: auto;
            /* padding: 5px; */
            display: flex;
            flex-direction: column;
            gap: 12px;

            scrollbar-width: none !important;
        }

        .product-image .thumbs::-webkit-scrollbar {
            display: none !important;
        }

        .product-image .thumb {
            width: 75px;
            height: 75px;
            background: #fafafa;
            border-radius: 14px;
            object-fit: contain !important;
            object-position: center;
            cursor: pointer;
            transition: border-color .2s;
        }

        .product-image .thumb:hover,
        .product-image .thumb-active {
            border-color: #eee !important;
        }

        .scroll-btn {
            width: 100%;
            text-align: center;
            cursor: pointer;
            font-size: 22px;
            padding: 5px 0;
            background: white;
            border-radius: 10px;
            border: 1px solid #ddd;
            margin-bottom: 5px;
        }

        .scroll-btn:hover {
            background: #ef394e;
            color: white;
            border-color: #ef394e;
        }


        /* لایت‌باکس */
        .product-image .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .product-image .lightbox-image {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }

        .product-image .close-btn {
            position: absolute;
            top: 25px;
            right: 25px;
            background: transparent;
            border: none;
            font-size: 35px;
            color: white;
            cursor: pointer;
        }

        .product-image .side-actions {
            position: absolute;
            right: 16px;
            bottom: 18px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            z-index: 5;
        }

        .zoom-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            border: none;
            cursor: pointer;
            font-size: 22px;
        }

        .thumb-arrow {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 27px;
            height: 27px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            /* box-shadow: 0 8px 18px rgba(0,0,0,0.12); */
            border: none;
            cursor: pointer;
            z-index: 6;
        }

        .thumb-arrow.up {
            top: -6px;
        }

        .thumb-arrow.down {
            bottom: -6px;
        }

        .thumb-arrow i {
            color: #767676
        }

        .product-image .thumbs::-webkit-scrollbar {
            width: 8px;
        }

        .product-image .thumbs::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.08);
            border-radius: 8px;
        }

        .product-image .thumbs {
            scrollbar-width: none !important;
        }

        .product-image .thumbs::-webkit-scrollbar {
            display: none !important;
        }

        .product-detail {
            display: flex;
            gap: 25px;
            margin-top: 10px;
        }

        .product-detail p {
            font-size: 11px;
            color: #767676;
        }

        .product-detail span {
            font-size: 12px;
            color: #191919;
            /* font-family: 'IRANYekanWebBold'; */
        }

        .product-meta-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
            justify-content: flex-start;
        }

        .product-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            background: #fafafa;
            border-radius: 12px;
            padding: 5px 20px;
            font-size: 12px;
            color: #666;
            cursor: pointer;
            white-space: nowrap;
        }

        .product-meta-item i {
            font-size: 18px;
            color: #7a7a7a;
        }

        .product-meta-item span {
            color: #46494c;
            font-size: 15px;
        }

        .product-meta-item.rating {
            background-color: rgba(234, 190, 18, 0.05);
            color: #767676;
        }

        .product-meta-item.rating i {
            color: #f6b800;
        }

        .installment-card {
            display: flex;
            align-items: center;
            /* justify-content: space-between; */
            background: #f2f9ff;
            /* آبی خیلی روشن */
            border-radius: 20px;
            padding: 7px 10px;
            margin: 12px 0;
        }

        .installment-info {
            display: flex;
            flex-direction: column;
            text-align: right;
            color: #444;
            font-size: 14px;
            line-height: 1.7;
        }

        .installment-info .title {
            font-weight: 500;
            color: #000;
            font-size: 14px;
        }

        .installment-info .title small {
            font-size: 12px;
            color: #767676;
            font-weight: normal;
        }

        .installment-info .price {
            font-weight: 700;
            color: #000;
            font-size: 16px;
        }

        .installment-info .desc {
            color: #46494c;
            font-size: 12px;
        }

        .installment-logo img {
            width: 42px;
            height: 42px;
            object-fit: contain;
            border-radius: 12px;
            margin-left: 10px;
        }

        /* .action-buttons {
                display: flex;
                gap: 12px;
                margin: 15px 0;
                padding: 0 10px;
                justify-content: space-between;
            }

            .action-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding: 12px 20px;
                border-radius: 12px;
                font-size: 12px;
                color: #333;
                background: #f8f8f8;
                text-decoration: none;
                cursor: pointer;
                font-weight: 700;
            }

            .action-btn.whatsapp {
                background-color: rgba(77, 203, 91, 0.05);
            }

            .action-btn img,
            .action-btn svg {
                width: 28px;
                height: 28px;
                object-fit: contain;
            } */


        .action-buttons {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
        }

        .action-btn {
            flex: 1;

            display: flex;
            align-items: center;
            /* justify-content: center; */
            gap: 10px;

            padding: 10px 10px;
            height: 44px;

            border-radius: 12px;
            font-size: 13px;
            /* font-weight: 700; */

            background: #f9f9f9;
            /* border: 1px solid #eee; */
            color: #191919;
            text-decoration: none;
        }

        .action-btn.whatsapp {
            background: #f4fff7;
            /* border-color: #dff4e6; */
        }

        .action-btn.whatsapp {
            background: #f4fff7;
            /* border-color: #dff4e6; */
        }

        .action-btn.size-helper {
            background: #fafafa
        }



        .action-btn img {
            width: 33px;
            height: 33px;
        }

        .action-btn svg,
        .action-btn i {
            font-size: 18px;
            object-fit: contain;
        }

        .product-tabs {
            width: 100%;
            margin-top: 20px;
        }

        .tab-headers {
            display: flex;
            justify-content: space-between;
            gap: 5px;
            border-bottom: 1px solid #eee;
        }

        .tab-header {
            padding: 12px 0;
            font-size: 15px;
            color: #767676;
            cursor: pointer;
            position: relative;
            transition: 0.2s;
            flex: 1;
            text-align: center;
        }

        .tab-header.active {
            color: #ef4044;
            font-weight: 600;
        }

        .tab-header.active::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 3px;
            background: #ef4044;
            border-radius: 2px;
        }

        .tab-content {
            display: none;
            padding: 25px 10px;
            text-align: right;
        }

        .tab-content.active {
            display: block;
        }

        .product-options {
            font-size: 14px;
            color: #8c8c8c;
            margin: 12px 0 15px;
        }

        .option-title {
            font-size: 12px;
            color: #8c8c8c;
            margin: 12px 0 6px;
        }

        .select-wrapper {
            background: #f7f7f7;
            border-radius: 12px;
            padding: 2px 16px;
            position: relative;
        }

        .option-select {
            width: 100%;
            border: none;
            background: transparent;
            font-size: 13px;
            font-weight: 500;
            padding: 10px 0;
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .select-wrapper::after {
            content: "";
            position: absolute;
            left: 16px;
            top: 50%;
            width: 10px;
            height: 10px;
            border-left: 2px solid #333;
            border-bottom: 2px solid #333;
            transform: translateY(-50%) rotate(-45deg);
            pointer-events: none;
        }

        .reviewModal {
            display: none;
            position: fixed;
            z-index: 99999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);
            background-color: rgba(0, 0, 0, 0.9);
            padding-top: 60px;
        }

        .reviewModal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
        }

        .reviewModal-content img {
            width: 100%;
            max-width: 700px;
            height: auto;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        .desktop-container {
            /* display: flex; */
            /* justify-content: space-between; */
            /* gap: 20px; */
            padding: 0 130px;
        }

        .desktop-container .desktop-right-col .product-image .thumbs {
            flex-direction: unset;
            margin-top: 10px;
        }

        .desktop-container .thumb-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #fff;
            border: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            left: unset;
        }

        .desktop-container .desktop-right-col .product-image .thumbs-wrapper {
            width: 100%;
            height: unset;
            flex-direction: unset;
        }

        .desktop-right-col,
        .desktop-left-col {
            flex: 1;
        }

        .desktop-left-col {
            flex: 2;
            padding: 10px;
        }

        .desktop-container .product-image .main-image-box {
            height: 462px;
        }

        .desktop-container .product-image {
            display: block;
            width: 412px;
        }

        .desktop-container .product-image .thumbs-wrapper {}

        .desktop-container .product-title {
            font-size: 24px;
            color: #151616;
            padding: 5px 0;

        }

        .desktop-container .Breadcrumbs {
            padding: 5px 0;
        }

        .desktop-container .bottom-col {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            text-align: right;
        }

        .desktop-container .bottom-col .product-cart {
            flex: 1;
        }

        .desktop-container .bottom-col .product-info {
            border-left: 1px solid rgba(0, 0, 0, 0.05);
            /* padding: 0 20px; */
            text-align: right;
            flex: 1.3;
            height: 451px;
            box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0);
            position: relative;
        }

        .desktop-container .product-detail {
            display: block;
        }

        .desktop-container .product-detail p {
            margin-bottom: unset;
        }

        .desktop-container .product-short-desc {
            margin-top: 20px;
            color: #191919;
            font-size: 12px;

        }

        .desktop-container .product-short-desc p {
            color: #767676;
        }

        .desktop-container .product-box {
            direction: rtl;
            border-radius: 16px;
            background: #fff;
            padding: 16px;
        }

        .desktop-container .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .desktop-container .label {
            color: #191919;
            font-size: 12px;
        }

        .desktop-container .price-info {
            text-align: left;
        }

        .desktop-container .old-price {
            text-decoration: line-through;
            color: #767676;
            margin-left: 8px;
        }

        .desktop-container .discount {
            background: #ff4d4f;
            color: #fff;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 12px;
            margin-left: 8px;
        }

        .desktop-container .price {
            color: #ef4044;
            font-size: 22px;
            font-weight: bold;
        }

        .desktop-container .price small {
            font-size: 12px;
            margin-right: 4px;
            color: #767676;
        }

        .desktop-container .snapp-pay {
            display: flex;
            /* justify-content: space-between; */
            align-items: center;
            background-color: rgba(0, 142, 250, 0.05);
            border-radius: 12px;
            padding: 7px 10px;
            margin-top: 16px;
        }

        .desktop-container .snapp-text {
            line-height: 1.8;
            /* font-weight: bold; */
        }

        .desktop-container .snapp-text span small {
            color: #767676;
            font-size: 12px;
        }

        .desktop-container .snapp-text p {
            font-size: 12px;
            color: #46494c;
        }

        .desktop-container .snapp-logo {
            margin-left: 10px;
        }

        .desktop-container .actions {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .desktop-container .add-to-cart {
            flex: 1;
            background-image: linear-gradient(266deg, #24cd7e 100%, #1aad53 0%);
            border: none;
            border-radius: 14px;
            color: #fff;
            font-size: 16px;
            padding: 14px;
            cursor: pointer;
            text-align: center;
        }

        .desktop-container .qty {
            display: flex;
            align-items: center;
            border: 1.5px solid #e5e5e5;
            border-radius: 14px;
            overflow: hidden;
            height: 52px;
            background: #fff;
        }

        .desktop-container .qty div {
            width: 29px;
            height: 100%;
            border: none;
            background: #fff;
            font-size: 20px;
            color: #555;
            cursor: pointer;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center
        }

        .desktop-container .qty div:first-child {
            border-left: 1.5px solid #e5e5e5;
        }

        .desktop-container .qty div:last-child {
            border-right: 1.5px solid #e5e5e5;
        }

        .desktop-container .qty span {
            width: 40px;
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            color: #333;
        }

        .desktop-container .product-tabs {
            width: 70%;
        }

        .desktop-container .tab-header {
            padding: 14px 20px;
            flex: unset;
        }

        .desktop-container .info-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            direction: rtl;
            background: #f7f7f7;
            border-radius: 16px;
            padding: 10px 16px;
            margin-bottom: 12px;
            width: 100%;
            gap: 10px;
        }

        .desktop-container .info-row.whatsapp {
            background: #f3fbf5;
            bottom: 0;
        }

        .info-row.whatsapp img {
            width: 23px;
            height: 23px;
            border-radius: 50%;
        }

        .desktop-container .info-text {
            flex: 1;
            text-align: right;
            font-size: 12px;
            color: #333;
        }

        .desktop-container .info-icon {
            font-size: 18px;
            color: #111;
        }

        .desktop-container .arrow {
            font-size: 16px;
            color: #aaa;
        }

        .desktop-container .bottom-row {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 0 10px;
        }

        .product-tags {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-tags span {
            border-radius: 38px;
            background-color: #fafafa;
            padding: 4px 8px;
            color: #767676;
            font-size: 12px;
        }

        .product-tags i {
            color: #999999;
            border: 2px solid #999999;
            padding: 2px;
            border-radius: 4.7px;
        }

        .desktop-container .tab-headers {
            justify-content: unset;
        }

        .product-card {
            background: #fff;
            border-radius: 16px;
            padding: 10px;
            text-align: center;
        }

        .product-card img {
            width: 100%;
            border-radius: 12px;
        }

        /* .desktop-container .related-products {
            margin-top: 45px;
            text-align: right;
        }

        .desktop-container .related-products .header-title {
            font-size: 16px;
            padding: 10px;
        }

        .desktop-container .related-products .title {
            font-size: 16px;
            margin-top: 10px;
        } */

         .related-products {
            padding: 10px 0;
            margin-top: 45px;
        }

         .related-products.product-card {
            background: #fff;
            border-radius: 20px;
            padding: 10px;
            text-align: center;
        }

         .related-products .img-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: solid 1px rgba(0, 0, 0, 0.05);
            height: 448px;
        }

         .related-products .img-wrapper img {
            width: 100%;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain; 
        }

         .related-products .discount-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ef394e;
            color: #fff;
            font-size: 16px;
            padding: 3px 15px;
            border-radius: 50px;
            font-weight: bold;
        }

         .related-products .title {
            font-size: 14px;
            margin: 10px 0;
            color: #191919;
        }

         .related-products .price-box {
            display: flex;
            justify-content: right;
            gap: 4px;
            font-weight: bold;
            color: #191919;
        }

         .related-products .price-old {
            margin-top: 4px;
            font-size: 13px;
            color: #767676;
            text-decoration: line-through;
            text-align: right;
        }

         .related-products .price-box .toman {
            color: #ef394e;
        }


         .related-products .header-title {
            text-align: right;
            padding: 10px;
            font-size: 16px;
            font-weight: bold;
        }

        .product-specs {
            width: 100%;
            direction: rtl;
        }

        .spec-row {
            display: grid;
            grid-template-columns: 180px 1fr;
            align-items: center;

            min-height: 56px;
            border-bottom: 1px solid #eee;
            font-size: 15px;
        }

        .spec-title {
            color: #555;
        }

        .spec-value {
            color: #111;
            font-weight: 500;
        }

        .spec-row.is-hidden {
            display: none;
        }

        .tab-content .show-more-btn {
            margin-top: 16px;
            background: none;
            border: none;
            color: #ef394e;
            font-size: 14px;
            cursor: pointer;
        }

        .mobile-container .mobile-buy-box {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;

        background: #fff;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;

        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 999;
      }


      .mobile-container .add-to-cart-btn {
        flex: 3;
        height: 52px;
        border-radius: 12px;
        border: none;

        background-image: linear-gradient(266deg, #24cd7e 100%, #1aad53 0%);
        color: #fff;
        font-size: 16px;
        font-weight: 600;

        cursor: pointer;
        text-align: center;
      }
      .mobile-container .price-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        white-space: nowrap;
        flex: 2;
      }

      .mobile-container .price-new {
        color: #ef4044;
        font-size: 20px;
        font-weight: bold;
        font-family: 'IRANYekanWebBold';
      }

      .mobile-container .toman {
        font-size: 12px !important;
        color: #46494c;
        margin-right: 5px;
        font-family: 'IRANYekanWebRegular';
      }

      .mobile-container .discount {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 4px;
      }

      .mobile-container .badge {
        background: #ef394e;
        color: #fff;
        font-size: 14px;
        padding: 2px 8px;
        border-radius: 999px;
      }

      .mobile-container .price-old {
        font-size: 16px;
        color: #767676;
        text-decoration: line-through;
      }

      .main-image-box {
        position: relative;
      }

      .main-image-box .image-badge {
        position: absolute;
        top: 12px;
        z-index: 5;

        background-color: #f95738;
        color: #fff;
        font-size: 13px;
        padding: 4px 16px;
        border-radius: 0 0 12px 0;
        white-space: nowrap;
      }

      .main-image-box .badge-urgent {
        left: 0;
        border-radius: 0 0 12px 0;
      }

      .main-image-box .badge-fake {
        right: 0;
        border-radius: 0 0 0 12px;
      }

      .main-image-box .main-image {
        width: 100%;
        border-radius: 16px;
        cursor: zoom-in;
      }

      .main-image-box .side-actions {
        position: absolute;
        bottom: 12px;
        right: 12px;
        z-index: 6;
      }

      .main-image-box .lightbox {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.8);
        z-index: 9999;
      }

      .main-image-box .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
      }

      .main-image-box .close-btn {
        position: absolute;
        top: 28px;
        right: 28px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
      }

      .admin-quickAccess {
          background-color: #f95738;
          color: #fff;
          /* border-radius: 10px; */
          padding: 20px 10px;
          text-align: right;
      }
      .admin-quickAccess .btn{
          background-color: #fff;
          color: #f95738;
          border-radius: 10px;
          /* padding: 2px 17px; */
      }
    .desktop-container .add-to-cart:disabled {
        cursor: not-allowed;
        opacity: 0.6;
    }

}
