/** Shopify CDN: Minification failed

Line 2917:15 Expected identifier but found whitespace
Line 2917:17 Unexpected "{"
Line 2917:26 Expected ":"
Line 3770:15 Expected identifier but found whitespace
Line 3770:17 Unexpected "{"
Line 3770:26 Expected ":"
Line 4941:0 Unexpected "{"
Line 4941:1 Expected identifier but found "%"
Line 4950:2 Unexpected "{"
Line 4950:3 Expected identifier but found "%"

**/
/* ==================== DR. CHLOE CONSULTATION SECTION ==================== */
.chloe-consultation-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fefdf9 0%, #f8f6f0 100%);
    overflow: hidden;
   
}

/* 3D Parallax Background */
.consultation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.08), transparent);
}

.orb2 {
    bottom: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.06), transparent);
    animation-delay: 5s;
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(62, 119, 99, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2%, 2%) scale(1.05); }
}

/* Hero Section */
.hero-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-description {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.reviews-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.stars {
    display: flex;
    gap: 4px;
}

.reviews-count {
    font-size: 14px;
    color: #6c757d;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.25);
}

.hero-btn:hover {
    background: rgb(42, 99, 79);
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 12px 25px rgba(62, 119, 99, 0.35);
    color: white;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    text-align: center;
    perspective: 1000px;
}

.hero-image-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
}

.hero-image-3d:hover {
    transform: rotateY(5deg) rotateX(3deg) scale(1.02);
    box-shadow: 0 35px 50px -18px rgba(62, 119, 99, 0.25);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-image-3d:hover .image-glow {
    opacity: 1;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Section Headers */
.section-heading {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.section-subheading {
    font-size: 17px;
    color: #6c757d;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.heading-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 20px auto 0;
    border-radius: 3px;
}

.heading-divider-center {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 20px auto 0;
    border-radius: 3px;
}

/* Package Cards */
.package-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(62, 119, 99, 0.1);
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -15px rgba(62, 119, 99, 0.15);
    border-color: rgba(62, 119, 99, 0.25);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: rgba(62, 119, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.package-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.package-subtitle {
    font-size: 16px;
    color: rgb(62, 119, 99);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(62, 119, 99, 0.15);
}

.package-features {
    margin-bottom: 30px;
}

.package-features p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.package-features p strong {
    color: #1a1a1a;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: rgb(42, 99, 79);
    gap: 12px;
    transform: translateY(-2px);
    color: white;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.package-card:hover .card-shine {
    left: 150%;
}

/* Why Choose Cards */
.why-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(62, 119, 99, 0.08);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(62, 119, 99, 0.12);
    border-color: rgba(62, 119, 99, 0.2);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: rgba(62, 119, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgb(62, 119, 99), rgb(42, 99, 79));
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: rgb(62, 119, 99);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    color: rgb(62, 119, 99);
}

/* Spacing */
.gx-6 {
    column-gap: 48px;
}

.gy-8 {
    row-gap: 40px;
}

.mb-16 {
    margin-bottom: 80px;
}

/* Responsive */
@media (max-width: 991px) {
    .chloe-consultation-section {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 34px;
    }
    .section-heading {
        font-size: 32px;
    }
    .package-card {
        padding: 30px 25px;
    }
    .cta-section {
        padding: 45px 30px;
    }
    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .chloe-consultation-section {
        padding: 50px 0;
    }
    .hero-title {
        font-size: 28px;
    }
    .section-heading {
        font-size: 26px;
    }
    .package-title {
        font-size: 22px;
    }
    .cta-title {
        font-size: 24px;
    }
    .hero-image-wrapper {
        margin-top: 30px;
    }
}

/* ==================== ABOUT US SECTION - 3D PARALLAX ==================== */
.about-us-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/1648293/pexels-photo-1648293.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* Section Header */
.about-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.about-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.3));
    margin: 0 auto 20px;
    border-radius: 3px;
}

.about-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Image Styles */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    transform-style: preserve-3d;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
}

.about-image-frame:hover {
    transform: rotateY(4deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 35px 50px -20px rgba(62, 119, 99, 0.3);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-image-frame:hover .about-main-image {
    transform: scale(1.03);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.1), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image-frame:hover .about-image-overlay {
    opacity: 1;
}

/* Floating Badge */
.about-floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: all 0.3s ease;
}

.about-floating-badge-left {
    right: auto;
    left: -15px;
}

.about-image-frame:hover .about-floating-badge {
    transform: translateX(5px) translateY(-5px);
    background: rgb(75, 142, 118);
}

/* Content Styles */
.about-story-content {
    padding: 20px;
}

.about-story-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-story-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 18px;
}

/* Quote Box */
.about-quote {
    background: rgba(62, 119, 99, 0.05);
    border-left: 4px solid rgb(62, 119, 99);
    padding: 25px 30px;
    border-radius: 16px;
    margin-top: 25px;
}

.about-quote p {
    font-size: 18px;
    font-style: italic;
    color: #2d3a3a;
    margin: 15px 0 10px;
    line-height: 1.6;
}

.about-quote cite {
    font-size: 14px;
    color: rgb(62, 119, 99);
    font-weight: 600;
    font-style: normal;
}

/* Highlight Box */
.about-highlight-box {
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.08), rgba(62, 119, 99, 0.02));
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(62, 119, 99, 0.15);
}

.about-highlight-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #2d3a3a;
    margin: 0;
}

/* Spacing */
.mb-16 {
    margin-bottom: 80px;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-aos="fade-left"] {
    animation: fadeInLeft 0.8s ease forwards;
}

[data-aos="fade-right"] {
    animation: fadeInRight 0.8s ease forwards;
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .about-us-section {
        padding: 70px 0;
    }
    .about-main-title {
        font-size: 40px;
    }
    .about-story-title {
        font-size: 28px;
    }
    .about-story-text {
        font-size: 15px;
    }
    .about-quote p {
        font-size: 16px;
    }
    .flex-lg-row-reverse {
        flex-direction: column-reverse !important;
    }
    .mb-16 {
        margin-bottom: 50px;
    }
    .about-floating-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 0;
    }
    .about-main-title {
        font-size: 32px;
    }
    .about-story-title {
        font-size: 24px;
    }
    .about-subtitle {
        font-size: 16px;
    }
    .about-story-text {
        font-size: 14px;
    }
    .about-quote {
        padding: 20px;
    }
    .about-quote p {
        font-size: 14px;
    }
}


/* ==================== 3D PARALLAX CENTER SECTION ==================== */
.parallax-center-section {
    position: relative;
    padding: 80px 0;
    background: transparent;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Section Header */
.center-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.center-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.modern-text {
    color: #3e7763;
    position: relative;
}

.modern-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3e7763, transparent);
}

.center-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.center-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3e7763, rgba(62, 119, 99, 0.2));
    margin: 20px auto 0;
    border-radius: 3px;
}

/* Center Layout */
.center-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.layout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.top-row, .middle-row {
    margin-bottom: 30px;
}

