* {
    font-family: "Poppins", Arial, sans-serif !important;
}
#toast {
    display: none;
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 17px 16px;
    border-radius: 5px;
    z-index: 999999999;
}
:root {
    --star-size: 35px;
    --star-color: #ccc;
    --star-background: #fc0;
}
.Stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    line-height: 1;
}
.Stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
    background: linear-gradient(
        90deg,
        var(--star-background) var(--percent),
        var(--star-color) var(--percent)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}
.style-1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}
.style-1::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
}
.style-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
    background-color: #555;
}
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: 35px;
    justify-content: space-around;
    text-align: center;
    width: 5em;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: #ccc;
    cursor: pointer;
}
.star-rating :checked ~ label {
    color: #f90;
}
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #fc0;
}
.backdrop--6flEt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: calc(var(2.58px, 1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3333;
}
.main--swqDl {
    padding: 0 40px 40px;
    box-shadow: 0 0 0 1px rgb(14 19 24 / 0.07), 0 2px 18px rgb(14 19 24 / 0.25);
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 32px;
}
.product-desc {
    overflow-x: auto !important;
}
.product-desc ul {
    list-style: disc !important;
    margin-left: 20px !important;
}
.product-desc a {
    color: #0077b5 !important;
}
.product-desc table,
.product-desc th,
.product-desc td {
    border: 1px solid black !important;
    border-collapse: collapse !important;
}
.product-desc table {
    width: 100% !important;
}
.product-desc th,
.product-desc td {
    padding: 8px !important;
}
.cate-description ol,
.cate-description ul {
    list-style: unset !important;
    margin-left: 16px;
}
.loader {
    width: 20px;
    padding: 3px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}
@keyframes l3 {
    to {
        transform: rotate(1turn);
    }
}
.shimmer-wrapper {
    position: relative;
}
.shimmer-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f6f7f8;
    background-image: linear-gradient(
        to right,
        #f6f7f8 0%,
        #edeef1 20%,
        #f6f7f8 40%,
        #f6f7f8 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    z-index: 1;
}
.shimmer-wrapper.loaded::before {
    display: none;
}
.shimmer-wrapper img {
    position: relative;
    z-index: 0;
}
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}
.tab-button {
    transition: all 0.3s ease;
}
.tab-button.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    transform: scale(1.05);
}
.stat-card {
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1e293b;
}
.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
    color: #1e293b;
}
.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #334155;
}
.article-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.article-content .highlight-box {
    background-color: #f1f5f9;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.seo-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.seo-checklist i {
    color: #10b981;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}
.keyword-badge {
    display: inline-block;
    background-color: #e0f2fe;
    color: #0c4a6e;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin: 0.25rem;
}
.step-card {
    transition: all 0.3s ease;
    border-left: 4px solid #2563eb;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.seo-checklist svg {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.detail-item ul {
    margin-left: 0px !important;
}

.stats-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dynamic-subcate-content .blog-header {
    text-align: center;
    margin-bottom: 3em;
    padding: 2em 0;
    border-bottom: 2px solid #eee;
}
.dynamic-subcate-content h1 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 0.5em;
}
.dynamic-subcate-content .meta-info {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 1em;
}
.dynamic-subcate-content .intro-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2em;
    border-radius: 10px;
    margin: 2em 0;
    text-align: center;
}
.dynamic-subcate-content h2,
.dynamic-subcate-content h3,
.dynamic-subcate-content h4 {
    color: #2c3e50;
    /* margin-top: 2.5em;
    margin-bottom: 1em; */
}
.dynamic-subcate-content h2 {
    font-size: 1.5em;
}
.dynamic-subcate-content h3 {
    font-size: 1.5em;
}
.dynamic-subcate-content h4 {
    font-size: 1.5em;
}

.dynamic-subcate-content .highlight-box {
    background: #f8f9fa;
    padding: 25px;
    border-left: 5px solid #007bff;
    margin: 2em 0;
    border-radius: 5px;
}
.dynamic-subcate-content .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2em 0;
}
.dynamic-subcate-content .tech-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.dynamic-subcate-content .tech-card:hover {
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
}
.dynamic-subcate-content .tech-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}
.dynamic-subcate-content .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2em 0;
}
.dynamic-subcate-content .stat-card {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.dynamic-subcate-content .stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #007bff;
    display: block;
}
.dynamic-subcate-content .toc {
    background: #f8f9fa;
    padding: 25px;
    margin: 2em 0;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}
