/**
 * Oleaf Elementor Widgets Styles
 *
 * @package Oleaf_Core
 * @version 1.0.0
 */

.oleaf-hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--oleaf-primary, #1A3C34);
}

.oleaf-hero-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.oleaf-hero-slide {
    flex: 0 0 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.oleaf-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.oleaf-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: #fff;
}

.oleaf-hero-subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.oleaf-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.oleaf-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.oleaf-hero-nav {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.oleaf-hero-prev,
.oleaf-hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s;
}

.oleaf-hero-prev:hover,
.oleaf-hero-next:hover {
    background: var(--oleaf-accent, #D4AF37);
    border-color: var(--oleaf-accent, #D4AF37);
    color: #000;
}

.oleaf-hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.oleaf-features {
    display: grid;
    gap: 2rem;
}

.oleaf-features.oleaf-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.oleaf-features.oleaf-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.oleaf-features.oleaf-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.oleaf-feature {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.oleaf-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.oleaf-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--oleaf-primary, #1A3C34), #2A5C4C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 28px;
}

.oleaf-feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.oleaf-feature-description {
    color: #666;
    font-size: 0.9rem;
}

.oleaf-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.oleaf-testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.oleaf-testimonial-rating {
    margin-bottom: 1rem;
    color: var(--oleaf-accent, #D4AF37);
    font-size: 1.25rem;
}

.oleaf-testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
    font-style: italic;
}

.oleaf-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.oleaf-testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.oleaf-testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
}

.oleaf-testimonial-author span {
    color: #666;
    font-size: 0.875rem;
}

.oleaf-cta-banner {
    background: linear-gradient(135deg, var(--oleaf-primary, #1A3C34), #2A5C4C);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    color: #fff;
}

.oleaf-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.oleaf-cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.oleaf-newsletter {
    background: var(--oleaf-cream, #F9F8F4);
    padding: 3rem;
    text-align: center;
    border-radius: 12px;
}

.oleaf-newsletter-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.oleaf-newsletter-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.oleaf-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.oleaf-newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.oleaf-team {
    display: grid;
    gap: 2rem;
}

.oleaf-team.oleaf-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.oleaf-team.oleaf-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.oleaf-team.oleaf-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.oleaf-team-member {
    text-align: center;
}

.oleaf-team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.oleaf-team-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.oleaf-team-position {
    color: #666;
    font-size: 0.9rem;
}

.oleaf-blog-posts {
    display: grid;
    gap: 2rem;
}

.oleaf-blog-posts.oleaf-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.oleaf-blog-posts.oleaf-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.oleaf-blog-posts.oleaf-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.oleaf-blog-post {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.oleaf-blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.oleaf-blog-post .oleaf-post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.oleaf-blog-post .oleaf-post-content {
    padding: 1.5rem;
}

.oleaf-blog-post .oleaf-post-date {
    font-size: 0.8rem;
    color: #666;
}

.oleaf-blog-post .oleaf-post-title {
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.oleaf-blog-post .oleaf-post-title a:hover {
    color: var(--oleaf-primary, #1A3C34);
}

.oleaf-blog-post .oleaf-post-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.oleaf-category-grid {
    display: grid;
    gap: 2rem;
}

.oleaf-category-grid.oleaf-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.oleaf-category-grid.oleaf-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.oleaf-category-grid.oleaf-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
    .oleaf-hero-title {
        font-size: 2.5rem;
    }

    .oleaf-features.oleaf-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .oleaf-team.oleaf-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .oleaf-blog-posts.oleaf-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .oleaf-hero-title {
        font-size: 2rem;
    }

    .oleaf-blog-posts {
        grid-template-columns: 1fr !important;
    }
}

.oleaf-organic-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.oleaf-organic-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.oleaf-oh-content {
    flex: 1;
    max-width: 50%;
}

.oleaf-oh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(22, 101, 52, 0.1);
    color: #166534;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oleaf-oh-badge-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.oleaf-oh-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1A3C34;
    font-weight: 700;
    margin-bottom: 24px;
}

.oleaf-oh-highlight {
    color: #c9a96e;
    position: relative;
    display: inline-block;
}

.oleaf-oh-description {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

.oleaf-oh-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.oleaf-oh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.oleaf-oh-btn-1 {
    background: #1A3C34;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    gap: 10px;
}

.oleaf-oh-btn-1:hover {
    background: #142f29;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 60, 52, 0.2);
    color: #fff;
}

.oleaf-oh-btn-1 i,
.oleaf-oh-btn-1 svg {
    transition: transform 0.3s ease;
}

.oleaf-oh-btn-1:hover i,
.oleaf-oh-btn-1:hover svg {
    transform: translateX(4px);
}

.oleaf-oh-btn-2 {
    background: transparent;
    color: #1A3C34;
    border: 1px solid rgba(26, 60, 52, 0.2);
    border-radius: 50px;
    gap: 12px;
    padding: 6px 24px 6px 6px;
    transition: all 0.3s ease;
}

.oleaf-oh-btn-2:hover {
    border-color: #1A3C34;
    background: rgba(255, 255, 255, 0.5);
}

.oleaf-oh-play-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    color: #c9a96e;
    font-size: 12px;
}

.oleaf-oh-play-icon i,
.oleaf-oh-play-icon svg {
    margin-left: 2px;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.oleaf-oh-btn-2:hover .oleaf-oh-play-icon {
    transform: scale(1.1);
}

.oleaf-oh-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.oleaf-oh-stat {
    display: flex;
    flex-direction: column;
}

.oleaf-oh-stat-num {
    font-size: 24px;
    font-weight: 700;
    color: #1A3C34;
    line-height: 1;
    margin-bottom: 6px;
}

.oleaf-oh-stat-label {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.oleaf-oh-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.oleaf-oh-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    max-width: 50%;
}

.oleaf-oh-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.oleaf-oh-image-wrapper img {
    border-radius: 24px;
    display: block;
    max-width: 100%;
    height: auto;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

.oleaf-oh-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: oleafFloat 6s ease-in-out infinite;
    max-width: 240px;
}

.oleaf-oh-card-icon {
    width: 44px;
    height: 44px;
    background: #F0FDF4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #166534;
    font-size: 18px;
    flex-shrink: 0;
}

.oleaf-oh-card-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.oleaf-oh-card-text {
    display: flex;
    flex-direction: column;
}

.oleaf-oh-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1A3C34;
    margin-bottom: 2px;
}

.oleaf-oh-card-sub {
    font-size: 12px;
    color: #888;
}

@keyframes oleafFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .oleaf-organic-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .oleaf-oh-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .oleaf-oh-buttons {
        justify-content: center;
    }

    .oleaf-oh-stats {
        justify-content: center;
    }

    .oleaf-oh-image-col {
        justify-content: center;
        max-width: 100%;
    }

    .oleaf-oh-float-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        animation: none;
    }

    .oleaf-oh-buttons {
        gap: 12px;
    }

    .oleaf-oh-btn {
        font-size: 13px;
    }

    .oleaf-oh-btn-1 {
        padding: 12px 22px;
    }

    .oleaf-oh-btn-2 {
        padding: 4px 16px 4px 4px;
    }

    .oleaf-oh-play-icon {
        width: 34px;
        height: 34px;
    }
}

.oleaf-ew-about {
    overflow: hidden;
}

.oleaf-ew-about-inner {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.oleaf-ew-about-left {
    flex: 0 0 45%;
    max-width: 45%;
    min-width: 0;
}

.oleaf-ew-about-heading {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.75rem;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    color: #1a3c34;
}

.oleaf-ew-about-heading--accent {
    padding-left: 1.25rem;
    position: relative;
}

.oleaf-ew-about-heading--accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: #1a3c34;
}

.oleaf-ew-about-image {
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.oleaf-ew-about.is-visible .oleaf-ew-about-image {
    opacity: 1;
    transform: translateY(0);
}

.elementor-editor-active .oleaf-ew-about-image {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.oleaf-ew-about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.oleaf-ew-about-image:hover img {
    transform: scale(1.05);
}

.oleaf-ew-about-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0.5rem;
}

.oleaf-ew-about-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 1.25rem;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    color: #1a6b5a;
}

.oleaf-ew-about-desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin: 0 0 2.25rem;
    color: #444;
}

.oleaf-ew-about-desc p {
    margin: 0 0 1.15rem;
}

.oleaf-ew-about-desc p:last-child {
    margin-bottom: 0;
}

.oleaf-ew-about-desc strong {
    font-weight: 700;
    color: #1a3c34;
}

.oleaf-ew-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.oleaf-ew-stat {
    display: flex;
    flex-direction: column;
}

.oleaf-ew-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.35rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: #1a3c34;
}

.oleaf-ew-stat-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
}