.layout-box {
    flex: 1;
    background: rgba(62, 119, 99, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: 1px solid rgba(62, 119, 99, 0.1);
}

.layout-box:hover {
    transform: translateY(-8px);
    background: rgba(62, 119, 99, 0.1);
    border-color: rgba(62, 119, 99, 0.3);
    box-shadow: 0 20px 35px -12px rgba(62, 119, 99, 0.15);
}

.box-icon {
    width: 60px;
    height: 60px;
    background: #3e7763;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.layout-box:hover .box-icon {
    transform: scale(1.05);
    background: #2d5a4a;
}

.box-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.box-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.box-line {
    width: 40px;
    height: 2px;
    background: #3e7763;
    margin-top: 15px;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.layout-box:hover .box-line {
    width: 60px;
}

/* Center Image */
.center-image-box {
    flex: 1.2;
    text-align: center;
    perspective: 1200px;
}
.center-img {
    width: 100%;
    height: 365px;
    display: block;
    transition: transform 0.6s ease;
    object-fit: contain;
    padding-top: 10px;
}

.center-image-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
}

.center-image-3d:hover {
    transform: rotateY(4deg) rotateX(3deg) scale(1.02);
    box-shadow: 0 35px 50px -20px rgba(62, 119, 99, 0.25);
}



.center-image-3d:hover .center-img {
    transform: scale(1.02);
}

.center-img-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(62, 119, 99, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.center-image-3d:hover .center-img-glow {
    opacity: 1;
}

/* Scroll Animations */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-right"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-left"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}
[data-scroll="zoom-in"].scrolled {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .center-main-title {
        font-size: 38px;
    }
    .top-row, .middle-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .layout-box {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 20px;
    }
    .center-image-box {
        flex: 0 0 100%;
        order: 3;
        margin: 20px 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .parallax-center-section {
        padding: 50px 0;
    }
    .center-main-title {
        font-size: 30px;
    }
    .center-subtitle {
        font-size: 16px;
    }
    .layout-box {
        flex: 0 0 100%;
        padding: 25px 20px;
    }
    .box-title {
        font-size: 18px;
    }
    .box-desc {
        font-size: 13px;
    }
}


/* ==================== BEST SELLER COLLECTION SECTION ==================== */
.bestseller-collection {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(145deg, #fefdf9 0%, #f8f6f0 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 3D Parallax Background */
.bestseller-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.borb1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.08), transparent);
}

.borb2 {
    bottom: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.06), transparent);
    animation-delay: 5s;
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(62, 119, 99, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2%, 2%) scale(1.05); }
}

/* Section Header */
.bestseller-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bestseller-heading {
    font-size: 46px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.highlight {
    color: rgb(62, 119, 99);
}

.bestseller-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 0 auto 20px;
    border-radius: 3px;
}

.bestseller-subheading {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Cards */
.category-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
    height: 100%;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px -15px rgba(62, 119, 99, 0.2);
}

/* Card Image */
.category-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.category-img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgb(62, 119, 99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.category-card:hover .category-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Card Content */
.category-content {
    padding: 25px 20px 30px;
    text-align: center;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: rgb(62, 119, 99);
}

.category-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(62, 119, 99);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.category-btn svg {
    transition: transform 0.3s ease;
}

.category-btn:hover {
    gap: 12px;
}

.category-btn:hover svg {
    transform: translateX(4px);
}

/* Card Shine Effect */
.category-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.category-card:hover .category-shine {
    left: 150%;
}

/* Scroll Animations */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}
[data-scroll="zoom-in"].scrolled {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 991px) {
    .bestseller-collection {
        padding: 60px 0;
    }
    .bestseller-heading {
        font-size: 36px;
    }
    .category-image-wrapper {
        height: 250px;
    }
    .category-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .bestseller-collection {
        padding: 50px 0;
    }
    .bestseller-heading {
        font-size: 28px;
    }
    .bestseller-subheading {
        font-size: 16px;
    }
    .category-image-wrapper {
        height: 220px;
    }
    .category-content {
        padding: 20px 15px 25px;
    }
    .category-title {
        font-size: 18px;
    }
}


/* ==================== BREADCRUMB SECTION ==================== */
.breadcrumb-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
}

/* Parallax Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

/* 3D Background Elements */
.breadcrumb-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: circleFloat 20s ease-in-out infinite alternate;
}

.circle1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.circle3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes circleFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    100% { transform: translate(20px, 20px) scale(1.1); opacity: 0.6; }
}

/* Breadcrumb Title */
.breadcrumb-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    position: relative;
    z-index: 2;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    transform: translateX(-2px);
}

.breadcrumb-item.active span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-separator svg {
    stroke: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb Subtitle */
.breadcrumb-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Scroll Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .breadcrumb-section {
        padding: 60px 0;
        min-height: 300px;
    }
    .breadcrumb-title {
        font-size: 42px;
    }
    .breadcrumb-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 50px 0;
        min-height: 250px;
        background-attachment: scroll;
    }
    .breadcrumb-title {
        font-size: 32px;
    }
    .breadcrumb-item a, .breadcrumb-item.active span {
        font-size: 14px;
    }
    .breadcrumb-list {
        gap: 8px;
    }
    .breadcrumb-subtitle {
        font-size: 14px;
        margin-top: 15px;
    }
}


/* ==================== PREMIUM DOCTOR'S STORY SECTION ==================== */
.premium-doctor-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fefdf9 0%, #f8f6f0 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Image Styles with 3D Hover */
.premium-doctor-image-wrapper {
    position: relative;
    text-align: center;
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.premium-doctor-image-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 100%;
}

.premium-doctor-image-3d:hover {
    transform: rotateY(5deg) rotateX(3deg) scale(1.02);
    box-shadow: 0 35px 50px -18px rgba(62, 119, 99, 0.25);
}

.premium-doctor-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 28px;
}

.premium-doctor-image-3d:hover .premium-doctor-image {
    transform: scale(1.02);
}

.image-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 28px;
}

.premium-doctor-image-3d:hover .image-glow-overlay {
    opacity: 1;
}

/* Floating Badge */
.premium-doctor-floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(62, 119, 99, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Content Styles */
.premium-doctor-content {
    max-width: 600px;
    margin-right: auto;
    padding-left: 20px;
}

.premium-doctor-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.premium-doctor-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.premium-doctor-intro-text {
    font-size: 20px;
    font-weight: 600;
    color: rgb(62, 119, 99);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(62, 119, 99, 0.15);
    display: inline-block;
}

.premium-doctor-story {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

.premium-doctor-story p {
    margin-bottom: 18px;
    font-size: 16px;
}

.premium-doctor-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
    color: rgb(62, 119, 99);
    font-style: italic;
}

/* Button Styles */
.premium-doctor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.25);
}

.premium-doctor-btn:hover {
    background: rgb(42, 99, 79);
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 12px 25px rgba(62, 119, 99, 0.35);
    color: white;
}

.premium-doctor-btn svg {
    transition: transform 0.3s ease;
}

.premium-doctor-btn:hover svg {
    transform: translateX(4px);
}

