/* ---------------------------------------------------
   GLOBAL WRAPPER
--------------------------------------------------- */
.tcc-product {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    color: #1d1d1d;
}

/* ---------------------------------------------------
   HEADINGS
--------------------------------------------------- */
.tcc-product h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0B2A4A; /* Dark Blue */
}

.tcc-product h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 12px;
    color: #0B2A4A; /* Dark Blue */
}

.tcc-product h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0B2A4A;
}

/* ---------------------------------------------------
   PARAGRAPH
--------------------------------------------------- */
.tcc-product p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

/* ---------------------------------------------------
   BEFORE / AFTER GALLERY
--------------------------------------------------- */
.tcc-gallery-wrap {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.tcc-gallery-wrap img {
    width: 50%;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e6e6e6;
}

/* ---------------------------------------------------
   DIFFERENCE GALLERY
--------------------------------------------------- */
.tcc-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.tcc-proof-grid img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
}

/* ---------------------------------------------------
   CLEANER STATS
--------------------------------------------------- */
.tcc-stat-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.tcc-stat-list li {
    padding: 10px 12px;
    margin-bottom: 8px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Accent checkmark color */
.tcc-stat-list li::before {
    content: "✔";
    color: #F26B1D; /* Orange */
    font-weight: 600;
}

/* ---------------------------------------------------
   LISTS (Equipment, Included, Needs)
--------------------------------------------------- */
.tcc-list,
.tcc-not-list {
    list-style: none;
    padding-left: 0;
}

.tcc-list li,
.tcc-not-list li {
    padding: 10px 12px;
    margin-bottom: 8px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
}

/* Included checkmark */
.tcc-list li::before {
    content: "✔ ";
    color: #2e8b57;
    font-weight: 600;
}

/* Not covered cross mark */
.tcc-not-list li::before {
    content: "✘ ";
    color: #d9534f;
    font-weight: 600;
}

/* ---------------------------------------------------
   FAQs
--------------------------------------------------- */
.faq-item {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
}

.faq-q {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-a {
    font-size: 15px;
    color: #555;
}

/* ---------------------------------------------------
   RESPONSIVE DESIGN 
--------------------------------------------------- */
@media (max-width: 768px) {
    
    .tcc-gallery-wrap {
        flex-direction: column;
    }

    .tcc-gallery-wrap img {
        width: 100%;
    }

    .tcc-proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tcc-product h1 {
        font-size: 26px;
    }

    .tcc-product h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tcc-proof-grid {
        grid-template-columns: 1fr;
    }
}
