/* ===============================
           PRODUCT DETAILS PAGE STYLES
        ================================ */

        /* Product Details Section */
        .product-details-section {
            padding: 40px 0 60px 0;
        }

        /* Product Gallery - Modern Layout */
        .product-gallery-container {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: row-reverse;
            gap: 16px;
        }

        /* Main Product Image */
        .product-main-image-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: #f8f9fa;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .product-main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease, opacity 0.15s ease;
        }

        .product-main-image-wrapper:hover .product-main-img {
            transform: scale(1.02);
        }

        /* Thumbnail Strip - Vertical on Desktop */
        .product-thumbnails {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 90px;
            flex-shrink: 0;
            max-height: 450px;
            overflow-y: auto;
            padding-right: 4px;
            padding: 4px;
        }

        /* Custom scrollbar for thumbnails */
        .product-thumbnails::-webkit-scrollbar {
            width: 4px;
        }

        .product-thumbnails::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .product-thumbnails::-webkit-scrollbar-thumb {
            background: var(--color-teal);
            border-radius: 4px;
        }

        .product-thumb {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #e5e7eb;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8f9fa;
            flex-shrink: 0;
        }

        .product-thumb:hover {
            border-color: var(--color-teal);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 125, 124, 0.15);
        }

        .product-thumb.active {
            border-color: var(--color-teal);
            border-width: 3px;
            box-shadow: 0 4px 12px rgba(0, 125, 124, 0.2);
        }

        .product-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Mobile: Thumbnails below, horizontal */
        @media (max-width: 767px) {
            .product-gallery-container {
                flex-direction: column;
            }

            .product-thumbnails {
                flex-direction: row;
                width: 100%;
                max-height: none;
                overflow-x: auto;
                overflow-y: hidden;
                padding-right: 0;
                padding-bottom: 8px;
                justify-content: flex-start;
            }

            .product-thumb {
                width: 70px;
                height: 70px;
            }

            .product-thumb:hover {
                transform: translateY(-2px);
            }
        }

        /* Product Info Container */
        .product-info-container {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .product-title {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: #1a202c;
            margin: 0 0 24px 0;
            line-height: 1.3;
        }

        /* Product Actions Top */
        .product-actions-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 125, 124, 0.1);
        }

        .btn-wishlist-action {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(0, 125, 124, 0.06);
            color: var(--color-teal);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .btn-wishlist-action .icon-wishlist::before {
            font-size: 18px;
        }

        .btn-wishlist-action:hover {
            background: var(--color-teal);
            color: #ffffff;
        }

        .btn-wishlist-action:hover .icon-wishlist::before {
            color: #ffffff;
        }

        .product-nav-buttons {
            display: flex;
            gap: 8px;
        }

        .btn-product-nav {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--color-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-product-nav .icon-arrow-left::before,
        .btn-product-nav .icon-arrow-right::before {
            color: #ffffff;
            font-size: 16px;
        }

        .btn-product-nav:hover {
            background: var(--color-orange);
            transform: scale(1.1);
        }

        /* Price Box */
        .product-price-box {
            margin: 24px 0;
        }

        .price-current {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--color-teal);
        }

        .price-original {
            font-size: 20px;
            color: #94a3b8;
            text-decoration: line-through;
            margin-left: 12px;
        }

        /* Product Description */
        .product-description {
            color: #64748b;
            font-size: 15px;
            line-height: 1.7;
            margin: 20px 0;
        }

        /* Product Options */
        .product-option-group {
            margin-top: 24px;
        }

        .option-label {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 700;
            color: #1a202c;
            display: block;
            margin-bottom: 12px;
        }

        .required-mark {
            color: #ef4444;
        }

        .option-items {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .option-item {
            padding: 10px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 14px;
            color: #64748b;
        }

        .option-item:hover {
            border-color: var(--color-teal);
            background: rgba(0, 125, 124, 0.05);
            color: var(--color-teal);
        }

        .option-item.active,
        .option-item input:checked + span {
            border-color: var(--color-teal);
            background: var(--color-teal);
            color: #ffffff;
        }

        .option-item-label {
            cursor: pointer;
            margin: 0;
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Quantity & Purchase */
        .product-purchase-section {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .quantity-selector-wrapper {
            flex: 0 0 auto;
        }

        .quantity-label {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: #1a202c;
            display: block;
            margin-bottom: 10px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            overflow: hidden;
            height: 38px;
        }

        .qty-btn {
            width: 36px;
            height: 44px;
            background: transparent;
            border: none;
            font-size: 18px;
            font-weight: 700;
            color: var(--color-teal);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .qty-btn:hover {
            background: rgba(0, 125, 124, 0.1);
        }

        .qty-input {
            width: 60px;
            height: 44px;
            border: none;
            text-align: center;
            font-size: 15px;
            font-weight: 700;
            color: #1a202c;
        }

        .qty-input:focus {
            outline: none;
        }

        /* Add to Cart Button */
        .btn-add-to-cart {
            flex: 1;
            min-width: 100px;
            padding: 6px 12px;
            background: linear-gradient(135deg, var(--color-teal), #009897);
            color: #ffffff;
            border: none;
            border-radius: 50px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
    text-decoration: none;
    height: 41px;
    align-self: end;
        }

        .btn-add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 125, 124, 0.3);
            color: #ffffff;
        }

        .btn-add-to-cart:disabled {
            background: #94a3b8;
            cursor: not-allowed;
            transform: none;
        }

        .btn-add-to-cart .icon-cart::before {
            font-size: 20px;
        }

        /* Product Meta */
        .product-meta-section {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 125, 124, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 24px;
        }

        .product-meta-info {
            flex: 1;
        }

        .product-meta-info > div {
            margin-bottom: 8px;
            font-size: 14px;
            color: #64748b;
        }

        .product-meta-info a {
            color: var(--color-teal);
            text-decoration: none;
            font-weight: 600;
        }

        .product-meta-info a:hover {
            text-decoration: underline;
        }

        /* Share Buttons */
        .product-share {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .share-label {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--color-teal);
            font-size: 14px;
        }

        .share-buttons {
            display: flex;
            gap: 8px;
        }

        .share-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .share-btn.facebook {
            background: rgba(59, 89, 152, 0.1);
        }

        .share-btn.twitter {
            background: rgba(29, 161, 242, 0.1);
        }

        .share-btn.pinterest {
            background: rgba(189, 8, 28, 0.1);
        }

        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* Star Rating */
        .star-rating {
            direction: rtl;
            width: fit-content;
        }
        
        .star-rating input {
          display: none;
        }

        .star-rating input:checked ~ label::after {
          opacity: 1;
        }

        .star-rating label {
          display: inline-block;
          position: relative;
          cursor: pointer;
          margin-right: 15px;
        }

        .star-rating label:hover::after {
          opacity: 1;
        }

        .star-rating label:hover:hover ~ label::after {
          opacity: 1;
        }

        .star-rating label::before {
          content: "\f005";
          font-family: 'Font Awesome 5 Free';
          font-weight: 900;
          font-size: 35px;
          display: block;
          color: #dfdfdf;
        }

        .star-rating label::after {
          content: "\f005";
          font-family: 'Font Awesome 5 Free';
          font-weight: 900;
          font-size: 35px;
          position: absolute;
          display: block;
          top: 0px;
          left: 0px;
          color: #ffcc23;
          opacity: 0;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .product-info-container {
                margin-top: 24px;
                padding: 24px;
            }

            .product-title {
                font-size: 24px;
            }

            .price-current {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .product-breadcrumb-section {
                padding: 15px 0;
                margin-bottom: 24px;
            }

            .product-gallery-container {
                padding: 16px;
            }

            .product-info-container {
                padding: 20px;
            }

            .product-title {
                font-size: 22px;
                margin-bottom: 16px;
            }

            .product-actions-top {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }

            .price-current {
                font-size: 24px;
            }

            .price-original {
                font-size: 18px;
            }

            .product-purchase-section {
                flex-direction: column;
                align-items: stretch;
            }

            .quantity-selector-wrapper {
                width: 100%;
            }

            .quantity-selector {
                width: 100%;
                justify-content: space-between;
            }

            .qty-input {
                flex: 1;
            }

            .btn-add-to-cart {
                min-width: auto;
                width: 100%;
            }

            .product-meta-section {
                flex-direction: column;
            }

            .product-share {
                justify-content: space-between;
                width: 100%;
            }

            .item-thumb {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 576px) {
            .option-items {
                gap: 8px;
            }

            .option-item {
                padding: 8px 16px;
                font-size: 13px;
            }

            .slider-nav-thumbnails {
                gap: 8px;
                overflow-x: auto;
                padding-bottom: 8px;
            }

            .product-title {
                font-size: 20px;
            }
        }

        /* ===============================
           PRODUCT TABS - COMPACT MODERN STYLE
        ================================ */
        
        .product-tabs-section {
            padding: 0 0 40px 0;
        }
        
        .product-tabs-container {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            overflow: hidden;
        }
        
        /* Tabs Navigation */
        .product-tabs-nav {
            display: flex;
            gap: 4px;
            padding: 12px;
            background: #f8f9fa;
            border-bottom: 1px solid #e8e8e8;
            list-style: none;
            margin: 0;
        }
        
        .product-tabs-nav li {
            margin: 0;
        }
        
        .product-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            color: #666;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s ease;
            background: transparent;
        }
        
        .product-tab svg {
            opacity: 0.6;
        }
        
        .product-tab:hover {
            background: #ffffff;
            color: var(--color-teal);
        }
        
        .product-tab:hover svg {
            opacity: 1;
        }
        
        .product-tab.active {
            background: var(--color-teal);
            color: #ffffff;
        }
        
        .product-tab.active svg {
            opacity: 1;
        }
        
        .tab-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            background: rgba(0, 125, 124, 0.15);
            color: var(--color-teal);
            border-radius: 9px;
            font-size: 11px;
            font-weight: 700;
        }
        
        .product-tab.active .tab-badge {
            background: rgba(255, 255, 255, 0.25);
            color: #ffffff;
        }
        
        /* Tab Content */
        .product-tab-content {
            padding: 0;
        }
        
        .product-tab-content .tab-pane {
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            padding: 24px;
        }
        
        .tab-content-inner {
            color: #555;
            font-size: 14px;
            line-height: 1.7;
        }
        
        .tab-content-inner p {
            margin-bottom: 12px;
        }

        /* Vendor Tab - Enhanced Modern Design */
        .vendor-header {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px;
            background: linear-gradient(135deg, rgba(0, 125, 124, 0.06) 0%, rgba(0, 125, 124, 0.02) 100%);
            border-radius: 16px;
            margin-bottom: 24px;
            border: 1px solid rgba(0, 125, 124, 0.1);
        }
        
        .vendor-logo-img {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            object-fit: cover;
            flex-shrink: 0;
            border: 3px solid #fff;
            box-shadow: 0 8px 24px rgba(0, 125, 124, 0.15);
            transition: transform 0.3s ease;
        }
        
        .vendor-logo-img:hover {
            transform: scale(1.05);
        }
        
        .vendor-info h6 {
            margin: 0 0 8px 0;
            font-size: 20px;
        }
        
        .vendor-name-link {
            color: var(--color-teal);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .vendor-name-link:hover {
            color: #009897;
            text-decoration: none;
        }
        
        .vendor-rating {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .vendor-rating .stars {
            display: flex;
            gap: 3px;
        }
        
        .vendor-rating .review-count {
            font-size: 13px;
            color: #007D7C;
            font-weight: 600;
            background: rgba(0, 125, 124, 0.1);
            padding: 4px 10px;
            border-radius: 20px;
        }

        /* Vendor Description - Enhanced Quote Style */
        .vendor-description {
            position: relative;
            background: linear-gradient(135deg, rgba(0, 125, 124, 0.04) 0%, rgba(0, 125, 124, 0.01) 100%);
            padding: 24px 28px 24px 60px;
            border-radius: 16px;
            border: 1px solid rgba(0, 125, 124, 0.08);
            margin-bottom: 24px;
        }

        .vendor-description::before {
            content: '"';
            position: absolute;
            left: 20px;
            top: 12px;
            font-size: 48px;
            font-family: Georgia, serif;
            color: var(--color-teal);
            opacity: 0.3;
            line-height: 1;
        }

        .vendor-description p {
            margin: 0;
            color: #4a5568;
            line-height: 1.8;
            font-size: 15px;
            font-style: italic;
        }
        
        .vendor-contact-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            display: grid;
            gap: 12px;
        }
        
        .vendor-contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 20px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #eef2f7;
            color: #555;
            transition: all 0.3s ease;
        }

        .vendor-contact-list li:hover {
            border-color: rgba(0, 125, 124, 0.3);
            box-shadow: 0 4px 16px rgba(0, 125, 124, 0.08);
            transform: translateY(-2px);
        }
        
        .vendor-contact-list li:last-child {
            border-bottom: 1px solid #eef2f7;
        }
        
        .vendor-contact-list svg {
            width: 20px;
            height: 20px;
            color: var(--color-teal);
            flex-shrink: 0;
            margin-top: 2px;
            background: rgba(0, 125, 124, 0.1);
            padding: 10px;
            border-radius: 10px;
            box-sizing: content-box;
        }
        
        .vendor-contact-list strong {
            color: #1a202c;
            font-weight: 700;
            margin-right: 6px;
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .vendor-contact-list li div {
            flex: 1;
        }

        .vendor-contact-list li span {
            font-size: 15px;
            color: #444;
        }
        
        .vendor-stats {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: linear-gradient(135deg, var(--color-teal) 0%, #009897 100%);
            padding: 16px 24px;
            border-radius: 12px;
            min-width: 120px;
        }
        
        .stat-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        
        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }

        /* Review Section */
        .comments-area {
            margin-bottom: 40px;
        }

        .review-list {
            border-bottom: 2px solid rgba(0, 125, 124, 0.1);
            padding-bottom: 24px;
            margin-bottom: 32px;
        }

        /* Review Form */
        .review-form {
            background: rgba(0, 125, 124, 0.02);
            border-radius: 12px;
            padding: 24px;
        }

        .review-form h4 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 24px;
        }

        .review-form .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #ffffff;
        }

        .review-form .form-control:focus {
            outline: none;
            border-color: var(--color-teal);
            box-shadow: 0 0 0 3px rgba(0, 125, 124, 0.1);
        }

        .review-form textarea.form-control {
            min-height: 120px;
            resize: vertical;
            font-family: var(--font-body);
        }

        .review-form .row {
            margin-bottom: 16px;
        }

        .review_btn,
        button[type="submit"].bg-brand-40 {
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--color-teal), #009897);
            color: #ffffff;
            border: none;
            border-radius: 50px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .review_btn:hover,
        button[type="submit"].bg-brand-40:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 125, 124, 0.3);
            color: #ffffff;
        }

        /* Vendor Section */
        .vendor-logo.d-flex {
            background: rgba(0, 125, 124, 0.02);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .vendor-logo {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            object-fit: cover;
            border: 2px solid rgba(0, 125, 124, 0.1);
        }

        .vendor-name {
            margin-left: 16px;
            flex: 1;
        }

        .vendor-name h6 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .vendor-name h6 a {
            color: var(--color-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .vendor-name h6 a:hover {
            color: var(--color-orange);
        }

        .product-rate-cover {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-infor {
            list-style: none;
            padding: 0;
            margin: 24px 0;
            background: rgba(0, 125, 124, 0.02);
            border-radius: 12px;
            padding: 20px;
        }

        .contact-infor li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 14px;
            color: #475569;
            padding: 12px;
            background: #ffffff;
            border-radius: 8px;
        }

        .contact-infor li:last-child {
            margin-bottom: 0;
        }

        .contact-infor li strong {
            color: #1a202c;
            font-weight: 700;
        }

        .contact-infor img {
            width: 24px;
            height: 24px;
            margin-top: 2px;
        }

        /* Vendor Stats */
        .d-flex.mb-25 {
            display: flex;
            gap: 24px;
            background: linear-gradient(135deg, rgba(0, 125, 124, 0.05), rgba(255, 173, 0, 0.05));
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .d-flex.mb-25 > div {
            flex: 1;
            text-align: center;
            padding: 16px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .d-flex.mb-25 p {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .d-flex.mb-25 h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--color-teal);
            margin: 0;
        }

        /* Vendor Description */
        .tab-pane p.font-sm {
            background: rgba(0, 125, 124, 0.02);
            padding: 16px;
            border-radius: 8px;
            border-left: 4px solid var(--color-teal);
            line-height: 1.8;
        }

        /* Related Products Section */
        .section-box.shop-template {
            padding: 60px 0;
        }

        .section-box h4 {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: #1a202c;
        }

        .section-box .btn.text-brand-40 {
            color: var(--color-teal);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .section-box .btn.text-brand-40:hover {
            color: var(--color-orange);
        }

        /* Breadcrumb Modern */
        .breadcrumb-modern {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 8px;
            align-items: center;
        }

        .breadcrumb-modern li {
            font-size: 14px;
            position: relative;
        }

        .breadcrumb-modern li:not(:last-child)::after {
            content: "/";
            margin-left: 8px;
            color: #94a3b8;
        }

        .breadcrumb-modern a {
            color: var(--color-teal);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .breadcrumb-modern a:hover {
            color: var(--color-orange);
        }

        .breadcrumb-modern li.active {
            color: #64748b;
        }

        .hidden_input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }


        