/* Scroll Animations */
[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-right"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-left"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Desktop / Laptop (992px - 1400px) */
@media (min-width: 992px) and (max-width: 1400px) {
    .premium-doctor-title {
        font-size: 38px;
    }
    .premium-doctor-content {
        max-width: 520px;
    }
    .premium-doctor-story p {
        font-size: 15px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .premium-doctor-section {
        padding: 60px 0;
    }
    .premium-doctor-content {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
        margin-top: 40px;
    }
    .premium-doctor-title {
        font-size: 36px;
    }
    .premium-doctor-intro-text {
        font-size: 18px;
    }
    .premium-doctor-story {
        text-align: center;
    }
    .premium-doctor-signature {
        justify-content: center;
    }
    .premium-doctor-btn {
        margin: 0 auto;
        display: inline-flex;
    }
    .premium-doctor-image-3d {
        max-width: 380px;
        margin: 0 auto;
    }
    .premium-doctor-floating-badge {
        padding: 8px 16px;
        font-size: 12px;
        right: -10px;
        bottom: -10px;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .premium-doctor-section {
        padding: 50px 0;
    }
    .premium-doctor-content {
        text-align: center;
        padding-left: 0;
        margin-top: 35px;
    }
    .premium-doctor-title {
        font-size: 32px;
    }
    .premium-doctor-intro-text {
        font-size: 16px;
    }
    .premium-doctor-story p {
        font-size: 14px;
    }
    .premium-doctor-signature {
        justify-content: center;
        font-size: 16px;
    }
    .premium-doctor-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    .premium-doctor-image-3d {
        max-width: 340px;
    }
    .premium-doctor-floating-badge {
        padding: 6px 14px;
        font-size: 11px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .premium-doctor-section {
        padding: 40px 0;
    }
    .premium-doctor-content {
        text-align: center;
        padding-left: 0;
        margin-top: 30px;
    }
    .premium-doctor-badge {
        font-size: 11px;
        padding: 4px 14px;
    }
    .premium-doctor-title {
        font-size: 28px;
    }
    .premium-doctor-intro-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .premium-doctor-story p {
        font-size: 13px;
        margin-bottom: 14px;
    }
    .premium-doctor-signature {
        justify-content: center;
        font-size: 14px;
        gap: 8px;
    }
    .premium-doctor-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    .premium-doctor-image-3d {
        max-width: 280px;
    }
    .premium-doctor-floating-badge {
        padding: 5px 12px;
        font-size: 10px;
        gap: 5px;
        right: -8px;
        bottom: -8px;
    }
    .premium-doctor-floating-badge svg {
        width: 16px;
        height: 16px;
    }
}

/* Extra Small (up to 375px) */
@media (max-width: 375px) {
    .premium-doctor-title {
        font-size: 24px;
    }
    .premium-doctor-intro-text {
        font-size: 14px;
    }
    .premium-doctor-image-3d {
        max-width: 240px;
    }
}

/* Spacing Utilities */
.gx-5 {
    column-gap: 48px;
}

.gy-6 {
    row-gap: 30px;
}


/* ==================== PREMIUM EBOOK SECTION - RESPONSIVE ==================== */
.premium-ebook-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fefdf9 0%, #f8f6f0 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.premium-ebook-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

/* Content Styles */
.premium-ebook-content {
    max-width: 550px;
    margin-left: auto;
    padding-right: 20px;
}

.premium-ebook-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.premium-ebook-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.premium-ebook-author {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(62, 119, 99, 0.15);
    display: inline-block;
}

.premium-ebook-features {
    margin-bottom: 35px;
}

.premium-ebook-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: #2d3a3a;
    transition: all 0.3s ease;
}

.premium-ebook-feature:hover {
    transform: translateX(8px);
}

.feature-check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Button Styles */
.premium-ebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.25);
}

.premium-ebook-btn:hover {
    background: rgb(42, 99, 79);
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 12px 25px rgba(62, 119, 99, 0.35);
    color: white;
}

.premium-ebook-btn svg {
    transition: transform 0.3s ease;
}

.premium-ebook-btn:hover svg {
    transform: translateX(4px);
}

/* Image Styles with 3D Hover */
.premium-ebook-image-wrapper {
    position: relative;
    text-align: center;
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.premium-ebook-image-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
    max-width: 380px;
    width: 100%;
}

.premium-ebook-image-3d:hover {
    transform: rotateY(5deg) rotateX(3deg) scale(1.02);
    box-shadow: 0 35px 50px -18px rgba(62, 119, 99, 0.3);
}

.premium-ebook-image {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 24px;
    height: 450px;
    object-fit: cover;
}

.premium-ebook-image-3d:hover .premium-ebook-image {
    transform: scale(1.02);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 24px;
}

.premium-ebook-image-3d:hover .image-glow {
    opacity: 1;
}

.floating-bubble {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(62, 119, 99, 0.2);
    animation: bubbleFloat 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll Animations */
[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-right"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}
[data-scroll="zoom-in"].scrolled {
    opacity: 1;
    transform: scale(1);
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Laptop (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1400px) {
    .premium-ebook-title {
        font-size: 38px;
    }
    .premium-ebook-content {
        max-width: 500px;
    }
}

/* Desktop / Tablet (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .premium-ebook-section {
        padding: 70px 0;
    }
    .premium-ebook-title {
        font-size: 34px;
    }
    .premium-ebook-content {
        max-width: 450px;
    }
    .premium-ebook-feature {
        font-size: 15px;
    }
    .premium-ebook-image-3d {
        max-width: 340px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .premium-ebook-section {
        padding: 60px 0;
    }
    .premium-ebook-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
        margin: 0 auto;
    }
    .premium-ebook-title {
        font-size: 36px;
    }
    .premium-ebook-feature {
        justify-content: center;
    }
    .premium-ebook-feature:hover {
        transform: translateX(0);
    }
    .premium-ebook-image-3d {
        max-width: 320px;
        margin: 0 auto;
    }
    .floating-bubble {
        padding: 8px 16px;
        font-size: 12px;
        right: -10px;
        bottom: -10px;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .premium-ebook-section {
        padding: 50px 0;
    }
    .premium-ebook-content {
        text-align: center;
        padding-right: 0;
    }
    .premium-ebook-title {
        font-size: 32px;
    }
    .premium-ebook-author {
        font-size: 14px;
    }
    .premium-ebook-feature {
        justify-content: center;
        font-size: 14px;
    }
    .premium-ebook-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    .premium-ebook-image-3d {
        max-width: 280px;
    }
    .floating-bubble {
        padding: 6px 14px;
        font-size: 11px;
        right: -8px;
        bottom: -8px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .premium-ebook-section {
        padding: 40px 0;
    }
    .premium-ebook-content {
        text-align: center;
        padding-right: 0;
    }
    .premium-ebook-badge {
        font-size: 11px;
        padding: 4px 14px;
    }
    .premium-ebook-title {
        font-size: 28px;
    }
    .premium-ebook-author {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .premium-ebook-feature {
        justify-content: center;
        font-size: 13px;
        padding: 8px 0;
    }
    .premium-ebook-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    .premium-ebook-image-3d {
        max-width: 250px;
    }
    .floating-bubble {
        padding: 5px 12px;
        font-size: 10px;
        gap: 5px;
        right: -5px;
        bottom: -5px;
    }
    .floating-bubble svg {
        width: 14px;
        height: 14px;
    }
}

/* Extra Small (up to 375px) */
@media (max-width: 375px) {
    .premium-ebook-title {
        font-size: 24px;
    }
    .premium-ebook-feature {
        font-size: 12px;
    }
    .premium-ebook-image-3d {
        max-width: 220px;
    }
}

/* Spacing Utilities */
.gx-5 {
    column-gap: 48px;
}

.gy-6 {
    row-gap: 30px;
}


/* ==================== PREMIUM TESTIMONIALS SECTION ==================== */
.premium-testimonials-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(145deg, #fefdf9 0%, #faf8f3 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 3D Parallax Background */
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.t-orb1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.08), transparent);
}

.t-orb2 {
    bottom: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.06), transparent);
    animation-delay: 5s;
}

.t-orb3 {
    top: 40%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.05), transparent);
    animation-delay: 10s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2%, 2%) scale(1.05); }
}

/* Section Header */
.premium-testimonial-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.premium-testimonial-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.title-highlight {
    color: rgb(62, 119, 99);
}

.premium-testimonial-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 0 auto 18px;
    border-radius: 3px;
}