.oleaf-ew-stats-divider {
    width: 100%;
    height: 2px;
    margin: 1.75rem 0;
    opacity: 0.15;
}

.oleaf-ew-about-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.6rem;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a3c34;
    transition: color 0.3s ease;
    padding-bottom: 3px;
    border-bottom: 2px solid currentColor;
    white-space: nowrap;
}

.oleaf-ew-about-cta svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.oleaf-ew-about-cta:hover svg {
    transform: translateX(4px);
}

.oleaf-ew-about-cta:hover {
    color: #c8aa6e;
}

@media (max-width: 991px) {
    .oleaf-ew-about-inner {
        flex-direction: column;
        gap: 2.5rem !important;
    }

    .oleaf-ew-about-left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .oleaf-ew-about-heading {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .oleaf-ew-about-heading {
        font-size: 1.75rem;
    }

    .oleaf-ew-about-title {
        font-size: 1.25rem;
    }

    .oleaf-ew-stats {
        gap: 1.5rem;
    }
}

.oleaf-promise-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #023429;
    padding: 60px 0;
}

.oleaf-promise-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.oleaf-promise-header {
    margin-bottom: 40px;
    position: relative;
    max-width: 800px;
}

.oleaf-promise-subtitle {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0 !important;
    opacity: 0.7;
    color: #fff;
    display: block;
    padding: 0;
}

.oleaf-promise-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 5px;
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
}

.oleaf-promise-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    color: #fff;
    font-weight: 400;
}

.oleaf-promise-watermark {
    display: none;
}

.oleaf-promise-watermark svg {
    width: 250px;
    height: 250px;
    fill: currentColor;
}

.oleaf-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.oleaf-promise-item {
    padding: 0 30px;
    position: relative;
    text-align: left;
}

.oleaf-promise-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.oleaf-promise-icon {
    margin-bottom: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
}

.oleaf-promise-icon svg,
.oleaf-promise-icon i {
    font-size: 36px;
    width: 36px;
    height: auto;
    fill: currentColor;
}

.oleaf-promise-ft-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
}

.oleaf-promise-ft-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 95%;
}

@media (max-width: 1199px) {
    .oleaf-promise-item {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .oleaf-promise-section {
        padding: 80px 0;
    }

    .oleaf-promise-title {
        font-size: 3rem;
    }

    .oleaf-promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .oleaf-promise-item:nth-child(2)::after {
        display: none;
    }

    .oleaf-promise-item {
        padding: 0 20px;
    }

    .oleaf-promise-watermark {
        opacity: 0.05;
        right: -50px;
    }
}

@media (max-width: 767px) {
    .oleaf-promise-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .oleaf-promise-desc {
        margin: 0 auto;
    }

    .oleaf-promise-grid {
        gap: 40px 0;
    }

    .oleaf-promise-item {
        text-align: center;
    }

    .oleaf-promise-icon {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .oleaf-promise-title {
        font-size: 2.25rem;
    }

    .oleaf-promise-grid {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }

    .oleaf-promise-item::after {
        display: none !important;
    }

    .oleaf-promise-item {
        padding: 0 15px;
    }

    .oleaf-promise-watermark {
        display: none;
    }
}

.oleaf-hp-section {
    position: relative;
}

.oleaf-hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.oleaf-hp-header {
    text-align: center;
    margin-bottom: 50px;
}

.oleaf-hp-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9CA3AF;
    margin-bottom: 10px;
}

.oleaf-hp-title {
    font-size: 3rem;
    font-weight: 700;
    color: #097475;
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0 0 20px;
    line-height: 1.2;
}

.oleaf-hp-separator {
    width: 60px;
    height: 3px;
    background-color: #C3E0B5;
    margin: 0 auto;
    border-radius: 2px;
}

.oleaf-hp-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: stretch;
}

.oleaf-hp-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.oleaf-hp-card {
    background-color: #F9FBF8;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: default;
}

.oleaf-hp-card:hover {
    background-color: #E6F0E3;
    border-color: #C3E0B5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.oleaf-hp-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: rgba(9, 116, 117, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.oleaf-hp-icon-wrap svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.oleaf-hp-icon-wrap i,
.oleaf-hp-icon {
    font-size: 20px;
    color: #097475;
    transition: color 0.3s ease;
}

.oleaf-hp-card:hover .oleaf-hp-icon-wrap {
    background-color: #097475;
}

.oleaf-hp-card:hover .oleaf-hp-icon,
.oleaf-hp-card:hover .oleaf-hp-icon-wrap i,
.oleaf-hp-card:hover .oleaf-hp-icon-wrap svg {
    color: #fff;
    fill: #fff;
}

.oleaf-hp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #053F40;
    margin: 0 0 8px;
    line-height: 1.3;
}

.oleaf-hp-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.oleaf-hp-col-center {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.oleaf-hp-center-visual {
    width: 360px;
    height: 100%;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.oleaf-hp-main-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    display: block;
}

.oleaf-hp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(9, 116, 117, 0.08) 0%,
            rgba(9, 116, 117, 0.15) 40%,
            rgba(9, 116, 117, 0.4) 70%,
            rgba(5, 63, 64, 0.88) 100%);
    z-index: 1;
}

.oleaf-hp-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.oleaf-hp-overlay-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.oleaf-hp-overlay-icon-box svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.oleaf-hp-overlay-icon-box i {
    font-size: 24px;
    color: #fff;
}

.oleaf-hp-quote {
    font-size: 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: #fff;
    margin: 0 0 8px;
}

.oleaf-hp-brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 991px) {
    .oleaf-hp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .oleaf-hp-col-center {
        order: -1;
        justify-content: center;
    }

    .oleaf-hp-center-visual {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 460px;
        margin: 0 auto;
    }

    .oleaf-hp-card {
        text-align: center;
    }

    .oleaf-hp-icon-wrap {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .oleaf-hp-title {
        font-size: 2.25rem;
    }

    .oleaf-hp-center-visual {
        max-width: 100%;
        min-height: 400px;
    }

    .oleaf-hp-quote {
        font-size: 1.25rem;
    }
}

@keyframes oleafHpFadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes oleafHpSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes oleafHpSlideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes oleafHpScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.oleaf-hp-header,
.oleaf-hp-col-left .oleaf-hp-card,
.oleaf-hp-col-right .oleaf-hp-card,
.oleaf-hp-center-visual {
    opacity: 0;
}

.oleaf-hp-section.oleaf-hp-animated .oleaf-hp-header {
    animation: oleafHpFadeDown 0.6s ease forwards;
}

.oleaf-hp-section.oleaf-hp-animated .oleaf-hp-center-visual {
    animation: oleafHpScaleIn 0.7s ease forwards;
    animation-delay: 0.2s;
}

.oleaf-hp-section.oleaf-hp-animated .oleaf-hp-col-left .oleaf-hp-card:nth-child(1) {
    animation: oleafHpSlideLeft 0.5s ease forwards;
    animation-delay: 0.3s;
}

.oleaf-hp-section.oleaf-hp-animated .oleaf-hp-col-left .oleaf-hp-card:nth-child(2) {
    animation: oleafHpSlideLeft 0.5s ease forwards;
    animation-delay: 0.5s;
}

.oleaf-hp-section.oleaf-hp-animated .oleaf-hp-col-left .oleaf-hp-card:nth-child(3) {
    animation: oleafHpSlideLeft 0.5s ease forwards;
    animation-delay: 0.7s;
}

.oleaf-hp-section.oleaf-hp-animated .oleaf-hp-col-right .oleaf-hp-card:nth-child(1) {
    animation: oleafHpSlideRight 0.5s ease forwards;
    animation-delay: 0.3s;
}

.oleaf-hp-section.oleaf-hp-animated .oleaf-hp-col-right .oleaf-hp-card:nth-child(2) {
    animation: oleafHpSlideRight 0.5s ease forwards;
    animation-delay: 0.5s;
}

.oleaf-hp-section.oleaf-hp-animated .oleaf-hp-col-right .oleaf-hp-card:nth-child(3) {
    animation: oleafHpSlideRight 0.5s ease forwards;
    animation-delay: 0.7s;
}

.oleaf-hp-center-visual:hover .oleaf-hp-main-img {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.oleaf-hp-main-img {
    transition: transform 0.6s ease;
}

.elementor-editor-active .oleaf-hp-header,
.elementor-editor-active .oleaf-hp-col-left .oleaf-hp-card,
.elementor-editor-active .oleaf-hp-col-right .oleaf-hp-card,
.elementor-editor-active .oleaf-hp-center-visual {
    opacity: 1;
}

.oleaf-heading-wrapper {
    --oleaf-head-primary: #097475;
    --oleaf-head-secondary: #c3e0b5;
    --oleaf-head-accent: #c59e85;
    position: relative;
}

.oleaf-heading-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--oleaf-head-primary);
    margin-bottom: 12px;
}

