/* ============================================================
   Learn More Widget
   ============================================================ */

.learn-more-widget {
    padding: 0 0 64px;
    text-align: center;
}

.learn-more-widget .container {
    max-width: 1100px;
}

/* Eyebrow label */
.lmw-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

/* ---- Dropdown ---- */
.lmw-dropdown {
    position: relative;
    display: inline-block;
    min-width: 280px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto 32px;
}

.lmw-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #007853;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.lmw-dropdown-toggle:hover,
.lmw-dropdown[aria-expanded="true"] .lmw-dropdown-toggle {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #007853;
}

.lmw-chevron {
    flex-shrink: 0;
    color: #007853;
    transition: transform 0.25s ease;
}

.lmw-dropdown[aria-expanded="true"] .lmw-chevron {
    transform: rotate(180deg);
}

.lmw-dropdown-menu {
    list-style: none !important;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 100;
    display: none;
    text-align: left;
}

.lmw-dropdown[aria-expanded="true"] .lmw-dropdown-menu {
    display: block;
}

.lmw-dropdown-item {
    padding: 10px 20px;
    font-size: 0.95rem;
    list-style: none !important;
    color: #323232;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.lmw-dropdown-item:hover,
.lmw-dropdown-item:focus,
.lmw-dropdown-item.is-active {
    background: #f0f8f5;
    color: #007853;
    outline: none;
}

/* ---- Item card ---- */
.lmw-items-wrapper {
    text-align: left;
}

.lmw-item[hidden] {
    display: none !important;
}

.lmw-item-inner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: #f4f4f4;
    border-radius: 16px;
    padding: 28px;
}

/* Image */
.lmw-item-image {
    flex: 0 0 220px;
    width: 220px;
}

.lmw-item-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Content */
.lmw-item-content {
    flex: 1 1 0;
    min-width: 0;
}

.lmw-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #007853;
    margin-bottom: 10px;
}

.lmw-item-desc {
    font-size: 0.95rem;
    color: #323232;
    line-height: 1.65;
    margin-bottom: 20px;
}

.lmw-learn-more-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #3898ed;
    background: #FFF;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #323232;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.lmw-learn-more-btn:hover {
    background: #3898ed;
    color: #fff;
    text-decoration: none;
}

/* Treatments */
.lmw-treatments {
    flex: 0 0 200px;
    width: 200px;
    /* border-left: 1px solid #ddd; */
    /* padding-left: 28px; */
}

.lmw-treatments-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.lmw-treatments-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lmw-treatments-list li {
    margin-bottom: 8px;
}

.lmw-treatments-list a {
    font-size: 16px;
    color: #3898ed;
    text-decoration: none;
    transition: color 0.15s ease;
}

.lmw-treatments-list a:hover {
    color: #005a3e;
    text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .lmw-item-inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .lmw-item-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .lmw-item-image img {
        height: 200px;
    }

    .lmw-treatments {
        flex: 0 0 100%;
        width: 100%;
        border-left: none;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 20px;
    }
}