.premium-testimonial-subtitle {
    font-size: 17px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonial Cards */
.premium-testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(62, 119, 99, 0.08);
    height: 100%;
}

.premium-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -15px rgba(62, 119, 99, 0.15);
    border-color: rgba(62, 119, 99, 0.2);
}

/* Featured Card */
.premium-featured-card {
    border: 1px solid rgba(62, 119, 99, 0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(62,119,99,0.02));
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: rgb(62, 119, 99);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Quote Mark */
.card-quote-mark {
    margin-bottom: 25px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.premium-testimonial-card:hover .card-quote-mark {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Testimonial Text */
.premium-testimonial-text {
    font-size: 17px;
    line-height: 1.65;
    color: #2d3a3a;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 450;
}

/* Author Section */
.premium-testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(62, 119, 99, 0.1);
}

.author-avatar-wrapper {
    flex-shrink: 0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.premium-testimonial-card:hover .author-avatar {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.2);
}

.author-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(62, 119, 99), rgb(42, 99, 79));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.author-details {
    flex: 1;
}

.author-fullname {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-designation {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 6px;
}

.author-rating {
    display: flex;
    gap: 3px;
}

/* Card Hover Shine */
.card-hover-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.premium-testimonial-card:hover .card-hover-shine {
    left: 150%;
}

/* Scroll Animations */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="fade-left"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-left"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-right"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 991px) {
    .premium-testimonials-section {
        padding: 60px 0;
    }
    .premium-testimonial-title {
        font-size: 36px;
    }
    .premium-testimonial-card {
        padding: 30px 25px;
    }
    .premium-testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .premium-testimonials-section {
        padding: 50px 0;
    }
    .premium-testimonial-title {
        font-size: 28px;
    }
    .premium-testimonial-subtitle {
        font-size: 15px;
    }
    .premium-testimonial-card {
        padding: 25px 20px;
    }
    .premium-testimonial-text {
        font-size: 15px;
    }
    .author-avatar, .author-avatar-placeholder {
        width: 50px;
        height: 50px;
    }
    .author-fullname {
        font-size: 16px;
    }
}


/* ==================== FAQ SECTION ==================== */
.faq-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fefdf9 0%, #f8f6f0 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 3D Parallax Background */
.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.faq-orb1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.08), transparent);
}

.faq-orb2 {
    bottom: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.06), transparent);
    animation-delay: 5s;
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(62, 119, 99, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2%, 2%) scale(1.05); }
}

/* Section Header */
.faq-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.faq-subheading {
    font-size: 17px;
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

.faq-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 20px auto 0;
    border-radius: 3px;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(62, 119, 99, 0.08);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(62, 119, 99, 0.1);
    border-color: rgba(62, 119, 99, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(62, 119, 99, 0.02);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(62, 119, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: rgb(62, 119, 99);
}

.faq-item.active .faq-icon svg {
    stroke: white;
}

.faq-icon svg {
    stroke: rgb(62, 119, 99);
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafaf8;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 28px 28px 28px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: #1a1a1a;
}

/* Contact CTA */
.faq-contact-cta {
    text-align: center;
    background: rgba(62, 119, 99, 0.05);
    border-radius: 28px;
    padding: 45px 35px;
    margin-top: 50px;
    border: 1px solid rgba(62, 119, 99, 0.1);
}

.faq-contact-cta svg {
    margin-bottom: 20px;
}

.faq-contact-cta h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-contact-cta p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.2);
}

.faq-contact-btn:hover {
    background: rgb(42, 99, 79);
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 12px 25px rgba(62, 119, 99, 0.3);
    color: white;
}

/* Scroll Animations */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}
[data-scroll="zoom-in"].scrolled {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-heading {
        font-size: 34px;
    }
    .faq-question {
        padding: 16px 22px;
    }
    .faq-question-text {
        font-size: 16px;
    }
    .faq-answer-content {
        padding: 0 22px 22px 22px;
        font-size: 15px;
    }
    .faq-contact-cta {
        padding: 35px 25px;
    }
    .faq-contact-cta h4 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    .faq-heading {
        font-size: 28px;
    }
    .faq-subheading {
        font-size: 15px;
    }
    .faq-question {
        padding: 14px 18px;
    }
    .faq-question-text {
        font-size: 15px;
    }
    .faq-answer-content {
        padding: 0 18px 18px 18px;
        font-size: 14px;
    }
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    .faq-icon svg {
        width: 16px;
        height: 16px;
    }
}

.featured-products-section .slick-prev {
    left: -46px;
}
.featured-products-section {
    background: {{ section.settings.background_color }};
    padding-top: 50px;
    padding-bottom: 80px;
}
.card-product {
    transition: transform 0.3s ease;
}
.card-product:hover {
    transform: translateY(-8px);
}
.hover-zoom-in {
    overflow: hidden;
    display: block;
}
.hover-zoom-in img {
    transition: transform 0.5s ease;
}
.hover-zoom-in:hover img {
    transform: scale(1.05);
}
.product-flash {
    top: 15px;
    left: 15px;
}
.product-actions>a {
    opacity: 0;
    padding: 10px ;
}
.badge-product-flash {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}
.product-actions {
    gap: 10px;
    bottom: 15px;
    left: 0;
    right: 0;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.card-product:hover .product-actions {
    opacity: 1;
    bottom: 20px;
}
.product-action {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product-action:hover {
    background: #3e7763 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.product-action:hover svg {
    stroke: #ffffff !important;
}
.rating {
    position: relative;
    display: inline-block;
}
.empty-stars, .filled-stars {
    gap: 3px;
}
.filled-stars {
    overflow: hidden;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .product-actions {
        opacity: 1;
    }
}
.featured-products-slider .slick-dots {
    
    margin-top: 40px;
}
.featured-products-slider .slick-prev, .slick-next {
   
    top: 0%;

}

/* ==================== PREMIUM 5 BOXES LAYOUT ==================== */
.premium-5box-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Section Header */
.boxes-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.1);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.boxes-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.heading-highlight {
    color: rgb(62, 119, 99);
}

.boxes-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 0 0 20px 0;
    border-radius: 3px;
}

.boxes-description {
    font-size: 16px;
    color: #6c757d;
    max-width: 480px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Boxes Grid */
.boxes-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 25px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(62, 119, 99, 0.08);
}

.feature-box:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(62, 119, 99, 0.12);
    border-color: rgba(62, 119, 99, 0.2);
}