.oleaf-heading-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    line-height: 1.2;
    font-family: 'Playfair Display', Georgia, serif;
}

.oleaf-heading-title span {
    color: var(--oleaf-head-primary);
}

.oleaf-heading-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B7280;
    margin: 0;
    max-width: 600px;
}

.oleaf-heading-wrapper.style-1 {
    text-align: center;
}

.oleaf-heading-wrapper.style-1 .oleaf-heading-desc {
    margin-left: auto;
    margin-right: auto;
}

.oleaf-heading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.oleaf-heading-divider-line {
    width: 50px;
    height: 2px;
    background-color: var(--oleaf-head-secondary);
}

.oleaf-heading-divider i {
    font-size: 16px;
    color: var(--oleaf-head-primary);
}

.oleaf-heading-divider svg {
    width: 16px;
    height: 16px;
    fill: var(--oleaf-head-primary);
}

.oleaf-heading-wrapper.style-2 {
    text-align: left;
}

.oleaf-heading-wrapper.style-2 .oleaf-heading-inner {
    border-left: 4px solid var(--oleaf-head-primary);
    padding-left: 24px;
}

.oleaf-heading-wrapper.style-2 .oleaf-heading-badge {
    color: var(--oleaf-head-accent);
}

.oleaf-heading-wrapper.style-3 {
    text-align: center;
}

.oleaf-heading-wrapper.style-3 .oleaf-heading-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(9, 116, 117, 0.08);
    color: var(--oleaf-head-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
    position: relative;
}

.oleaf-heading-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--oleaf-head-primary);
    border-radius: 50%;
    display: inline-block;
    animation: oleafHeadPulse 2s ease-in-out infinite;
}

@keyframes oleafHeadPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.oleaf-heading-wrapper.style-3 .oleaf-heading-desc {
    margin-left: auto;
    margin-right: auto;
}

.oleaf-heading-bar {
    width: 60px;
    height: 3px;
    background: var(--oleaf-head-secondary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.oleaf-heading-wrapper.style-4 {
    text-align: center;
}

.oleaf-heading-title-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.oleaf-heading-title-wrapper .oleaf-heading-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.oleaf-heading-underline {
    display: block;
    width: 100%;
    height: 10px;
    background: var(--oleaf-head-secondary);
    opacity: 0.4;
    border-radius: 4px;
    margin-top: -12px;
    position: relative;
    z-index: 0;
}

.oleaf-heading-wrapper.style-4 .oleaf-heading-desc {
    margin-left: auto;
    margin-right: auto;
}

.oleaf-heading-wrapper.style-5 {
    text-align: center;
}

.oleaf-heading-badge-pill {
    background: linear-gradient(135deg, var(--oleaf-head-primary) 0%, var(--oleaf-head-accent) 100%);
    color: #fff !important;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.oleaf-heading-gradient {
    background: linear-gradient(135deg, var(--oleaf-head-primary) 0%, var(--oleaf-head-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oleaf-heading-divider-gradient .oleaf-heading-divider-line {
    background: linear-gradient(90deg, transparent, var(--oleaf-head-primary), transparent);
    width: 80px;
}

.oleaf-heading-divider-gradient i {
    color: var(--oleaf-head-accent);
}

.oleaf-heading-divider-gradient svg {
    fill: var(--oleaf-head-accent);
}

.oleaf-heading-wrapper.style-5 .oleaf-heading-desc {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .oleaf-heading-title {
        font-size: 1.75rem;
    }

    .oleaf-heading-desc {
        font-size: 0.9rem;
    }

    .oleaf-heading-wrapper.style-2 .oleaf-heading-inner {
        padding-left: 16px;
    }
}

.oleaf-ebtn-wrapper {
    display: block;
}

.oleaf-ebtn {
    --oleaf-ebtn-effect: #097475;
    --oleaf-ebtn-text: #ffffff;
    --oleaf-ebtn-hover-text: #ffffff;
    --oleaf-ebtn-hover-effect: #065657;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border: none;
    border-radius: 8px;
    background-color: var(--oleaf-ebtn-effect);
    color: var(--oleaf-ebtn-text) !important;
}

a.oleaf-ebtn,
a.oleaf-ebtn:hover,
a.oleaf-ebtn:focus,
a.oleaf-ebtn:visited {
    color: var(--oleaf-ebtn-text) !important;
    text-decoration: none !important;
}

.oleaf-ebtn .oleaf-ebtn-text,
.oleaf-ebtn .oleaf-ebtn-icon {
    color: inherit !important;
}

.oleaf-ebtn * {
    position: relative;
    z-index: 2;
}

.oleaf-ebtn-icon {
    display: inline-flex;
    align-items: center;
    font-size: 1em;
}

.oleaf-ebtn-icon-left {
    margin-right: 8px;
}

.oleaf-ebtn-icon-right {
    margin-left: 8px;
}

.oleaf-ebtn-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.oleaf-ebtn.style-1 {
    overflow: visible;
}

.oleaf-ebtn.style-1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--oleaf-ebtn-effect) 30%, transparent);
}

.oleaf-ebtn.style-2 {
    background: transparent !important;
    border: 2px solid var(--oleaf-ebtn-effect);
    color: var(--oleaf-ebtn-effect) !important;
}

.oleaf-ebtn-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--oleaf-ebtn-effect);
    transition: width 0.4s ease;
    z-index: 0 !important;
}

.oleaf-ebtn.style-2:hover .oleaf-ebtn-slide-bg {
    width: 100%;
}

.oleaf-ebtn.style-2:hover {
    color: var(--oleaf-ebtn-hover-text, #fff) !important;
}

.oleaf-ebtn.style-3 {
    background: linear-gradient(135deg, var(--oleaf-ebtn-effect) 0%, var(--oleaf-ebtn-hover-effect, var(--oleaf-ebtn-effect)) 100%);
}

.oleaf-ebtn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transition: left 0.5s ease;
    z-index: 1 !important;
}

.oleaf-ebtn.style-3:hover .oleaf-ebtn-shine {
    left: 100%;
}

