/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1774578700
Updated: 2026-03-27 02:31:40

*/

/* =========================
   GLOBAL
========================= */
.supplements-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* =========================
   HERO SECTION
========================= */
.supplement-hero {
    background: #e9f0f2;
    padding: 60px 80px;
    border-radius: 8px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-image img {
    width: 260px;
    max-width: 100%;
    object-fit: contain;
}

.hero-content {
    max-width: 750px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.hero-subtitle {
    display: block;
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    background: #f4b400;
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #e0a300;
    transform: translateY(-2px);
}

/* =========================
   CARD SECTION
========================= */
.supplement-item {
    border-radius: 12px;
    padding: 40px 50px;
}

/* Backgrounds */
.bg-1 { background: #eef3f5; }
.bg-2 { background: #f4e7d6; }
.bg-3 { background: #e9e9f5; }

/* Layout */
.supplement-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Image */
.supplement-image img {
    width: 200px;
    max-width: 100%;
    object-fit: contain;
}

/* Content */
.supplement-text {
    max-width: 700px;
}

.supplement-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.supplement-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* Button */
.supplement-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 26px;
    background: #f4b400;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.supplement-btn:hover {
    background: #e0a300;
    transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {

    .hero-inner {
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .supplement-inner {
        gap: 25px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

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

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 180px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    /* Cards */
    .supplement-item {
        padding: 25px 20px;
    }

    .supplement-inner {
        flex-direction: column;
        text-align: center;
    }

    .supplement-image img {
        width: 150px;
    }

    .supplement-text h2 {
        font-size: 24px;
    }

    .supplement-text p {
        font-size: 14px;
    }
}