.elementor-19758 .elementor-element.elementor-element-f267357{--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;}.elementor-19758 .elementor-element.elementor-element-058244c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-19758 .elementor-element.elementor-element-0601356{--display:flex;}/* Start custom CSS *//* --- COPY EVERYTHING BELOW THIS LINE --- */

/* Basic Styling - Sets the foundation for the entire page */
body,
html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    font-family: 'Inter', sans-serif; /* A clean, modern font */
    background-color: #fdfafd; /* A very light pastel purple background */
    color: #5a5a7a; /* Soft, dark purple text for readability */
    line-height: 1.7;
}

/* Headings Styling */
h1 {
    font-size: 1.6rem; /* Further reduced size for better balance */
    line-height: 1.3;
    text-align: center; /* Centering the title */
}
h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif; /* A friendly, rounded font for headings */
    color: #333;
}

/* Link Styling */
a {
    text-decoration: none;
    color: #6a5acd; /* Main brand purple for links */
}

/* Author Info & Instagram Links */
.author-info {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
}
.instagram-link {
    color: #6a5acd;
    font-weight: 500;
}
.instagram-link:hover {
    text-decoration: underline;
}

/* Table of Contents Styling */
.toc {
    background-color: #f7f5ff; /* Light lavender background */
    border: 1px solid #e0d8ff; /* Solid border looks better with buttons */
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 90%; /* A bit wider to accommodate buttons */
}
.toc h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem; /* Add space below heading */
    color: #6a5acd;
}
.toc ul {
    list-style: none;
    padding: 0 0 1rem 0; /* Add padding at the bottom for scrollbar */
    margin: 0;
    display: flex;
    flex-wrap: nowrap; /* This is the key change: forces a single line */
    justify-content: flex-start; /* Aligns buttons to the left for scrolling */
    gap: 0.75rem; /* Space between buttons */
    overflow-x: auto; /* Enables horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
}
.toc ul li {
    margin: 0; /* Remove default margin */
    flex-shrink: 0; /* Prevents buttons from shrinking */
}
.toc ul li a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 50px; /* Pill-shaped buttons */
    color: #5a5a7a;
    font-weight: 500;
    text-decoration: none; /* Ensure no underline */
    transition: all 0.3s ease;
}
.toc ul li a:hover {
    background-color: #6a5acd;
    color: #ffffff;
    border-color: #6a5acd;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* "Top Brands" & "Verdict" Section Styling */
.top-picks {
    margin: 2rem auto;
    padding: 1rem;
}
.top-picks h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.brand-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-item:hover {
    transform: translateY(-5px); /* Lifts the card on hover */
    box-shadow: 0 8px 20px rgba(106, 90, 205, 0.1);
}
.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}
.brand-item .price {
    font-size: 0.9rem;
    color: #fff;
    background-color: #b19cd9;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.brand-item a {
    color: #333;
    font-weight: 600;
}

/* Individual Product Review Card Styling */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}
.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6a5acd;
    background-color: #f7f5ff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin: -1rem 0 1.5rem 0;
}
.image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.image-row img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 1/1; /* Makes images square */
    object-fit: cover;
    transition: transform 0.2s ease;
}
.image-row a:hover img {
    transform: scale(1.03); /* Slightly enlarges image on hover */
}
.product-card h3 {
    border-bottom: 2px solid #f0eaff;
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #6a5acd;
}
.product-card ul {
    list-style: none;
    padding-left: 0;
}
.product-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.product-card ul li::before {
    content: '✓'; /* Adds a checkmark before each list item */
    color: #b19cd9;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.pros-box, .cons-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.pros-box { border-left: 4px solid #77dd77; background-color: #f5fff5; } /* Green for pros */
.cons-box { border-left: 4px solid #ff6961; background-color: #fff5f5; } /* Red for cons */
.pros-box ul, .cons-box ul { margin-top: 0.5rem; }

.buy-now-btn {
    display: block;
    width: fit-content;
    margin: 1.5rem auto 0 auto;
    background: #d4a5e8; /* Pastel pink/purple button */
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}
.buy-now-btn:hover {
    background: #6a5acd; /* Darkens on hover */
}

/* Expert Quote Styling */
.expert-quote {
    background: #f7f5ff;
    border-left: 5px solid #6a5acd;
    padding: 2rem;
    margin: 3rem auto;
    font-style: italic;
    font-size: 1.1rem;
    text-align: center;
}
.expert-quote strong {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: #333;
}
.seo-keyword {
    color: #6a5acd;
    font-weight: bold;
}

/* FAQ Section Styling (for the expandable answers) */
.faq-section {
    margin: 3rem auto;
}
.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}
.faq-question {
    font-weight: 600;
    cursor: pointer;
    padding: 1rem 0;
    position: relative;
    color: #333;
}
.faq-question::after {
    content: '+'; /* Plus sign icon */
    position: absolute;
    right: 10px;
    font-size: 1.5rem;
    color: #b19cd9;
    transition: transform 0.3s ease;
}
.faq-question.active::after {
    transform: rotate(45deg); /* Rotates plus to a close 'x' icon */
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease;
    padding: 0 1rem;
}
.faq-answer.show {
    max-height: 200px; /* Expands to reveal the answer */
    padding: 0.5rem 1rem 1.5rem 1rem;
}

/* "Connect With Us" Card Styling */
.connect-card {
    background-image: linear-gradient(135deg, #f7f5ff, #fdfafd);
    border: 1px solid #e0d8ff;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.08);
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    h1 {
        font-size: 1.4rem; /* Final mobile size */
    }
    .image-row {
        grid-template-columns: 1fr; /* Stacks images vertically on small screens */
    }
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* --- STOP COPYING HERE --- *//* End custom CSS */