.feature-box-icon {
    width: 55px;
    height: 55px;
    background: rgba(62, 119, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-box:hover .feature-box-icon {
    background: rgb(62, 119, 99);
    transform: scale(1.05);
}

.feature-box:hover .feature-box-icon svg {
    stroke: white !important;
}

.feature-box-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-box-content {
    flex: 1;
}

.feature-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-box-title {
    color: rgb(62, 119, 99);
}

.feature-box-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* CTA Button */
.cta-wrapper {
    margin-top: 35px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.2);
}

.cta-button:hover {
    background: rgb(42, 99, 79);
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 12px 25px rgba(62, 119, 99, 0.3);
    color: white;
}

/* Right Side Image */
.image-wrapper-right {
    position: relative;
    text-align: center;
    perspective: 1200px;
}

.image-3d-container-right {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

.image-3d-container-right:hover {
    transform: rotateY(5deg) rotateX(3deg) scale(1.02);
    box-shadow: 0 30px 45px -15px rgba(62, 119, 99, 0.2);
}

.feature-image-right {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-3d-container-right:hover .feature-image-right {
    transform: scale(1.02);
}

.image-glow-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.image-3d-container-right:hover .image-glow-right {
    opacity: 1;
}

/* Floating Badge */
.floating-badge-right {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(62, 119, 99, 0.2);
    animation: badgeFloatRight 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgeFloatRight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Spacing */
.gx-8 {
    gap: 50px;
}

.gy-6 {
    row-gap: 30px;
}

/* Scroll Animations */
[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(-35px);
    transition: all 0.7s ease;
}
[data-scroll="fade-right"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.7s ease;
}
[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.7s ease;
}
[data-scroll="zoom-in"].scrolled {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 991px) {
    .premium-5box-section {
        padding: 60px 0;
    }
    .boxes-heading {
        font-size: 32px;
    }
    .feature-box {
        padding: 15px 20px;
    }
    .feature-box-icon {
        width: 48px;
        height: 48px;
    }
    .feature-box-title {
        font-size: 16px;
    }
    .feature-box-desc {
        font-size: 13px;
    }
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .premium-5box-section {
        padding: 50px 0;
    }
    .boxes-heading {
        font-size: 28px;
    }
    .boxes-description {
        font-size: 14px;
    }
    .floating-badge-right {
        padding: 6px 14px;
        font-size: 11px;
        bottom: -8px;
        right: -8px;
    }
    .boxes-grid {
        margin-bottom: 30px;
    }
}

/* Feature Box - Default State */
.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 25px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(62, 119, 99, 0.08);
}

/* Hover Effect */
.feature-box:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(62, 119, 99, 0.12);
    border-color: rgba(62, 119, 99, 0.2);
}

/* ========== SCROLLED STATE - BACKGROUND GREEN, CONTENT WHITE ========== */
.feature-box.scrolled {
    background: rgb(62, 119, 99);
    border-color: rgb(62, 119, 99);
    box-shadow: 0 10px 25px rgba(62, 119, 99, 0.25);
}

/* Icon Background - White */
.feature-box.scrolled .feature-box-icon {
    background: #ffffff;
}

/* SVG Icon - Theme Color */
.feature-box.scrolled .feature-box-icon svg {
    stroke: rgb(62, 119, 99) !important;
}

/* Icon Image - No change needed, stays as is */
.feature-box.scrolled .feature-box-icon img {
    filter: brightness(1);
}

/* Title - White */
.feature-box.scrolled .feature-box-title {
    color: #ffffff;
}

/* Description - White with slight transparency */
.feature-box.scrolled .feature-box-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Icon Styles (Default) */
.feature-box-icon {
    width: 55px;
    height: 55px;
    background: rgba(62, 119, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-box-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.feature-box-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

/* Scrolled state - Hover Effect */
.feature-box.scrolled:hover {
    background: #ffffff !important;
    border-color: rgb(62, 119, 99) !important;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(62, 119, 99, 0.15);
}

/* Hover par Title - Green */
.feature-box.scrolled:hover .feature-box-title {
    color: rgb(62, 119, 99) !important;
}

/* Hover par Description - Dark Gray */
.feature-box.scrolled:hover .feature-box-desc {
    color: #4a5568 !important;
}

/* Hover par Icon Background - Light Green */
.feature-box.scrolled:hover .feature-box-icon {
    background: rgba(62, 119, 99, 0.1) !important;
}

/* Hover par SVG Icon - Green */
.feature-box.scrolled:hover .feature-box-icon svg {
    stroke: rgb(62, 119, 99) !important;
}


/* ==================== CONTENT RIGHT SIDE ==================== */

/* Make content align to right */
.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 3;
    margin-left: auto !important;  /* Push content to right */
    margin-right: 0 !important;
    text-align: right;  /* Align text to right */
}

/* For tablet and mobile, reset to center */
@media (max-width: 991px) {
    .hero-content {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }
}

/* If button needs to be aligned right */
.hero-content .btn-dark {
    display: inline-block;
}

/* For left alignment if needed for specific slides */
.hero-content.text-start {
    text-align: right !important;
}

.hero-content.text-center {
    text-align: center !important;
}

.hero-content.text-end {
    text-align: left !important;
}
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider-section .slide-item {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.z-index-1 {
    z-index: 1;
}

.bg-overlay-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lazy-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.85;
    color: #555;
}

.btn-dark {
    background: #1a1a1a;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
}

.btn-dark:hover {
    background: #3e7763;
    transform: translateY(-3px);
    border: 1px solid #3e7763;
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.3);
}

/* Slick Slider Custom Styles */
.slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    z-index: 10;
    margin-top:-60px;
}

.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slick-dots li.slick-active button {
    background: #3e7763;
    width: 30px;
    border-radius: 10px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 0;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background: #3e7763;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before {
    content: '←';
    font-size: 20px;
    color: white;
}

.slick-next:before {
    content: '→';
    font-size: 20px;
    color: white;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-slider-section .slide-item {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 42px !important;
    }
    
    .hero-desc {
        font-size: 16px !important;
    }
    
    .hero-content {
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
    }
}

/* Mobile Large (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-slider-section .slide-item {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 32px !important;
    }
    
    .hero-desc {
        font-size: 14px !important;
    }
    
    .hero-content {
        max-width: 85%;
        margin: 0 auto;
        text-align: center;
        padding: 0 15px;
    }
    
    .btn-dark {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .slick-prev, .slick-next {
        width: 35px;
        height: 35px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .hero-slider-section .slide-item {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .hero-desc {
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-content {
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
        padding: 0 12px;
    }
    
    .btn-dark {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .slick-dots {
        bottom: 15px;
    }
    
    .slick-dots li button {
        width: 8px;
        height: 8px;
    }
    
    .slick-dots li.slick-active button {
        width: 20px;
    }
    
    .slick-prev, .slick-next {
        width: 30px;
        height: 30px;
    }
    
    .slick-prev:before, .slick-next:before {
        font-size: 14px;
    }
}
.hero-slider-section button.slick-prev.slick-arrow {
    display: none !important;
}
/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero-slider-section .slide-item {
        min-height: 65vh;
    }
    
    .hero-title {
        font-size: 24px !important;
    }
    
    .hero-desc {
        font-size: 12px !important;
    }
    
    .btn-dark {
        padding: 6px 16px;
        font-size: 12px;
    }
}



/* ==================== INSTAGRAM FEED SECTION ==================== */
.instagram-feed-section {
    position: relative;
    padding: 60px 0 80px;
    background: {{ section.settings.background_color | default: '#ffffff' }};
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Section Header Styles */
.instagram-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.instagram-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.instagram-subheading {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 20px;
}

.instagram-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.3));
    margin: 0 auto;
    border-radius: 3px;
}

/* Instagram Item Styles */
.instagram-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.instagram-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    border-radius: 16px;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.instagram-item:hover .card-img-overlay {
    opacity: 1;
}

.instagram-overlay-icon {
    color: white;
}

/* Hover Effects */
.hover-zoom-in {
    overflow: hidden;
    display: block;
}

.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.hover-shine:hover::before {
    left: 125%;
}

