
.widefat td, .widefat th {
    width: 0px!important;
}

.mtsq-product-mini img {
    width: 80px!important;
    height: 75px!important;
	}
	
.mtsq-product-mini img {
    width: 100px;
    height: 75px;
    border: 1px solid;
    padding: 10px;
    border-color: #e9e5e5;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.mtsq-col.mtsq-col-products h4 {
    font-size: 18px;
    font-weight: 600;
}

.mtsq-col.mtsq-col-treatments h4 {
    font-size: 18px;
    font-weight: 600;
}
h2.mtsq-result-title {
    font-size: 18px;
    font-weight: 600;
}
.mtsq-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr; /* LEFT / RIGHT */
    gap: 24px;
    margin-top: 25px;
}


@media (max-width: 768px) {
    .mtsq-two-col {
        grid-template-columns: 1fr;
    }
}

.mtsq-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mtsq-icon-card {
    text-align: center;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
}

.mtsq-icon-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
}

.mtsq-icon-card span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
}


.mtsq-product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mtsq-product-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 1px solid #eee;
    padding: 8px;
    border-radius: 8px;
}

.mtsq-product-mini img {
    width: 50px;        /* ✅ SMALL ICON */
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.mtsq-prod-name {
    font-size: 14px;
    font-weight: 600;
}

.mtsq-prod-price {
    font-size: 13px;
    color: #555;
}




.mtsq-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}


.mtsq-prev-btn {
    padding: 14px 30px;
    margin: 10px auto 0;
    border-radius: 50px;
    border: 2px solid #e1e1e1;
    background: #f5f5f5;
    width: 280px;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mtsq-prev-btn:hover {
    background: #eaeaea;
    border-color: #ccc;
}


.mtsq-next-btn {
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    background: #49b9bd;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mtsq-next-btn:hover {
    background: #005bb5;
}


.mtsq-nav:has(.mtsq-next-btn):not(:has(.mtsq-prev-btn)) {
    justify-content: center;
}


@media (max-width: 768px) {
    .mtsq-nav {
        flex-direction: column;
        gap: 14px;
    }

    .mtsq-prev-btn,
    .mtsq-next-btn {
        width: 100%;
        max-width: 280px;
    }
}



.mtsq-quiz-container {
    max-width: 800px;
    margin: 50px auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: center;
}


.mtsq-module-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #555;
}

#mtsq-progress {
    position: relative;
    background: #e0e0e0;
    height: 25px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

#mtsq-progress-bar {
    height: 100%;
    width: 0%;
    background: #0073e6;
    border-radius: 12px;
    transition: width 0.3s ease;
}

#mtsq-progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 0;
    left: 0;
    font-weight: bold;
    line-height: 25px;
    color: #fff;
}

div#mtsq-results ul li {
    list-style: none;
}

.mtsq-question {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


.mtsq-module-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #777;
    margin-bottom: 12px;
}


.mtsq-question h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #111;
}


.mtsq-option {
    display: flex;
    align-items: center;      
    gap: 16px;
    padding: 18px 22px;
    border: 2px solid #e1e1e1;
    border-radius: 14px;
    background: #fafafa;
    margin-bottom: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mtsq-option input {
    display: none;
}

.mtsq-box {
    width: 22px;
    height: 22px;
    border: 2px solid #bcbcbc;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mtsq-box::after {
    content: "✓";
    font-size: 14px;
    color: #fff;
    display: none;
}


.mtsq-label {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

/* Hover */
.mtsq-option:hover {
    border-color: #0073e6;
    background: #f3f8ff;
}


.mtsq-option.active {
    border-color: #0073e6;
    background: #eaf3ff;
    box-shadow: 0 10px 25px rgba(0,115,230,0.15);
}

.mtsq-option.active .mtsq-box {
    background: #0073e6;
    border-color: #0073e6;
}

.mtsq-option.active .mtsq-box::after {
    display: block;
}

.mtsq-option.active .mtsq-label {
    font-weight: 600;
    color: #000;
}


.mtsq-next-btn {
    display: block;
    width: 280px;
    margin: 10px auto 0;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    background: #49b9bd;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mtsq-next-btn:hover {
    background: #005bb5;
}




.mtsq-result-wrap {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}


.mtsq-result-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 35px;
}

.mtsq-result-title span {
    font-weight: 700;
    display: block;
    margin-top: 4px;
}

.mtsq-result-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.mtsq-skin-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mtsq-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}


.mtsq-traits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mtsq-traits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.mtsq-traits li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #555;
}


.mtsq-recommendations .mtsq-reco-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mtsq-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mtsq-recommendations li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.mtsq-recommendations li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #2e7d32;
}


.mtsq-cta {
    text-align: center;
    margin-top: 40px;
}

.mtsq-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #000;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mtsq-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .mtsq-result-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Spinner */
.mtsq-loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0073e6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

div#mtsq-results ul li {
    border-bottom: 1px solid #e1e3e3;
    text-align: left;
}
.mtsq-reco-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
    /* margin-left: 20px; */
}




.mtsq-scoring {
    background: #f8f8f8;
    border-left: 5px solid #0073e6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.mtsq-scoring h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mtsq-scoring ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.mtsq-scoring ul li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.mtsq-scoring ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0073e6;
    font-weight: bold;
}


.mtsq-final-cta {
    text-align: center;
    margin-top: 40px;
}

.mtsq-final-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}


@media (max-width: 768px) {
    .mtsq-result-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}





