.elementor-820 .elementor-element.elementor-element-922e0a8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:40px;--padding-bottom:40px;--padding-left:20px;--padding-right:20px;}.elementor-820 .elementor-element.elementor-element-b5a1d77{padding:0px 0px 0px 0px;}/* Start custom CSS for shortcode, class: .elementor-element-b5a1d77 */.tbs-wrapper * {
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        .tbs-wrapper {
            max-width: 850px;
            margin: 30px auto;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 35px;
            border: 1px solid #f0f2f5;
        }

        /* Section Styling */
        .tbs-section {
            background: #fdfdfd;
            border: 1px solid #f1f3f7;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .tbs-section:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            border-color: #e2e8f0;
        }
        .tbs-title {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
        }

        /* Modern Grid & Rows */
        .tbs-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tbs-row:last-child { margin-bottom: 0; }
        
        .tbs-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .tbs-grid-2 { grid-template-columns: 1fr; }
            .tbs-row { flex-direction: column; align-items: flex-start; }
            .tbs-label-col { margin-bottom: 5px; }
            .tbs-input, .tbs-btn-group { width: 100% !important; }
        }

        /* Typography & Labels */
        .tbs-label-col {
            font-size: 15px;
            font-weight: 500;
            color: #475569;
            flex: 1;
        }
        .tbs-label-block {
            font-size: 14px;
            font-weight: 500;
            color: #475569;
            margin-bottom: 8px;
            display: block;
        }
        .tbs-blue { color: #2563eb !important; font-weight: 600; }

        /* Modern Form Inputs */
        .tbs-input {
            width: 60%;
            min-width: 280px;
            padding: 12px 16px;
            background: #ffffff;
            border: 1.5px solid #cbd5e1;
            border-radius: 8px;
            font-size: 15px;
            color: #1e293b;
            outline: none;
            transition: all 0.2s ease;
        }
        .tbs-input:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }
        select.tbs-input {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            padding-right: 40px;
        }

        /* Modern Button Groups (Toggle) */
        .tbs-btn-group {
            display: inline-flex;
            background: #f1f5f9;
            padding: 4px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }
        .tbs-btn-item {
            border: none;
            background: transparent;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            color: #64748b;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .tbs-btn-item.active {
            background: #ffffff;
            color: #2563eb;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        .tbs-btn-item.disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Quantity Controls */
        .tbs-qty-control {
            display: inline-flex;
            align-items: center;
            background: #f1f5f9;
            border-radius: 30px;
            padding: 3px;
            border: 1px solid #e2e8f0;
        }
        .tbs-qty-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            background: #ffffff;
            color: #1e293b;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
        }
        .tbs-qty-btn:hover { background: #e2e8f0; }
        .tbs-qty-control input {
            width: 40px;
            text-align: center;
            border: none;
            background: transparent;
            font-size: 15px;
            font-weight: 600;
            color: #1e293b;
            outline: none;
        }

        /* Search & Primary Action Button */
        .tbs-btn-primary {
            background: #2563eb;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }
        .tbs-btn-primary:hover {
            background: #1d4ed8;
            box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
            transform: translateY(-1px);
        }
        .tbs-btn-primary:active { transform: translateY(0); }

        /* Modern Tables Styling */
        .tbs-table-responsive {
            width: 100%;
            overflow-x: auto;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            margin-top: 15px;
        }
        .tbs-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 14px;
        }
        .tbs-table th {
            background: #f8fafc;
            color: #475569;
            font-weight: 600;
            padding: 14px 16px;
            border-bottom: 2px solid #e2e8f0;
        }
        .tbs-table td {
            padding: 14px 16px;
            border-bottom: 1px solid #e2e8f0;
            color: #1e293b;
        }
        .tbs-table tbody tr:hover {
            background: #f8fafc;
        }
        .tbs-table input[type="radio"] {
            transform: scale(1.2);
            accent-color: #2563eb;
            cursor: pointer;
        }

        /* Live Total Sticky-Feel Banner */
        .tbs-live-total {
            background: #eff6ff;
            border: 1px dashed #bfdbfe;
            color: #1e40af;
            font-size: 22px;
            font-weight: 700;
            text-align: right;
            padding: 18px 24px;
            border-radius: 10px;
            margin: 25px 0;
        }
        .tbs-live-total span {
            color: #2563eb;
            font-size: 26px;
        }/* End custom CSS */