.dynamic-subcate-content .toc ul {
    list-style: none;
    padding-left: 0;
}
.dynamic-subcate-content .toc li {
    margin: 0.8em 0;
    padding-left: 1em;
}
.dynamic-subcate-content .toc a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
}
.dynamic-subcate-content .template-showcase {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    margin: 2em 0;
}
.dynamic-subcate-content .faq-section {
    margin: 3em 0;
}
.dynamic-subcate-content .faq-item {
    margin: 2em 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}
.dynamic-subcate-content .faq-question {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 1em;
}
.dynamic-subcate-content .download-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 2em;
    border-radius: 10px;
    text-align: center;
    margin: 2em 0;
}
.dynamic-subcate-content .code-example {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 15px;
    margin: 1em 0;
    font-family: "Courier New", monospace;
    overflow-x: auto;
}
.dynamic-subcate-content .feature-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
}
.dynamic-subcate-content .feature-comparison th,
.dynamic-subcate-content .feature-comparison td {
    border: 1px solid #dee2e6;
    padding: 12px;
    text-align: left;
}
.dynamic-subcate-content .feature-comparison th {
    background: #f8f9fa;
    font-weight: bold;
}
.dynamic-subcate-content .pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2em 0;
}
.dynamic-subcate-content .pros,
.dynamic-subcate-content .cons {
    padding: 20px;
    border-radius: 8px;
}
.dynamic-subcate-content .pros {
    background: #d4edda;
    border-left: 4px solid #28a745;
}
.dynamic-subcate-content .cons {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.comparison-table th,
.comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
.comparison-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}
.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.component-category {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}
.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.cta-section {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 25px;
    font-size: 1.1em;
}
.related-templates {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
}
.related-templates ul {
    columns: 1;
    column-gap: 30px;
}
.related-templates li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}
.benefit-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}
.features-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.features-table th {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}
.features-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
}
.features-table tr:hover {
    background-color: #f8f9fa;
}
.use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}
.use-case {
    background: #fff;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}
.success-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}
.tip {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}
.cta-box a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: bold;
}
@media (max-width: 768px) {
    .related-templates ul {
        columns: 1;
    }
    .benefits-grid,
    .use-cases,
    .success-tips {
        grid-template-columns: 1fr;
    }
}

.cta-button {
    background: #6a1fff;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 31, 255, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
}

.hero-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero-section p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-button {
    background: white;
    color: #667eea;
}

/* Intro Section */
.intro-section {
    margin: 60px 0;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3748;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #2d3748;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #6a1fff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

/* Section Headers */
.section-header {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3748;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f7fafc;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Components Grid */
.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.component-category {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
}

.component-category h4 {
    color: #6a1fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.component-category ul {
    list-style: none;
}

.component-category li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.component-category li:last-child {
    border-bottom: none;
}

/* Use Cases Section */
.use-cases-container {
    background: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.use-cases-list {
    list-style: none;
    column-count: 2;
    column-gap: 40px;
}

.use-cases-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

/* SEO Benefits Section */
.seo-benefits-container {
    background: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.seo-benefits-list {
    list-style: none;
}

.seo-benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.seo-benefits-list li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h4 {
    color: #6a1fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-link {
    color: #6a1fff;
    text-decoration: none;
    font-weight: 600;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Related Templates */
.related-templates {
    background: #f7fafc;
    padding: 40px;
    border-radius: 10px;
    margin: 60px 0;
}

.related-templates h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d3748;
}

.related-templates ul {
    list-style: none;
}

.related-templates li {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.related-templates li:last-child {
    border-bottom: none;
}

.template-link {
    color: #6a1fff;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.template-link:hover {
    text-decoration: underline;
}

.template-description {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-section h2 {
        font-size: 30px;
    }

    .section-header {
        font-size: 28px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .use-cases-list {
        column-count: 1;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .components-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .intro-section h2 {
        font-size: 26px;
    }

    .section-header {
        font-size: 24px;
    }

    .related-templates {
        padding: 25px;
    }
}
