/** Shopify CDN: Minification failed

Line 475:4 Unexpected "{"
Line 475:5 Expected identifier but found "%"
Line 475:33 Unexpected "{"
Line 475:34 Expected identifier but found "%"
Line 661:12 Unexpected "{"
Line 661:13 Expected identifier but found "%"
Line 661:41 Unexpected "{"
Line 661:42 Expected identifier but found "%"
Line 708:12 Unexpected "{"
Line 708:13 Expected identifier but found "%"
... and 2 more hidden warnings

**/


    /* Main styling for the Ellora website - Redesigned */
    .ellora-redesigned-prelander {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    }

    /* --- Shared Styles --- */
    .ellora-redesigned-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    }

    .ellora-redesigned-section-padding {
    padding: 60px 0;
    }

    .ellora-redesigned-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    }

    .ellora-redesigned-section-title {
    font-size: 28px;
    color: #6EB99A;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    }

    .ellora-redesigned-section-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    }

    .ellora-redesigned-primary-button {
    background-image: linear-gradient(90deg, #5da987, #6EB99A);
    color: white;
    padding: 14px 30px;
    border-radius: 8px; /* Changed from pill */
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: rgba(110, 185, 154, 0.4) 0px 4px 15px 0px;
    text-align: center;
    }

    .ellora-redesigned-primary-button:hover {
    background-image: linear-gradient(90deg, #4d9876, #5da987);
    transform: translateY(-2px);
    box-shadow: rgba(110, 185, 154, 0.5) 0px 6px 18px 0px;
    }

    .ellora-redesigned-guarantee {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    }

    /* --- Hero Section --- */
    .ellora-redesigned-hero-section {
    background-color: #f8f9ff; /* Changed background */
    padding: 50px 10px;
    position: relative;
    width: 100%;
    }

    .ellora-redesigned-hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    }

    .ellora-redesigned-hero-content {
    flex: 1 1 55%;
    min-width: clamp(250px, 100%, 300px);
    padding-right: 40px;
    }

    .ellora-redesigned-hero-title {
    font-size: 36px;
    color: #6EB99A;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    }

    .ellora-redesigned-hero-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
    }

    .ellora-redesigned-hero-rating {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    }

    .ellora-redesigned-stars {
    color: #ffc107;
    margin-right: 10px;
    font-size: 1.2rem;
    }

    .ellora-redesigned-review-count {
    color: #666;
    font-size: 1rem;
    }

    .ellora-redesigned-hero-cta {
    margin: 30px 0;
    }

    .ellora-redesigned-hero-image {
    flex: 1 1 40%;
    min-width: clamp(250px, 100%, 300px);
    text-align: center;
    }

    .ellora-redesigned-hero-image img {
    max-width: 100%;
    width: clamp(250px, 100%, 590px);
    height: auto;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 35px 0px; /* Adjusted shadow */
    }

    /* --- Key Benefits Section (Below Hero) --- */
    .ellora-redesigned-key-benefits {
    padding: 40px 0;
    background-color: #e7ffee; /* Light green background */
    width: 100%;
    }

    .ellora-redesigned-benefits-row {
    display: flex;
    justify-content: space-around; /* Changed from center */
    flex-wrap: wrap;
    gap: 20px;
    }

    .ellora-redesigned-benefit-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px; /* Changed from pill */
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px; /* Slightly wider */
    }

    .ellora-redesigned-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }

    .ellora-redesigned-benefit-icon {
    width: 45px; /* Slightly smaller */
    height: 45px;
    border-radius: 8px; /* Changed from circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: #6EB99A;
    }

    .ellora-redesigned-benefit-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
    }

    .ellora-redesigned-benefit-text {
    font-weight: 500;
    color: #444;
    font-size: 13px;
    line-height: 1.4;
    }

    /* --- How It Works Section (Replaces Benefits Cards) --- */
    .ellora-redesigned-how-it-works {
    background-color: white;
    }

    .ellora-redesigned-how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    }

    .ellora-redesigned-how-card {
    background-color: #f8f9ff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 15px 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    }

    .ellora-redesigned-how-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .ellora-redesigned-how-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: #6EB99A;
    }

    .ellora-redesigned-how-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    }

    .ellora-redesigned-how-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    }

    .ellora-redesigned-how-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    }

    /* --- Science Section (Alternating Layout) --- */
    .ellora-redesigned-science-section {
    background-color: #f8f9ff;
    }

    .ellora-redesigned-science-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    }

    .ellora-redesigned-science-content {
    flex: 1 1 50%;
    min-width: 300px;
    }

    .ellora-redesigned-science-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
    }

    .ellora-redesigned-science-image img {
    max-width: 100%;
    width: 650px;
    height: auto;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px 0px;
    }

    .ellora-redesigned-science-title {
    font-size: 26px;
    color: #6EB99A;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    }

    .ellora-redesigned-science-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    }

    .ellora-redesigned-science-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    }

    .ellora-redesigned-step-number {
    background-color: #6EB99A;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px; /* Changed from circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(110, 185, 154, 0.3);
    font-size: 16px;
    }

    .ellora-redesigned-step-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.4;
    }

    .ellora-redesigned-step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    }

    /* --- Testimonials Section --- */
    .ellora-redesigned-testimonials-section {
    background-color: white;
    }

    .ellora-redesigned-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    }

    .ellora-redesigned-testimonial-card {
    background-color: #f8f9ff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 15px 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e7ffee; /* Added border */
    }

    .ellora-redesigned-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .ellora-redesigned-testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
    }

    .ellora-redesigned-testimonial-content {
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
    }

    .ellora-redesigned-testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    }

    .ellora-redesigned-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .ellora-redesigned-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .ellora-redesigned-author-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
    }

    .ellora-redesigned-author-info p {
    color: #666;
    font-size: 13px;
    }

    .ellora-redesigned-testimonial-results {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 10px 0px;
    border: 1px solid #e7ffee;
    }

    .ellora-redesigned-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    }

    .ellora-redesigned-result-label {
    font-weight: 600;
    color: #555;
    font-size: 11px;
    }

    .ellora-redesigned-result-value {
    color: #6EB99A;
    font-size: 11px;
    font-weight: 500;
    }

    /* --- Stats Section --- */
    .ellora-redesigned-stats-section {
    padding: 50px 0;
    background-color: #e7ffee;
    }

    .ellora-redesigned-stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    }

    .ellora-redesigned-stat-item {
    text-align: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px 0px;
    max-width: 180px;
    width: 100%;
    {% comment %} height: 100px; {% endcomment %}
    }

    .ellora-redesigned-stat-icon {
    margin-bottom: 8px;
    }

    .ellora-redesigned-stat-icon svg {
    width: 24px;
    height: 24px;
    fill: #6EB99A;
    }

    .ellora-redesigned-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #6EB99A;
    margin-bottom: 3px;
    }

    .ellora-redesigned-stat-label {
    color: #555;
    font-size: 11px;
    }

    /* --- FAQ Section --- */
    .ellora-redesigned-faq-section {
    background-color: white;
    }

    .ellora-redesigned-faq-container {
    max-width: 800px;
    margin: 0 auto;
    }

    .ellora-redesigned-faq-list {
    margin-top: 30px;
    }

    .ellora-redesigned-faq-item {
    border: 1px solid #e7ffee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #f8f9ff;
    }

    .ellora-redesigned-faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-size: 14px;
    }

    .ellora-redesigned-faq-question:hover {
    background-color: #e7ffee;
    }

    .ellora-redesigned-faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    }

    .ellora-redesigned-faq-icon:before,
    .ellora-redesigned-faq-icon:after {
    content: '';
    position: absolute;
    background-color: #6EB99A;
    transition: transform 0.3s ease;
    }

    .ellora-redesigned-faq-icon:before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    }

    .ellora-redesigned-faq-icon:after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    }

    .ellora-redesigned-faq-item.active .ellora-redesigned-faq-icon {
    transform: rotate(45deg);
    }

    .ellora-redesigned-faq-answer {
    padding: 0 20px 15px;
    color: #666;
    line-height: 1.6;
    display: none;
    font-size: 13px;
    background-color: #f8f9ff;
    }

    .ellora-redesigned-faq-item.active .ellora-redesigned-faq-answer {
    display: block;
    }

    /* --- CTA Section --- */
    .ellora-redesigned-cta-section {
    text-align: center;
    margin-top: 40px;
    }

    /* --- Responsive Styles --- */
    @media (max-width: 992px) {
        .ellora-redesigned-science-container {
            flex-direction: column;
        }
        .ellora-redesigned-science-content,
        .ellora-redesigned-science-image {
            flex: 1 1 100%;
        }
        .ellora-redesigned-science-image {
            order: -1; /* Image first on medium screens */
        }
    }

    @media (max-width: 768px) {
        .ellora-redesigned-section-padding {
            padding: 40px 0;
        }
        .ellora-redesigned-hero-container {
            flex-direction: column;
        }
        .ellora-redesigned-hero-content {
            padding-right: 0;
            margin-bottom: 30px;
            order: 1;
            text-align: center;
        }
        .ellora-redesigned-hero-image {
            order: 2;
            margin-bottom: 20px;
        }
        .ellora-redesigned-hero-image img {
            width: 100%;
            max-width: 400px;
        }
        .ellora-redesigned-hero-title {
            font-size: 28px;
        }
        .ellora-redesigned-hero-subtitle {
            font-size: 15px;
        }
        .ellora-redesigned-hero-rating {
            justify-content: center;
        }
        .ellora-redesigned-primary-button {
            width: 100%;
            max-width: 280px;
        }
        .ellora-redesigned-benefits-row {
            flex-direction: column;
            align-items: center;
        }
        .ellora-redesigned-benefit-pill {
            width: 100%;
            max-width: 300px;
        }
        .ellora-redesigned-how-it-works-grid,
        .ellora-redesigned-testimonials-grid {
            grid-template-columns: 1fr;
        }
        .ellora-redesigned-science-image img {
            width: 100%;
            max-width: 400px;
        }
        .ellora-redesigned-stats-container {
            flex-direction: column;
            align-items: center;
        }
        .ellora-redesigned-stat-item {
            max-width: 180px;
            {% comment %} height: 100px; {% endcomment %}
            margin-bottom: 15px;
        }
        .ellora-redesigned-faq-question {
            font-size: 13px;
            padding: 12px 15px;
        }
    }

    @media (max-width: 480px) {
        .ellora-redesigned-hero-title {
            font-size: 24px;
        }
        .ellora-redesigned-hero-subtitle {
            font-size: 14px;
        }
        .ellora-redesigned-section-title {
            font-size: 22px;
        }
        .ellora-redesigned-section-subtitle {
            font-size: 13px;
        }
        .ellora-redesigned-benefit-pill {
            padding: 10px 15px;
            height: auto;
            min-height: 60px;
        }
        .ellora-redesigned-benefit-icon {
            width: 40px;
            height: 40px;
        }
        .ellora-redesigned-benefit-icon svg {
            width: 20px;
            height: 20px;
        }
        .ellora-redesigned-benefit-text {
            font-size: 12px;
        }
        .ellora-redesigned-how-card,
        .ellora-redesigned-testimonial-card {
            padding: 20px;
        }
        .ellora-redesigned-faq-container {
            padding: 0 10px;
        }
        .ellora-redesigned-stat-item {
            max-width: 160px;
            {% comment %} height: 90px; {% endcomment %}
        }
        .ellora-redesigned-stat-icon svg {
            width: 20px;
            height: 20px;
        }
        .ellora-redesigned-stat-number {
            font-size: 18px;
        }
        .ellora-redesigned-stat-label {
            font-size: 10px;
        }
    }