.oleaf-ebtn.style-4 {
    box-shadow: 0 6px 0 var(--oleaf-ebtn-hover-effect, color-mix(in srgb, var(--oleaf-ebtn-effect) 80%, #000)), 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}

.oleaf-ebtn.style-4:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 var(--oleaf-ebtn-hover-effect, color-mix(in srgb, var(--oleaf-ebtn-effect) 80%, #000)), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.oleaf-ebtn.style-4:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 var(--oleaf-ebtn-hover-effect, color-mix(in srgb, var(--oleaf-ebtn-effect) 80%, #000));
}

.oleaf-ebtn.style-5 {
    background: color-mix(in srgb, var(--oleaf-ebtn-effect) 25%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.oleaf-ebtn.style-5:hover {
    background: color-mix(in srgb, var(--oleaf-ebtn-effect) 40%, transparent);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--oleaf-ebtn-effect) 20%, transparent);
}

.oleaf-ebtn.style-6 {
    padding-right: 50px;
}

.oleaf-ebtn-icon-circle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.oleaf-ebtn-icon-circle i,
.oleaf-ebtn-icon-circle svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.oleaf-ebtn.style-6:hover .oleaf-ebtn-icon-circle {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) translateX(3px);
}

.oleaf-ebtn.style-7 {
    overflow: visible;
}

.oleaf-ebtn-pulse-ring {
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid var(--oleaf-ebtn-effect);
    opacity: 0;
    z-index: 0 !important;
}

.oleaf-ebtn.style-7:hover .oleaf-ebtn-pulse-ring {
    animation: oleafEbtnPulse 1.2s ease-out infinite;
}

@keyframes oleafEbtnPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

.oleaf-ebtn.style-8 {
    border: 1px solid var(--oleaf-ebtn-effect);
    background: transparent !important;
    color: var(--oleaf-ebtn-effect) !important;
    text-shadow: 0 0 4px transparent;
}

.oleaf-ebtn.style-8:hover {
    color: var(--oleaf-ebtn-hover-text, #fff) !important;
    background: var(--oleaf-ebtn-effect) !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px var(--oleaf-ebtn-effect),
        0 0 40px color-mix(in srgb, var(--oleaf-ebtn-effect) 20%, transparent);
}

.oleaf-ebtn.style-9 {
    background: transparent !important;
    border: 2px solid var(--oleaf-ebtn-effect);
    color: var(--oleaf-ebtn-effect) !important;
}

.oleaf-ebtn-liquid {
    position: absolute;
    bottom: -100%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: var(--oleaf-ebtn-effect);
    border-radius: 40%;
    transition: bottom 0.5s ease;
    z-index: 0 !important;
}

.oleaf-ebtn.style-9:hover .oleaf-ebtn-liquid {
    bottom: -40%;
}

.oleaf-ebtn.style-9:hover {
    color: var(--oleaf-ebtn-hover-text, #fff) !important;
}

.oleaf-ebtn.style-10 {
    overflow: hidden;
    padding: 0;
}

.oleaf-ebtn-text-main,
.oleaf-ebtn-text-hover {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    transition: transform 0.4s ease;
    width: 100%;
}

.oleaf-ebtn-text-main {
    position: relative;
    z-index: 2;
}

.oleaf-ebtn-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    z-index: 2;
    color: #fff !important;
}

.oleaf-ebtn-curtain {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--oleaf-ebtn-effect);
    transition: height 0.4s ease;
    z-index: 1 !important;
}

.oleaf-ebtn.style-10:hover .oleaf-ebtn-text-main {
    transform: translateY(-100%);
}

.oleaf-ebtn.style-10:hover .oleaf-ebtn-text-hover {
    transform: translateY(0);
}

.oleaf-ebtn.style-10:hover .oleaf-ebtn-curtain {
    height: 100%;
}

.oleaf-ebtn.style-11 {
    overflow: visible;
}

.oleaf-ebtn-ripple-1,
.oleaf-ebtn-ripple-2 {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--oleaf-ebtn-effect);
    opacity: 0;
    z-index: 0 !important;
    pointer-events: none;
}

.oleaf-ebtn.style-11:hover .oleaf-ebtn-ripple-1 {
    animation: oleafEbtnRipple 1.5s ease-out infinite;
}

.oleaf-ebtn.style-11:hover .oleaf-ebtn-ripple-2 {
    animation: oleafEbtnRipple 1.5s ease-out 0.5s infinite;
}

@keyframes oleafEbtnRipple {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

.oleaf-ebtn.style-11:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--oleaf-ebtn-effect) 25%, transparent);
}

.oleaf-wc-wrapper {
    position: relative;
    padding: 60px 0;
}

.oleaf-wc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.oleaf-wc-visual {
    position: relative;
    min-height: 500px;
}

.oleaf-wc-blur-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(9, 116, 117, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.oleaf-wc-image-back {
    position: relative;
    width: 85%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.oleaf-wc-image-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oleaf-wc-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.oleaf-wc-image-front {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 55%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    border: 4px solid #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: oleafWcImgFloat 5s ease-in-out infinite;
}

.oleaf-wc-image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes oleafWcImgFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-12px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-6px) rotate(-0.3deg);
    }

    75% {
        transform: translateY(-14px) rotate(0.3deg);
    }
}

.oleaf-wc-badge {
    position: absolute;
    top: 10px;
    right: 40px;
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: oleafWcBadgeFloat 4s ease-in-out infinite;
    overflow: hidden;
    padding: 10px;
}

.oleaf-wc-badge-inner {
    text-align: center;
    line-height: 1.2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.oleaf-wc-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--oleaf-primary, #097475);
    margin-bottom: 4px;
}

.oleaf-wc-badge-icon i,
.oleaf-wc-badge-icon svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
}

.oleaf-wc-badge-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--oleaf-primary, #097475);
    line-height: 1;
    white-space: nowrap;
}

.oleaf-wc-badge-label {
    display: block;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--oleaf-accent, #555);
    margin-top: 3px;
    white-space: nowrap;
}

@keyframes oleafWcBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.oleaf-wc-content {
    position: relative;
    z-index: 1;
}

.oleaf-wc-header {
    margin-bottom: 32px;
}

.oleaf-wc-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--oleaf-primary, #097475);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.oleaf-wc-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--oleaf-primary, #097475);
}

.oleaf-wc-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--oleaf-heading, #1a1a2e);
    margin: 0 0 16px 0;
}

.oleaf-wc-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--oleaf-text, #555);
    margin: 0 0 8px 0;
}

.oleaf-wc-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.oleaf-wc-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.35s ease;
    cursor: default;
}

.oleaf-wc-benefit-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(6px);
}

.oleaf-wc-benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 116, 117, 0.1);
    color: var(--oleaf-primary, #097475);
    border-radius: 12px;
    font-size: 20px;
    transition: all 0.35s ease;
}

.oleaf-wc-benefit-icon i,
.oleaf-wc-benefit-icon svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
    fill: currentColor;
    color: inherit;
}

.oleaf-wc-benefit-item:hover .oleaf-wc-benefit-icon {
    background: var(--oleaf-primary, #097475);
    color: #ffffff;
    transform: scale(1.08);
}

.oleaf-wc-benefit-item:hover .oleaf-wc-benefit-icon svg {
    fill: #ffffff;
}

.oleaf-wc-benefit-text {
    flex: 1;
    min-width: 0;
}

.oleaf-wc-benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--oleaf-heading, #1a1a2e);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.oleaf-wc-benefit-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--oleaf-text, #777);
    margin: 0;
}

.oleaf-wc-button-wrap {
    padding-top: 8px;
}

.oleaf-wc-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: var(--oleaf-primary, #097475);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.oleaf-wc-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transition: left 0.5s ease;
}

.oleaf-wc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 116, 117, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.oleaf-wc-button:hover::before {
    left: 100%;
}

.oleaf-wc-button-icon {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.oleaf-wc-button-icon i,
.oleaf-wc-button-icon svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
}

.oleaf-wc-button:hover .oleaf-wc-button-icon {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .oleaf-wc-grid {
        gap: 40px;
    }

    .oleaf-wc-title {
        font-size: 32px;
    }

    .oleaf-wc-image-back {
        height: 360px;
    }

    .oleaf-wc-image-front {
        width: 50%;
        height: 230px;
    }
}

