/* -----------------------------------------------------------
           Specs Detail Show Template (Reference Description Style)
        ----------------------------------------------------------- */
        .specs-show-section {
            padding: 80px 0 120px;
            background: #fff;
        }

        .specs-sidebar {
            border-radius: 12px;
            background: #f7f8fa;
            padding: 35px 30px;
        }

        .specs-sidebar__title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 25px;
            color: #1c2434;
            border-bottom: 2px solid #ddd;
            padding-bottom: 15px;
        }

        .specs-sidebar__list li {
            margin-bottom: 12px;
        }

        .specs-sidebar__list li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            color: #666;
            transition: all 0.3s;
            padding: 12px 15px;
            background: #fff;
            border-radius: 8px;
            text-decoration: none;
            border: 1px solid transparent;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 14px;
        }

        .specs-sidebar__list li a:hover,
        .specs-sidebar__list li.current a {
            background: #fff;
            color: var(--thm-primary);
            border-color: var(--thm-primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .specs-sidebar__list li a i {
            font-size: 12px;
            opacity: 0;
            transition: all 0.3s;
            margin-left: 10px;
            flex-shrink: 0;
        }

        .specs-sidebar__list li a:hover i {
            opacity: 1;
            transform: translateX(3px);
        }

        /* Sidebar Product Cards */
        .sidebar-product-card {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            text-decoration: none;
            background: #fff;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #eee;
            transition: all 0.3s;
        }

        .sidebar-product-card:hover {
            border-color: var(--thm-primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-decoration: none;
        }

        .sidebar-product-card__img {
            width: 65px;
            height: 65px;
            flex-shrink: 0;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
            background: #f1f1f1;
        }

        .sidebar-product-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sidebar-product-card__title {
            font-size: 13px;
            font-weight: 700;
            color: #1c2434;
            margin: 0;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Rich Text Styling for Editor Content */
        .specs-rich-text {
            font-size: 17px;
            line-height: 1.8;
            color: #444;
        }

        .specs-rich-text p {
            margin-bottom: 25px;
        }

        .specs-rich-text h2,
        .specs-rich-text h3 {
            font-weight: 800;
            color: #1c2434;
            margin: 45px 0 25px;
        }

        .specs-rich-text h2 {
            font-size: 32px;
            border-left: 5px solid var(--thm-primary);
            padding-left: 20px;
        }

        .specs-rich-text img {
            max-width: 100%;
            height: auto !important;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            display: block;
        }

        /* Auto-Enhanced List Items (Dynamic Icon Injection) */
        .specs-rich-text ul {
            list-style: none;
            padding: 10px 0;
            margin-bottom: 30px;
        }

        .specs-rich-text ul li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            font-weight: 500;
            color: #333;
        }

        .specs-rich-text ul li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 3px;
            color: #fe5021;
            /* thm-primary */
            font-size: 18px;
        }

        .specs-content-header {
            margin-bottom: 0px;
        }

        .specs-content-header h1 {
            font-size: 44px;
            font-weight: 900;
            color: #1c2434;
            margin-bottom: 15px;
        }