/* Slick Slider Custom Styles */
.instagram-slider .slick-dots {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.instagram-slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background: rgba(62, 119, 99, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.instagram-slider .slick-dots li.slick-active button {
    background: rgb(62, 119, 99);
    width: 25px;
    border-radius: 10px;
}

.instagram-slider .slick-prev,
.instagram-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgb(62, 119, 99);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.instagram-slider .slick-prev {
    left: -20px;
}

.instagram-slider .slick-next {
    right: -20px;
}

.instagram-slider .slick-prev:hover,
.instagram-slider .slick-next:hover {
    background: rgb(42, 99, 79);
    transform: translateY(-50%) scale(1.05);
}

.instagram-slider .slick-prev:before {
    content: '←';
    font-size: 18px;
    color: white;
}

.instagram-slider .slick-next:before {
    content: '→';
    font-size: 18px;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate="fadeInUp"] {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .instagram-feed-section {
        padding: 50px 0 70px;
    }
    .instagram-heading {
        font-size: 32px;
    }
    .instagram-subheading {
        font-size: 16px;
    }
    .instagram-slider .slick-prev {
        left: -5px;
    }
    .instagram-slider .slick-next {
        right: -5px;
    }
}

@media (max-width: 768px) {
    .instagram-feed-section {
        padding: 40px 0 60px;
    }
    .instagram-heading {
        font-size: 26px;
    }
    .instagram-subheading {
        font-size: 14px;
    }
    .instagram-slider .slick-prev,
    .instagram-slider .slick-next {
        width: 30px;
        height: 30px;
    }
    .instagram-slider .slick-prev:before,
    .instagram-slider .slick-next:before {
        font-size: 14px;
    }
}



/* ==================== OUR QUALITY SECTION ==================== */
.our-quality-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.quality-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/1648293/pexels-photo-1648293.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* Section Header */
.quality-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.quality-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.quality-highlight {
    color: rgb(62, 119, 99);
}

.quality-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.3));
    margin: 0 auto 20px;
    border-radius: 3px;
}

.quality-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Quality Cards */
.quality-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    height: 100%;
    cursor: pointer;
}

.quality-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px -15px rgba(62, 119, 99, 0.2);
}

.quality-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.quality-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.quality-card:hover .quality-card-image img {
    transform: scale(1.08);
}

.quality-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quality-card:hover .quality-card-overlay {
    opacity: 1;
}

.quality-card-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.quality-card:hover .quality-card-icon {
    transform: scale(1.05);
    background: rgb(62, 119, 99);
}

.quality-card:hover .quality-card-icon svg {
    stroke: white !important;
}

.quality-card-content {
    padding: 30px 25px 35px;
    position: relative;
    z-index: 2;
}

.quality-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.quality-card:hover .quality-card-title {
    color: rgb(62, 119, 99);
}

.quality-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
}

/* Shine Effect */
.quality-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.quality-card:hover .quality-card-shine {
    left: 150%;
}

/* COA Section */
.coa-section {
    background: rgba(62, 119, 99, 0.05);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    border: 1px solid rgba(62, 119, 99, 0.1);
}

.coa-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.coa-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.coa-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.coa-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(62, 119, 99, 0.15);
}

.coa-link:hover {
    background: rgb(62, 119, 99);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.2);
}

.coa-link-icon {
    font-size: 18px;
}

.coa-link-arrow {
    transition: transform 0.3s ease;
}

.coa-link:hover .coa-link-arrow {
    transform: translateX(5px);
}

.coa-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6c757d;
    background: rgba(62, 119, 99, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
}

/* Spacing */
.g-6 {
    gap: 30px;
}

.mt-16 {
    margin-top: 80px;
}

/* Responsive */
@media (max-width: 991px) {
    .our-quality-section {
        padding: 70px 0;
    }
    .quality-main-title {
        font-size: 40px;
    }
    .coa-section {
        padding: 35px 25px;
    }
    .coa-links {
        gap: 12px;
    }
    .coa-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .our-quality-section {
        padding: 50px 0;
    }
    .quality-main-title {
        font-size: 32px;
    }
    .quality-subtitle {
        font-size: 16px;
    }
    .quality-card-title {
        font-size: 20px;
    }
    .coa-title {
        font-size: 24px;
    }
    .coa-links {
        flex-direction: column;
        align-items: center;
    }
    .coa-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


/* ==================== OUR DIFFERENCE SECTION ==================== */
.our-difference-alt {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fefdf9 0%, #f8f6f0 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 3D Parallax Background */
.diff-alt-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.alt-orb1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.08), transparent);
}

.alt-orb2 {
    bottom: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(62, 119, 99, 0.06), transparent);
    animation-delay: 5s;
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(62, 119, 99, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(2%, 2%) scale(1.05); }
}

/* Section Header */
.diff-alt-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.diff-alt-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.highlight {
    color: rgb(62, 119, 99);
}

.diff-alt-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 0 auto 20px;
    border-radius: 3px;
}

.diff-alt-subheading {
    font-size: 17px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Image Styles */
.diff-alt-image-wrapper {
    position: relative;
    text-align: center;
    perspective: 1200px;
}

.diff-alt-image-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.diff-alt-image-3d:hover {
    transform: rotateY(5deg) rotateX(3deg) scale(1.02);
    box-shadow: 0 30px 45px -15px rgba(62, 119, 99, 0.2);
}

.diff-alt-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.diff-alt-image-3d:hover .diff-alt-img {
    transform: scale(1.02);
}

.image-glow-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.diff-alt-image-3d:hover .image-glow-alt {
    opacity: 1;
}

.floating-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgb(62, 119, 99);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 3s ease-in-out infinite;
    z-index: 3;
}

.floating-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Content Styles */
.diff-alt-content {
    padding: 20px;
}

.diff-alt-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.diff-alt-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.diff-alt-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    border-radius: 3px;
}

/* COA Section */
.coa-section {
    background: rgba(62, 119, 99, 0.05);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    border: 1px solid rgba(62, 119, 99, 0.1);
}

.coa-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.coa-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.coa-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.coa-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(62, 119, 99, 0.15);
}

.coa-link:hover {
    background: rgb(62, 119, 99);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.2);
}

.coa-link-icon {
    font-size: 18px;
}

.coa-link-arrow {
    transition: transform 0.3s ease;
}

.coa-link:hover .coa-link-arrow {
    transform: translateX(5px);
}

.coa-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6c757d;
    background: rgba(62, 119, 99, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
}

/* Spacing */
.mt-16 {
    margin-top: 80px;
}

/* Scroll Animations */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}
[data-scroll="zoom-in"].scrolled {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 991px) {
    .our-difference-section {
        padding: 60px 0;
    }
    .diff-heading {
        font-size: 36px;
    }
    .coa-section {
        padding: 35px 25px;
    }
    .coa-links {
        gap: 12px;
    }
    .coa-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .our-difference-section {
        padding: 50px 0;
    }
    .diff-heading {
        font-size: 28px;
    }
    .diff-card-content {
        padding: 25px 20px 30px;
    }
    .diff-card-title {
        font-size: 20px;
    }
    .coa-title {
        font-size: 24px;
    }
    .coa-links {
        flex-direction: column;
        align-items: center;
    }
    .coa-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}