@media (max-width: 768px) {
    .oleaf-wc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .oleaf-wc-visual {
        min-height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }

    .oleaf-wc-image-back {
        width: 90%;
        height: 320px;
    }

    .oleaf-wc-image-front {
        width: 55%;
        height: 200px;
        bottom: -10px;
    }

    .oleaf-wc-badge {
        right: 30px;
        width: 85px;
        height: 85px;
    }

    .oleaf-wc-badge-icon {
        font-size: 18px;
    }

    .oleaf-wc-badge-number {
        font-size: 18px;
    }

    .oleaf-wc-title {
        font-size: 28px;
    }

    .oleaf-wc-wrapper {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .oleaf-wc-visual {
        min-height: 300px;
    }

    .oleaf-wc-image-back {
        height: 260px;
    }

    .oleaf-wc-image-front {
        height: 170px;
    }

    .oleaf-wc-benefit-item {
        padding: 14px 16px;
    }

    .oleaf-wc-button {
        width: 100%;
        justify-content: center;
    }
}

.oleaf-logo-slider-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.oleaf-logo-swiper {
    width: 100%;
    height: 100%;
}

.oleaf-logo-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oleaf-logo-item {
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.oleaf-logo-item img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.oleaf-logo-link {
    display: block;
    text-decoration: none;
    outline: none;
}

.swiper-wrapper-marquee {
    transition-timing-function: linear !important;
}

.oleaf-logo-slider-container.carousel .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.oleaf-logo-slider-container.carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--oleaf-text, #ccc);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.oleaf-logo-slider-container.carousel .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 5px;
    background: var(--oleaf-primary, #097475);
    opacity: 1;
}

.oleaf-logo-slider-container.carousel .swiper-button-next,
.oleaf-logo-slider-container.carousel .swiper-button-prev {
    color: var(--oleaf-primary, #097475);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.oleaf-logo-slider-container.carousel .swiper-button-next:hover,
.oleaf-logo-slider-container.carousel .swiper-button-prev:hover {
    background: var(--oleaf-primary, #097475);
    color: #fff;
    transform: scale(1.1);
}

.oleaf-logo-slider-container.carousel .swiper-button-next:after,
.oleaf-logo-slider-container.carousel .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.oleaf-logo-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--oleaf-heading, #1a1a2e);
    transition: all 0.3s ease;
}

.oleaf-bc {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.oleaf-bc .swiper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.oleaf-bc .swiper-wrapper {
    display: flex;
    align-items: center;
    box-sizing: content-box;
}

.oleaf-bc .swiper-slide {
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
}

.oleaf-bc-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    transition: background-color 0.3s ease;
}

.oleaf-bc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    transition: color 0.3s ease;
}

.oleaf-bc-img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.oleaf-bc-text {
    display: inline-block;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease, -webkit-text-stroke 0.3s ease;
}

.oleaf-bc-next,
.oleaf-bc-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    color: #333;
}

.oleaf-bc-next:hover,
.oleaf-bc-prev:hover {
    background: rgba(0, 0, 0, 0.1);
}

.oleaf-bc-next {
    right: -50px;
}

.oleaf-bc-prev {
    left: -50px;
}

@media (max-width: 1200px) {
    .oleaf-bc-next {
        right: 5px;
    }

    .oleaf-bc-prev {
        left: 5px;
    }
}

.oleaf-bc-dots {
    text-align: center;
    margin-top: 16px;
}

.oleaf-bc-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    margin: 0 4px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.oleaf-bc-dots .swiper-pagination-bullet-active {
    background: var(--oleaf-primary, #1A3C34);
    transform: scale(1.3);
}

.oleaf-bc--marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}

.oleaf-fb {
    width: 100%;
    overflow: hidden;
}

.oleaf-fb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.oleaf-fb-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

a.oleaf-fb-item:hover {
    transform: translateY(-2px);
}

.oleaf-fb-item--left {
    flex-direction: row;
}

.oleaf-fb-item--top {
    flex-direction: column;
    text-align: center;
}

.oleaf-fb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.oleaf-fb-item--left .oleaf-fb-icon {
    margin-right: 14px;
}

.oleaf-fb-item--top .oleaf-fb-icon {
    margin-bottom: 10px;
}

.oleaf-fb-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.oleaf-fb-title {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.oleaf-fb-desc {
    font-size: 12px;
    letter-spacing: 0.03em;
    color: #3a3a4e;
}

.oleaf-fb--sep .oleaf-fb-item+.oleaf-fb-item {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 20px;
}

@media (max-width: 767px) {
    .oleaf-fb--sep .oleaf-fb-item+.oleaf-fb-item {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 12px;
    }
}

.oleaf-bp-header {
    margin-bottom: 40px;
}

.oleaf-bp-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--oleaf-secondary, #C87966);
    margin-bottom: 8px;
}

.oleaf-bp-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--oleaf-primary, #1A3C34);
    margin: 0 0 12px;
    line-height: 1.2;
}

.oleaf-bp-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.oleaf-bp-header[style*="text-align: left"] .oleaf-bp-desc,
.oleaf-bp-header[style*="text-align:left"] .oleaf-bp-desc {
    margin-left: 0;
}

.oleaf-bp-header[style*="text-align: right"] .oleaf-bp-desc,
.oleaf-bp-header[style*="text-align:right"] .oleaf-bp-desc {
    margin-right: 0;
}

.oleaf-bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.oleaf-bp-layout-list {
    grid-template-columns: 1fr !important;
}

.oleaf-bp-layout-list .oleaf-bp-card {
    display: flex;
    flex-direction: row;
}

.oleaf-bp-layout-list .oleaf-bp-thumb {
    flex: 0 0 320px;
    min-height: 220px;
    border-radius: 16px 0 0 16px;
}

.oleaf-bp-layout-list .oleaf-bp-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.oleaf-bp-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), box-shadow 0.35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.oleaf-bp-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.oleaf-bp-thumb {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
}

.oleaf-bp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.oleaf-bp-card:hover .oleaf-bp-thumb img {
    transform: scale(1.08);
}

.oleaf-bp-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 52, 0.08);
    pointer-events: none;
    transition: background 0.35s ease;
}

.oleaf-bp-card:hover .oleaf-bp-thumb::after {
    background: rgba(26, 60, 52, 0.02);
}

.oleaf-bp-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: var(--oleaf-primary, #1A3C34);
    border-radius: 6px;
    line-height: 1.4;
}

.oleaf-bp-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.oleaf-bp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.oleaf-bp-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

.oleaf-bp-meta svg {
    flex-shrink: 0;
    color: var(--oleaf-secondary, #C87966);
}

.oleaf-bp-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--oleaf-secondary, #C87966);
}