/* ==================== PREMIUM 3D PODCAST CARDS ==================== */
div#shopify-section-template--21721607864517__quote_cards_kmMjtD {
    margin-top: -50px;
}
.premium-podcast-cards {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(145deg, #fefdf9 0%, #f6f4ef 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Nature Background Elements */
.podcast-bg-nature {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.podcast-leaf {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.12;
    animation: leafFloat 20s ease-in-out infinite alternate;
}

.l1 {
    top: 5%;
    left: -20px;
    width: 140px;
    height: 140px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23627a6d" d="M50,10 Q70,30 75,50 Q80,70 65,85 Q50,95 35,85 Q20,70 25,50 Q30,30 50,10Z"/></svg>');
}

.l2 {
    bottom: 10%;
    right: -30px;
    width: 160px;
    height: 160px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%2389a58f" d="M50,5 Q75,25 80,55 Q85,80 60,90 Q35,95 20,75 Q5,55 15,30 Q25,10 50,5Z"/></svg>');
    animation-delay: 2s;
}

.l3 {
    top: 40%;
    left: -15px;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%234a6659" d="M50,15 Q65,30 70,50 Q75,70 60,80 Q45,88 30,75 Q15,60 25,40 Q35,20 50,15Z"/></svg>');
}

.l4 {
    bottom: 25%;
    right: -10px;
    width: 120px;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%237d9b8a" d="M50,10 Q70,25 78,48 Q82,72 65,88 Q48,98 30,85 Q12,70 18,45 Q22,22 50,10Z"/></svg>');
    animation-delay: 1s;
}

.podcast-flower {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    animation: flowerRotate 15s ease-in-out infinite alternate;
}

.f1 {
    top: 15%;
    right: 8%;
    width: 70px;
    height: 70px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="18" fill="%23d4a373"/><circle cx="50" cy="25" r="12" fill="%23e8c99e"/><circle cx="75" cy="50" r="12" fill="%23e8c99e"/><circle cx="50" cy="75" r="12" fill="%23e8c99e"/><circle cx="25" cy="50" r="12" fill="%23e8c99e"/></svg>');
}

.f2 {
    bottom: 15%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="15" fill="%23d4a373"/><circle cx="50" cy="30" r="10" fill="%23e8c99e"/><circle cx="70" cy="50" r="10" fill="%23e8c99e"/><circle cx="50" cy="70" r="10" fill="%23e8c99e"/><circle cx="30" cy="50" r="10" fill="%23e8c99e"/></svg>');
    animation-delay: 1s;
}

.f3 {
    top: 50%;
    right: 12%;
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="12" fill="%23d4a373"/><circle cx="50" cy="35" r="8" fill="%23e8c99e"/><circle cx="65" cy="50" r="8" fill="%23e8c99e"/><circle cx="50" cy="65" r="8" fill="%23e8c99e"/><circle cx="35" cy="50" r="8" fill="%23e8c99e"/></svg>');
}

.podcast-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(62, 119, 99, 0.12);
    border-radius: 50%;
    animation: dotPulse 6s ease-in-out infinite alternate;
}

.d1 { top: 20%; left: 15%; width: 12px; height: 12px; }
.d2 { bottom: 30%; right: 18%; width: 8px; height: 8px; animation-delay: 1s; }
.d3 { top: 60%; left: 20%; width: 6px; height: 6px; animation-delay: 2s; }

@keyframes leafFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(12px, 12px) rotate(6deg); }
}

@keyframes flowerRotate {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(8deg) scale(1.05); }
}

@keyframes dotPulse {
    0% { opacity: 0.05; transform: scale(1); }
    100% { opacity: 0.2; transform: scale(1.5); }
}

/* Section Header */
.podcast-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.12);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.podcast-heading {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.text-highlight {
    color: rgb(62, 119, 99);
}

.podcast-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.3));
    margin: 0 auto 20px;
    border-radius: 3px;
    position: relative;
    z-index: 2;
}

.podcast-subheading {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 3D Podcast Cards */
.podcast-3d-card {
    perspective: 1200px;
    transform-style: preserve-3d;
    height: 100%;
    position: relative;
    z-index: 2;
}

.podcast-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    transform-style: preserve-3d;
}

.podcast-3d-card:hover .podcast-card-inner {
    transform: translateY(-10px) rotateX(3deg);
}

.podcast-card-front {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(62, 119, 99, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.podcast-3d-card:hover .podcast-card-front {
    box-shadow: 0 30px 50px -18px rgba(62, 119, 99, 0.2);
    border-color: rgba(62, 119, 99, 0.25);
}

/* Featured Card */
.podcast-featured .podcast-card-front {
    border: 1px solid rgba(62, 119, 99, 0.25);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(62,119,99,0.03));
}

.podcast-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgb(62, 119, 99);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

/* Card Image */
.podcast-card-image {
    position: relative;
    
    overflow: hidden;
    
    width: 250px;
    padding: 30px;
    margin: auto;
    text-align: center;
}

.podcast-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.podcast-3d-card:hover .podcast-card-image img {
    transform: scale(1.05);
}

{% comment %} .podcast-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
} {% endcomment %}

.podcast-3d-card:hover .podcast-image-overlay {
    opacity: 1;
}

.podcast-play-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(62, 119, 99, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.podcast-3d-card:hover .podcast-play-icon {
    opacity: 1;
    transform: translateY(0);
}

.podcast-play-icon:hover {
    background: rgb(62, 119, 99);
    transform: scale(1.1);
}

/* Card Content */
.podcast-card-content {
    position: relative;
    padding: 28px 25px 35px;
    text-align: center;
}

.podcast-number {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 55px;
    font-weight: 800;
    color: rgba(62, 119, 99, 0.08);
    line-height: 1;
    font-family: 'Inter', monospace;
}

.podcast-3d-card:hover .podcast-number {
    color: rgba(62, 119, 99, 0.15);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.podcast-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
    margin-top: 25px;
}

.podcast-3d-card:hover .podcast-title {
    color: rgb(62, 119, 99);
}

.podcast-description {
    font-size: 14px;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 20px;
}

.podcast-card-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgb(62, 119, 99), transparent);
    margin: 0 auto 15px;
    transition: width 0.4s ease;
}

.podcast-3d-card:hover .podcast-card-line {
    width: 60px;
}

.podcast-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(62, 119, 99);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(62, 119, 99, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
}

.podcast-link svg {
    transition: transform 0.3s ease;
}

.podcast-link:hover {
    background: rgb(62, 119, 99);
    color: white;
    gap: 12px;
}

.podcast-link:hover svg {
    transform: translateX(3px);
    stroke: white;
}

/* Card Shine */
.podcast-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.podcast-3d-card:hover .podcast-card-shine {
    left: 150%;
}

/* Scroll Animations */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-up"].scrolled { opacity: 1; transform: translateY(0); }

[data-scroll="fade-left"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-left"].scrolled { opacity: 1; transform: translateX(0); }

[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-right"].scrolled { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 991px) {
    .premium-podcast-cards { padding: 70px 0; }
    .podcast-heading { font-size: 36px; }
    .podcast-card-image { height: 130px; }
    .podcast-leaf, .podcast-flower, .podcast-dot { opacity: 0.05; }
}

@media (max-width: 768px) {
    .premium-podcast-cards { padding: 50px 0; }
    .podcast-heading { font-size: 28px; }
    .podcast-subheading { font-size: 16px; }
    .podcast-card-content { padding: 25px 20px 30px; }
    .podcast-title { font-size: 18px; }
}



/* ==================== PREMIUM FEATURES SECTION ==================== */
.premium-features-white {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Section Header Styles */
.features-badge {
    display: inline-block;
    background: rgba(62, 119, 99, 0.1);
    color: rgb(62, 119, 99);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.features-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.title-highlight {
    color: rgb(62, 119, 99);
    position: relative;
}

.features-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 0 0 20px 0;
    border-radius: 3px;
}

.features-description {
    font-size: 16px;
    color: #6c757d;
    max-width: 480px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(62, 119, 99, 0.08);
    height: 100%;
}

/* Hover Effect - Theme Color Background */
.feature-card:hover {
    background: rgb(62, 119, 99);
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(62, 119, 99, 0.25);
    border-color: rgb(62, 119, 99);
}

/* Card Icon */
.card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: rgba(62, 119, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

/* Hover - Icon Background White */
.feature-card:hover .card-icon {
    background: #ffffff;
    transform: scale(1.05);
}

.feature-card:hover .card-icon svg {
    stroke: rgb(62, 119, 99) !important;
}

.card-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

/* Card Title */
.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
    transition: color 0.25s ease;
}

/* Hover - Title White */
.feature-card:hover .card-title {
    color: #ffffff;
}

/* Bottom Line */
.card-bottom-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgb(62, 119, 99), transparent);
    margin: 12px auto 0;
    transition: all 0.3s ease;
}