.oleaf-bp-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.oleaf-bp-title a {
    color: var(--oleaf-primary, #1A3C34);
    text-decoration: none;
    transition: color 0.25s ease;
}

.oleaf-bp-title a:hover {
    color: var(--oleaf-secondary, #C87966);
}

.oleaf-bp-excerpt {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.oleaf-bp-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--oleaf-primary, #1A3C34);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.oleaf-bp-readmore:hover {
    color: var(--oleaf-secondary, #C87966);
    gap: 10px;
}

.oleaf-bp-readmore svg {
    transition: transform 0.25s ease;
}

.oleaf-bp-readmore:hover svg {
    transform: translateX(3px);
}

.oleaf-bp-carousel-wrap {
    position: relative;
}

.oleaf-bp-carousel-wrap .oleaf-bp-card {
    height: auto;
}

.oleaf-bp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--oleaf-border, #e2e2e2);
    background: #fff;
    color: var(--oleaf-primary, #1A3C34);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.oleaf-bp-arrow:hover {
    background: var(--oleaf-primary, #1A3C34);
    border-color: var(--oleaf-primary, #1A3C34);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.oleaf-bp-prev {
    left: -22px;
}

.oleaf-bp-next {
    right: -22px;
}

.oleaf-bp-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.oleaf-bp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.oleaf-bp-dot.swiper-pagination-bullet-active {
    background: var(--oleaf-primary, #1A3C34);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .oleaf-bp-heading {
        font-size: 28px;
    }

    .oleaf-bp-prev {
        left: -10px;
    }

    .oleaf-bp-next {
        right: -10px;
    }
}

@media (max-width: 767px) {
    .oleaf-bp-grid {
        grid-template-columns: 1fr !important;
    }

    .oleaf-bp-heading {
        font-size: 24px;
    }

    .oleaf-bp-desc {
        font-size: 14px;
    }

    .oleaf-bp-layout-list .oleaf-bp-card {
        flex-direction: column;
    }

    .oleaf-bp-layout-list .oleaf-bp-thumb {
        flex: none;
        border-radius: 16px 16px 0 0;
        min-height: 180px;
    }

    .oleaf-bp-prev {
        left: 4px;
    }

    .oleaf-bp-next {
        right: 4px;
    }

    .oleaf-bp-arrow {
        width: 36px;
        height: 36px;
    }
}

.oleaf-bp-view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.oleaf-bp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    background: var(--oleaf-primary, #1A3C34);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 16px rgba(26, 60, 52, 0.25);
}

.oleaf-bp-view-all:hover {
    background: var(--oleaf-secondary, #C87966);
    color: #fff;
    box-shadow: 0 8px 28px rgba(200, 121, 102, 0.35);
    transform: translateY(-2px);
    gap: 12px;
}

.oleaf-bp-view-all svg {
    transition: transform 0.3s ease;
}

.oleaf-bp-view-all:hover svg {
    transform: translateX(4px);
}

.oleaf-sf-section {
    max-width: 1280px;
    margin: 0 auto;
}

.oleaf-sf-header {
    text-align: center;
}

.oleaf-sf-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #10b981;
}

.oleaf-sf-title {
    font-size: 2.75rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #111827;
    margin-top: 0;
}

.oleaf-sf-title-hl {
    font-weight: 700;
}

.oleaf-sf-divider {
    height: 4px;
    border-radius: 999px;
    margin: 0 auto;
}

.oleaf-sf-grid {
    display: grid;
}

.oleaf-sf-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.oleaf-sf-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.oleaf-sf-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.oleaf-sf-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.oleaf-sf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #10b981;
    transition: all 0.3s ease;
}

.oleaf-sf-card:hover .oleaf-sf-icon {
    transform: scale(1.1);
}

.oleaf-sf-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 0;
}

.oleaf-sf-card-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    margin-top: 0;
}

.oleaf-sf-accent {
    border-radius: 999px;
    transition: width 0.3s ease;
}

.oleaf-sf-card:hover .oleaf-sf-accent {
    width: 100% !important;
}

.oleaf-sf-mid-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.3;
}

.oleaf-sf-mid-line {
    flex: 1;
    height: 1px;
}

.oleaf-sf-mid-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .oleaf-sf-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .oleaf-sf-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .oleaf-sf-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {

    .oleaf-sf-cols-4,
    .oleaf-sf-cols-3,
    .oleaf-sf-cols-2 {
        grid-template-columns: 1fr;
    }

    .oleaf-sf-title {
        font-size: 1.75rem;
    }
}

.oleaf-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.oleaf-ph-inner {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.oleaf-ph-breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 16px;
    opacity: 0.7;
}

.oleaf-ph-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.oleaf-ph-breadcrumb a:hover {
    text-decoration: underline;
}

.oleaf-ph-sep {
    margin: 0 6px;
}

.oleaf-ph-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
    margin: 0;
}

.oleaf-ph-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 auto;
    opacity: 0.85;
}

.oleaf-ph-image {
    width: 100%;
    margin: 0 auto;
}

.oleaf-ph-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .oleaf-ph-title {
        font-size: 2.5rem;
    }
}

.oleaf-sb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.oleaf-sb-cta {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.oleaf-sb-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.oleaf-sb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.oleaf-sb-item:hover {
    opacity: 0.7;
}

.oleaf-sb-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.oleaf-sb-label {
    font-size: 0.85rem;
}

.oleaf-sb-subscribe a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.oleaf-sb-subscribe a:hover {
    opacity: 0.7;
}

.oleaf-sb-arrow {
    transition: transform 0.2s ease;
}

.oleaf-sb-subscribe a:hover .oleaf-sb-arrow {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .oleaf-sb {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .oleaf-sb-items {
        gap: 16px !important;
    }
}

.oleaf-as {
    max-width: 1280px;
    margin: 0 auto;
}

.oleaf-as-heading {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin: 0;
}

.oleaf-as-heading-line {
    width: 60px;
    height: 3px;
    border-radius: 999px;
    margin: 16px auto 0;
}

.oleaf-as-intro {
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 auto;
    text-align: center;
}

.oleaf-as-gallery {
    display: grid;
    width: 100%;
}

.oleaf-as-gallery--creative {
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    grid-auto-rows: auto;
}

.oleaf-as-gallery--equal.oleaf-as-gallery-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.oleaf-as-gallery--equal.oleaf-as-gallery-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.oleaf-as-gallery--equal.oleaf-as-gallery-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.oleaf-as-gallery-item {
    overflow: hidden;
}

.oleaf-as-gallery-item img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.oleaf-as-gallery-item:hover img {
    transform: scale(1.05);
}

.oleaf-as-story {
    margin: 0 auto;
    line-height: 1.8;
}

.oleaf-as-story p {
    margin: 0 0 16px;
}

@media (max-width: 991px) {
    .oleaf-as-gallery--creative {
        grid-template-columns: 1fr 1fr;
    }

    .oleaf-as-heading {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {

    .oleaf-as-gallery--creative,
    .oleaf-as-gallery--equal.oleaf-as-gallery-cols-3,
    .oleaf-as-gallery--equal.oleaf-as-gallery-cols-4 {
        grid-template-columns: 1fr;
    }

    .oleaf-as-heading {
        font-size: 1.6rem;
    }
}

.oleaf-qb {
    overflow: hidden;
}

.oleaf-qb-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.oleaf-qb-mark {
    font-family: Georgia, serif;
    line-height: 1;
    user-select: none;
    margin-bottom: 8px;
}

.oleaf-qb-stars {
    font-size: 1.25rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.oleaf-qb-text {
    font-style: italic;
    line-height: 1.8;
    margin: 0 auto 28px;
    border: none;
    padding: 0;
    quotes: none;
    font-size: 1.05rem;
}

.oleaf-qb-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.oleaf-qb-avatar {
    border-radius: 50%;
    object-fit: cover;
}

.oleaf-qb-author>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.oleaf-qb-author-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.oleaf-qb-author-title {
    font-size: 0.8rem;
    margin-top: 2px;
}

.oleaf-qb-brands-wrap {
    text-align: center;
}

.oleaf-qb-brands-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.oleaf-qb-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.oleaf-qb-brand-logo img {
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.oleaf-qb-brand-logo:hover img {
    opacity: 1;
}

.oleaf-qb-brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.oleaf-qb-brand-logo:hover .oleaf-qb-brand-text {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
    .oleaf-qb-text {
        font-size: 0.95rem;
    }

    .oleaf-qb-brands {
        gap: 20px !important;
    }
}

.oleaf-qb-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.oleaf-qb-slide--active {
    display: block;
    opacity: 1;
}

.oleaf-qb-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.oleaf-qb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.oleaf-qb-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.oleaf-qb-dot--active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.oleaf-nl {
    overflow: hidden;
}

.oleaf-nl-inner {
    max-width: 700px;
    margin: 0 auto;
}

.oleaf-nl-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.oleaf-nl-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 28px;
    opacity: 0.85;
}

.oleaf-nl-form {
    margin: 0 auto;
}

.oleaf-nl-name {
    margin-bottom: 12px;
}

.oleaf-nl-row {
    display: flex;
    gap: 0;
}

.oleaf-nl-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: inherit;
}

.oleaf-nl-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.oleaf-nl-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.oleaf-nl-row .oleaf-nl-input {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.oleaf-nl-name {
    display: block;
    width: 100%;
    border-radius: 6px;
}

.oleaf-nl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: background-color 0.3s ease, transform 0.15s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.oleaf-nl-btn:hover {
    transform: translateY(-1px);
}

.oleaf-nl-btn:active {
    transform: translateY(0);
}

.oleaf-nl-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.oleaf-nl-spinner {
    display: inline-flex;
    align-items: center;
}

.oleaf-nl-spinner svg {
    animation: oleaf-nl-spin 1s linear infinite;
}

@keyframes oleaf-nl-spin {
    to {
        transform: rotate(360deg);
    }
}

.oleaf-nl-msg {
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.oleaf-nl-msg--ok {
    background: rgba(76, 175, 80, 0.15);
    color: #66bb6a;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.oleaf-nl-msg--err {
    background: rgba(244, 67, 54, 0.15);
    color: #ef5350;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.oleaf-nl-privacy {
    font-size: 0.75rem;
    margin: 14px 0 0;
    opacity: 0.5;
    color: #ffffff;
}

.oleaf-nl-form--inline .oleaf-nl-name {
    margin-bottom: 12px;
}

.oleaf-nl-form:not(.oleaf-nl-form--inline) .oleaf-nl-row {
    flex-direction: column;
    gap: 12px;
}

.oleaf-nl-form:not(.oleaf-nl-form--inline) .oleaf-nl-row .oleaf-nl-input {
    border-radius: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.oleaf-nl-form:not(.oleaf-nl-form--inline) .oleaf-nl-btn {
    border-radius: 6px;
    width: 100%;
}

@media (max-width: 575px) {
    .oleaf-nl-form--inline .oleaf-nl-row {
        flex-direction: column;
        gap: 12px;
    }

    .oleaf-nl-form--inline .oleaf-nl-row .oleaf-nl-input {
        border-radius: 6px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .oleaf-nl-form--inline .oleaf-nl-btn {
        border-radius: 6px;
        width: 100%;
    }

    .oleaf-nl-title {
        font-size: 1.4rem;
    }
}

.oleaf-cf {
    box-sizing: border-box;
}

.oleaf-cf *,
.oleaf-cf *::before,
.oleaf-cf *::after {
    box-sizing: inherit;
}

.oleaf-cf-header {
    text-align: left;
}

.oleaf-cf-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.oleaf-cf-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.oleaf-cf-fields {
    display: flex;
    flex-wrap: wrap;
}

.oleaf-cf-field--100 {
    width: 100%;
}

.oleaf-cf-field--50 {
    width: calc(50% - 10px);
}

.oleaf-cf-field--33 {
    width: calc(33.333% - 14px);
}

.oleaf-cf-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.oleaf-cf-req {
    color: #e53935;
}

.oleaf-cf-input,
.oleaf-cf-textarea,
.oleaf-cf-select {
    width: 100%;
    border: 1px solid #e0e0e0;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.oleaf-cf-input:focus,
.oleaf-cf-textarea:focus,
.oleaf-cf-select:focus {
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.08);
}

.oleaf-cf-textarea {
    resize: vertical;
    min-height: 100px;
}

.oleaf-cf-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px !important;
    cursor: pointer;
}

.oleaf-cf-submit-wrap {
    display: flex;
}

.oleaf-cf-submit--full {
    width: 100%;
}

.oleaf-cf-submit--full .oleaf-cf-submit {
    width: 100%;
    justify-content: center;
}

.oleaf-cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.oleaf-cf-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.oleaf-cf-submit:active {
    transform: translateY(0);
}

.oleaf-cf-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.oleaf-cf-submit i {
    font-size: 0.9em;
}

.oleaf-cf-spinner {
    display: inline-flex;
    align-items: center;
    animation: oleaf-cf-spin 1s linear infinite;
}

@keyframes oleaf-cf-spin {
    to {
        transform: rotate(360deg);
    }
}

.oleaf-cf-msg {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 16px;
    animation: oleaf-cf-msg-in 0.3s ease;
}

@keyframes oleaf-cf-msg-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oleaf-cf-msg--ok {
    border-left: 4px solid #2e7d32;
}

.oleaf-cf-msg--err {
    border-left: 4px solid #c62828;
}

.oleaf-cf-notice {
    padding: 20px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 8px;
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}

.oleaf-cf .wpcf7 input[type="text"],
.oleaf-cf .wpcf7 input[type="email"],
.oleaf-cf .wpcf7 input[type="tel"],
.oleaf-cf .wpcf7 input[type="url"],
.oleaf-cf .wpcf7 input[type="number"],
.oleaf-cf .wpcf7 textarea,
.oleaf-cf .wpcf7 select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #f8f8f6;
    transition: border-color 0.2s ease;
    outline: none;
}

.oleaf-cf .wpcf7 input:focus,
.oleaf-cf .wpcf7 textarea:focus,
.oleaf-cf .wpcf7 select:focus {
    border-color: #1A3C34;
    box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.08);
}

.oleaf-cf .wpcf7 input[type="submit"] {
    background: #1A3C34;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

.oleaf-cf .wpcf7 input[type="submit"]:hover {
    background: #c9a96e;
    transform: translateY(-1px);
}

@media (max-width: 768px) {

    .oleaf-cf-field--50,
    .oleaf-cf-field--33 {
        width: 100%;
    }

    .oleaf-cf-title {
        font-size: 1.4rem;
    }

    .oleaf-cf-subtitle {
        font-size: 0.9rem;
    }
}

.oleaf-cf--sidebar {
    display: flex;
    gap: 30px;
    overflow: hidden;
}

.oleaf-cf--sidebar .oleaf-cf-sidebar {
    flex: 0 0 38%;
    max-width: 38%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.oleaf-cf--sidebar .oleaf-cf-main {
    flex: 1;
    min-width: 0;
}

.oleaf-cf-sidebar-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.oleaf-cf-sidebar-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 30px;
}

.oleaf-cf-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.oleaf-cf-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.oleaf-cf-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 1rem;
    overflow: hidden;
    transition: background 0.25s ease, transform 0.25s ease;
}

.oleaf-cf-info-icon i {
    font-size: 18px !important;
    line-height: 1;
}

.oleaf-cf-info-icon svg {
    width: 18px !important;
    height: 18px !important;
}

.oleaf-cf-info-item:hover .oleaf-cf-info-icon {
    background: rgba(255, 255, 255, 0.14);
    transform: scale(1.06);
}

.oleaf-cf-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.oleaf-cf-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.oleaf-cf-info-value {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    word-break: break-word;
}

a.oleaf-cf-info-value {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a.oleaf-cf-info-value:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.oleaf-cf-map {
    margin-top: auto;
    padding-top: 24px;
}

.oleaf-cf-map iframe {
    display: block;
    border-radius: 8px;
    width: 100%;
}

.oleaf-cf-sidebar::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    border-radius: 50%;
    pointer-events: none;
}

@media (max-width: 992px) {
    .oleaf-cf--sidebar {
        flex-direction: column;
    }

    .oleaf-cf--sidebar .oleaf-cf-sidebar {
        flex: none;
        max-width: 100%;
    }

    .oleaf-cf-sidebar::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .oleaf-cf-sidebar-heading {
        font-size: 1.25rem;
    }

    .oleaf-cf-info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

.oleaf-rs-hero {
    position: relative;
    overflow: hidden;
}

.oleaf-rs-hero-inner {
    position: relative;
}

.oleaf-rs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.oleaf-rs-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.oleaf-rs-hero-desc {
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.oleaf-rs-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.oleaf-rs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.oleaf-rs-stat-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.oleaf-rs-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.oleaf-rs-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.oleaf-rs-trust-item {
    border: 1px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.oleaf-rs-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.oleaf-rs-trust-item-img {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
}

.oleaf-rs-trust-item-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.oleaf-rs-trust-item:hover .oleaf-rs-trust-item-img img {
    transform: scale(1.05);
}

.oleaf-rs-trust-item h4 {
    margin: 0;
}

.oleaf-rs-trust-item p {
    line-height: 1.5;
    margin: 0;
}

.oleaf-rs-trust-visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 260px;
    margin-bottom: 32px;
    background: #0f172a;
}

.oleaf-rs-trust-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.5));
    z-index: 1;
}

.oleaf-rs-trust-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oleaf-rs-trust-visual-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px;
    min-height: 260px;
}

.oleaf-rs-trust-visual-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    max-width: 420px;
}

.oleaf-rs-trust-visual-text p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
}

.oleaf-rs-product-intro--with-img {
    display: flex;
    align-items: center;
    gap: 32px;
}

.oleaf-rs-product-intro-text {
    flex: 1;
}

.oleaf-rs-product-intro-img {
    flex-shrink: 0;
    width: 200px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
}

.oleaf-rs-product-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.oleaf-rs-product-intro--with-img:hover .oleaf-rs-product-intro-img img {
    transform: scale(1.05);
}

.oleaf-rs-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.oleaf-rs-section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
}