/* Hover - Line White */
.feature-card:hover .card-bottom-line {
    width: 45px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

/* Right Side Image */
.image-wrapper {
    position: relative;
    text-align: center;
    perspective: 1200px;
}

.image-3d-container {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

.image-3d-container:hover {
    transform: rotateY(4deg) rotateX(3deg) scale(1.02);
    box-shadow: 0 30px 45px -15px rgba(62, 119, 99, 0.2);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-3d-container:hover .feature-image {
    transform: scale(1.02);
}

.image-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 119, 99, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.image-3d-container:hover .image-glow-effect {
    opacity: 1;
}

/* Floating Badge */
.floating-badge-new {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(62, 119, 99, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Grid Spacing */
.g-4 {
    gap: 20px;
}

.gx-8 {
    gap: 48px;
}

.gy-6 {
    row-gap: 30px;
}

/* Scroll Animations */
[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(-35px);
    transition: all 0.7s ease;
}
[data-scroll="fade-right"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.7s ease;
}
[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.7s ease;
}
[data-scroll="zoom-in"].scrolled {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 991px) {
    .premium-features-white {
        padding: 60px 0;
    }
    .features-title {
        font-size: 32px;
    }
    .feature-card {
        padding: 22px 15px;
    }
    .card-icon {
        width: 55px;
        height: 55px;
    }
    .card-title {
        font-size: 14px;
    }
    .floating-badge-new {
        padding: 6px 14px;
        font-size: 11px;
        bottom: -5px;
        right: -5px;
    }
    .features-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .premium-features-white {
        padding: 50px 0;
    }
    .features-title {
        font-size: 28px;
    }
    .features-content {
        margin-bottom: 40px;
    }
}


div#shopify-section-template--21721607864517__product_banner_grid_VdbMnJ {
    margin-top: -100px;
}
.product-banner-section .banner-02 {
    min-height: 400px;
    object-fit: cover;
}
.product-banner-section .card-img-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}
.product-banner-section .btn-white {
    background: white;
    color: #1a1a1a;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
}
.product-banner-section .btn-white:hover {
    background: #ba5fca;
    color: white;
}
.card-product {
    transition: transform 0.3s ease;
}
.card-product:hover {
    transform: translateY(-5px);
}
.hover-zoom-in {
    overflow: hidden;
    display: block;
}
.hover-zoom-in img {
    transition: transform 0.5s ease;
}
.hover-zoom-in:hover img {
    transform: scale(1.05);
}
.product-actions {
    right: 10px;
    top: 10px;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}
.card-product:hover .product-actions {
    opacity: 1;
}
.product-action {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}
.product-action:hover {
    background: #3e7763;
    color: white;
}
.product-action:hover svg {
    stroke: white !important;
}
.btn-add-to-cart {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: #1a1a1a;
    color: white;
    border-radius: 30px;
    text-decoration: none;
}
.card-product:hover .btn-add-to-cart {
    opacity: 1;
    bottom: 20px;
}
.btn-add-to-cart:hover {
    border: 1px solid #3e7763;
    background: #3e7763;
    color: white;
}
.product-flash {
    top: 10px;
    left: 10px;
}
.badge-product-flash {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}
.badge-primary { background: #ba5fca; color: white; }
.badge-danger { background: #dc3545; color: white; }
.badge-success { background: #28a745; color: white; }
.badge-warning { background: #ffc107; color: #1a1a1a; }
.rating {
    position: relative;
    display: inline-block;
}
.empty-stars, .filled-stars {
    gap: 3px;
}
.filled-stars {
    overflow: hidden;
    white-space: nowrap;
}
.product-actions.vertical {
    right: 10px;
    top: 10px;
    left: auto;
}
@media (max-width: 768px) {
    .product-actions {
        opacity: 1;
    }
    .btn-add-to-cart {
        opacity: 1;
        bottom: 15px;
        font-size: 12px;
        padding: 5px 12px;
    }
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.notification-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}
.notification-success {
    background: #3e7763;
    color: white;
}
.notification-error {
    background: #dc3545;
    color: white;
}


/* ==================== CONTACT PAGE SECTION ==================== */
.contact-page-section {
    background: linear-gradient(135deg, #fefdf9 0%, #f8f6f0 100%);
    overflow: hidden;
}

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.contact-breadcrumb {
    position: relative;
    z-index: 2;
    font-size: 16px;
}

.contact-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-breadcrumb a:hover {
    color: white;
}

.contact-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
}

.contact-breadcrumb .current {
    color: white;
}

/* Introduction */
.contact-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(62, 119, 99), rgba(62, 119, 99, 0.2));
    margin: 25px auto 0;
    border-radius: 3px;
}

/* Form Styles */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(62, 119, 99, 0.08);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(62, 119, 99, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: rgb(62, 119, 99);
    box-shadow: 0 0 0 3px rgba(62, 119, 99, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(62, 119, 99);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.contact-submit-btn:hover {
    background: rgb(42, 99, 79);
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 8px 20px rgba(62, 119, 99, 0.3);
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info */
.contact-info-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(62, 119, 99, 0.08);
    height: 100%;
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(62, 119, 99, 0.1);
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 5px 0;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: rgba(62, 119, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: rgb(62, 119, 99);
}

.info-card:hover .info-icon svg {
    stroke: white;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-content a {
    color: rgb(62, 119, 99);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-content a:hover {
    color: rgb(42, 99, 79);
    text-decoration: underline;
}

.info-content p {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

.wholesale-link {
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
}

/* Chat Section */
.chat-section {
    background: linear-gradient(135deg, rgb(62, 119, 99), rgb(42, 99, 79));
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.chat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.chat-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.chat-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: rgb(62, 119, 99);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-btn:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: rgb(42, 99, 79);
}

/* Spacing */
.mt-12 {
    margin-top: 60px;
}

.mb-8 {
    margin-bottom: 40px;
}

.mb-12 {
    margin-bottom: 60px;
}

/* Scroll Animations */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-up"].scrolled {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="fade-left"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-left"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}
[data-scroll="fade-right"].scrolled {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}
[data-scroll="zoom-in"].scrolled {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 42px;
    }
    .contact-form-wrapper, .contact-info-wrapper {
        padding: 30px;
    }
    .form-title, .info-title {
        font-size: 24px;
    }
    .chat-title {
        font-size: 28px;
    }
    .chat-section {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    .contact-hero-title {
        font-size: 32px;
    }
    .contact-intro {
        font-size: 16px;
    }
    .form-title, .info-title {
        font-size: 22px;
    }
    .info-card {
        gap: 15px;
    }
    .info-icon {
        width: 45px;
        height: 45px;
    }
    .chat-title {
        font-size: 24px;
    }
    .chat-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}


.chloe-consultation-section .hero-content{
text-align:justify;
}
section.our-difference-section {
    margin-top: 70px;
}