.oleaf-rs-section-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.oleaf-rs-products {
    padding: 80px 0;
}

.oleaf-rs-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    padding: 6px;
    border-radius: 16px;
    overflow-x: auto;
}

.oleaf-rs-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.oleaf-rs-tab:hover {
    opacity: 0.85;
}

.oleaf-rs-tab.active {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.oleaf-rs-tab-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    transition: all 0.3s;
}

.oleaf-rs-panel {
    display: none;
    animation: oleafRsFadeIn 0.4s ease;
}

.oleaf-rs-panel.active {
    display: block;
}

@keyframes oleafRsFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oleaf-rs-product-intro {
    margin-bottom: 32px;
    padding: 32px;
    border-radius: 16px;
}

.oleaf-rs-product-intro h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.oleaf-rs-product-intro p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.oleaf-rs-card {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.oleaf-rs-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
}

.oleaf-rs-card-header svg {
    flex-shrink: 0;
}

.oleaf-rs-card-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.oleaf-rs-table-wrap {
    overflow-x: auto;
    padding: 0;
}

.oleaf-rs-table,
.oleaf-rs-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.oleaf-rs-table th,
.oleaf-rs-compare th {
    padding: 12px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.oleaf-rs-table td,
.oleaf-rs-compare td {
    padding: 14px 20px;
    line-height: 1.5;
}

.oleaf-rs-table tbody tr:hover,
.oleaf-rs-compare tbody tr:hover {
    opacity: 0.85;
}

.oleaf-rs-table tfoot td {
    font-weight: 700;
    border-bottom: none;
}

.oleaf-rs-weak {
    position: relative;
    padding-left: 28px !important;
}

.oleaf-rs-weak::before {
    content: "\2717";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
}

.oleaf-rs-strong {
    position: relative;
    padding-left: 28px !important;
}

.oleaf-rs-strong::before {
    content: "\2713";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
}

.oleaf-rs-ingredient {
    padding: 24px;
}

.oleaf-rs-ingredient:last-child {
    border-bottom: none;
}

.oleaf-rs-ingredient h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.oleaf-rs-ingredient p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 10px;
}

.oleaf-rs-ingredient p:last-child {
    margin-bottom: 0;
}

.oleaf-rs-equation {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.oleaf-rs-refs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.oleaf-rs-refs-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.oleaf-rs-refs a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.oleaf-rs-refs a:hover {
    opacity: 0.8;
}

.oleaf-rs-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px;
}

.oleaf-rs-benefit {
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.oleaf-rs-benefit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.oleaf-rs-benefit-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.oleaf-rs-benefit h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.oleaf-rs-benefit p {
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}

.oleaf-rs-supp-panel {
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.9rem;
}

.oleaf-rs-supp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.oleaf-rs-supp-row:last-child {
    border-bottom: none;
}

.oleaf-rs-supp-row span:first-child {
    font-weight: 600;
    flex: 1;
}

.oleaf-rs-supp-row span:last-child {
    text-align: right;
    white-space: nowrap;
    margin-left: 16px;
}

.oleaf-rs-supp-head {
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 14px 20px !important;
    border-bottom: none;
}

.oleaf-rs-supp-row em {
    font-style: normal;
    margin-left: 4px;
}

.oleaf-rs-supp-footer {
    padding: 10px 20px;
    font-size: 0.78rem;
}

.oleaf-rs-supp-other {
    padding: 10px 20px;
    font-size: 0.82rem;
    font-style: italic;
}

.oleaf-rs-safety {
    padding: 80px 0;
    background: #fefce8;
}

.oleaf-rs-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.oleaf-rs-safety-card {
    padding: 28px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #fde68a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.oleaf-rs-safety-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 10px;
}

.oleaf-rs-safety-card p {
    font-size: 0.87rem;
    color: #78716c;
    line-height: 1.6;
    margin: 0;
}

.oleaf-rs-disclaimer {
    padding: 40px 0;
}

.oleaf-rs-disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    border-radius: 12px;
}

.oleaf-rs-disclaimer-box svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.oleaf-rs-disclaimer-box p {
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .oleaf-rs-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .oleaf-rs-safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oleaf-rs-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .oleaf-rs-tab {
        min-width: 180px;
        flex: none;
    }

    .oleaf-rs-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .oleaf-rs-table,
    .oleaf-rs-compare {
        min-width: 500px;
    }
}

@media (max-width: 768px) {
    .oleaf-rs-hero {
        padding: 70px 0 50px;
    }

    .oleaf-rs-hero-stats {
        gap: 24px;
    }

    .oleaf-rs-trust-grid,
    .oleaf-rs-safety-grid {
        grid-template-columns: 1fr !important;
    }

    .oleaf-rs-trust-item {
        padding: 20px !important;
    }

    .oleaf-rs-benefits-grid {
        grid-template-columns: 1fr;
    }

    .oleaf-rs-tab {
        min-width: 140px;
        font-size: 0.82rem;
        padding: 12px 14px;
    }

    .oleaf-rs-product-intro {
        padding: 20px;
    }

    .oleaf-rs-card-header {
        padding: 16px 18px;
    }

    .oleaf-rs-card-header h4 {
        font-size: 0.92rem;
    }

    .oleaf-rs-table td,
    .oleaf-rs-table th,
    .oleaf-rs-compare td,
    .oleaf-rs-compare th {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .oleaf-rs-ingredient {
        padding: 18px;
    }

    .oleaf-rs-benefits-grid {
        padding: 18px;
    }

    .oleaf-rs-supp-row {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .oleaf-rs-supp-head {
        padding: 12px 14px !important;
        font-size: 0.75rem;
    }

    .oleaf-rs-supp-footer,
    .oleaf-rs-supp-other {
        padding: 8px 14px;
    }

    .oleaf-rs-disclaimer-box {
        flex-direction: column;
        padding: 20px;
    }

    .oleaf-rs-trust-visual-text {
        padding: 24px;
    }

    .oleaf-rs-trust-visual-text h3 {
        font-size: 1.2rem;
    }

    .oleaf-rs-trust-img {
        height: 220px;
    }

    .oleaf-rs-product-intro--with-img {
        flex-direction: column;
        gap: 20px;
    }

    .oleaf-rs-product-intro-img {
        width: 100%;
        height: 180px;
    }

    .oleaf-rs-section-header h2 {
        font-size: 1.4rem;
    }
}

.oleaf-rs-wysiwyg-content {
    padding: 24px;
}

.oleaf-rs-wysiwyg-content p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 12px;
}

.oleaf-rs-wysiwyg-content p:last-child {
    margin-bottom: 0;
}

.oleaf-rs-wysiwyg-content h3,
.oleaf-rs-wysiwyg-content h4,
.oleaf-rs-wysiwyg-content h5 {
    color: #0f172a;
    margin: 0 0 12px;
}

.oleaf-rs-wysiwyg-content a {
    color: var(--oleaf-primary, #166534);
    text-decoration: underline;
}

.oleaf-rs-wysiwyg-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.oleaf-rs-wysiwyg-content th {
    background: #f1f5f9;
    padding: 12px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
}

.oleaf-rs-wysiwyg-content td {
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    line-height: 1.5;
}

.oleaf-rs-wysiwyg-content tbody tr:hover {
    background: #f8fafc;
}