/* Motherland Homepage ade72dbb */
:root {
    --mlhp-green: #0B6E4F;
    --mlhp-green-light: #0d8a63;
    --mlhp-green-bg: #f0faf5;
    --mlhp-white: #FFFFFF;
    --mlhp-grey: #f7f7f7;
    --mlhp-border: #e2e2e2;
    --mlhp-text: #1a1a1a;
    --mlhp-text-light: #555555;
    --mlhp-radius: 8px;
}

.mlhp-wrapper-ade72dbb {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--mlhp-text);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

.mlhp-wrapper-ade72dbb *,
.mlhp-wrapper-ade72dbb *::before,
.mlhp-wrapper-ade72dbb *::after {
    box-sizing: border-box;
}

.mlhp-container-ade72dbb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.mlhp-hero-ade72dbb {
    background: var(--mlhp-white);
    padding: 60px 20px 50px;
    text-align: center;
    border-bottom: 1px solid var(--mlhp-border);
}

.mlhp-hero-inner-ade72dbb {
    max-width: 750px;
    margin: 0 auto;
}

.mlhp-hero-title-ade72dbb {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--mlhp-green);
    margin: 0 0 12px;
    line-height: 1.2;
}

.mlhp-hero-sub-ade72dbb {
    font-size: 1.15rem;
    color: var(--mlhp-text-light);
    margin: 0 0 30px;
}

.mlhp-search-form-ade72dbb {
    display: flex;
    max-width: 600px;
    margin: 0 auto 24px;
    border: 2px solid var(--mlhp-green);
    border-radius: 50px;
    overflow: hidden;
    background: var(--mlhp-white);
}

.mlhp-search-input-ade72dbb {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--mlhp-text);
}

.mlhp-search-input-ade72dbb::placeholder {
    color: #999;
}

.mlhp-search-btn-ade72dbb {
    background: var(--mlhp-green);
    color: var(--mlhp-white);
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.mlhp-search-btn-ade72dbb:hover {
    background: var(--mlhp-green-light);
}

.mlhp-hero-ctas-ade72dbb {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.mlhp-btn-primary-ade72dbb {
    display: inline-block;
    background: var(--mlhp-green);
    color: var(--mlhp-white) !important;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
}

.mlhp-btn-primary-ade72dbb:hover {
    background: var(--mlhp-green-light);
    color: var(--mlhp-white) !important;
}

.mlhp-btn-secondary-ade72dbb {
    display: inline-block;
    background: transparent;
    color: var(--mlhp-green) !important;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--mlhp-green);
    transition: all 0.2s;
}

.mlhp-btn-secondary-ade72dbb:hover {
    background: var(--mlhp-green);
    color: var(--mlhp-white) !important;
}

/* CATEGORIES */
.mlhp-categories-ade72dbb {
    background: var(--mlhp-grey);
    padding: 45px 20px;
}

.mlhp-section-title-ade72dbb {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--mlhp-text);
    margin: 0 0 30px;
}

.mlhp-cat-grid-ade72dbb {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.mlhp-cat-item-ade72dbb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background: var(--mlhp-white);
    border-radius: var(--mlhp-radius);
    border: 1px solid var(--mlhp-border);
    text-decoration: none;
    color: var(--mlhp-text);
    transition: all 0.2s;
}

.mlhp-cat-item-ade72dbb:hover {
    border-color: var(--mlhp-green);
    background: var(--mlhp-green-bg);
    color: var(--mlhp-green);
    transform: translateY(-2px);
}

.mlhp-cat-icon-ade72dbb {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--mlhp-green);
}

.mlhp-cat-label-ade72dbb {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* PRODUCTS SECTION */
.mlhp-products-section-ade72dbb {
    background: var(--mlhp-white);
    padding: 50px 20px;
}

.mlhp-bestsellers-section-ade72dbb {
    background: var(--mlhp-grey);
}

.mlhp-products-grid-ade72dbb {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mlhp-product-card-ade72dbb {
    background: var(--mlhp-white);
    border: 1px solid var(--mlhp-border);
    border-radius: var(--mlhp-radius);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.mlhp-product-card-ade72dbb:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mlhp-badge-ade72dbb {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--mlhp-green);
    color: var(--mlhp-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mlhp-product-img-link-ade72dbb {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fafafa;
}

.mlhp-product-img-link-ade72dbb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mlhp-product-card-ade72dbb:hover .mlhp-product-img-link-ade72dbb img {
    transform: scale(1.03);
}

.mlhp-product-info-ade72dbb {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mlhp-product-name-ade72dbb {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mlhp-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mlhp-product-name-ade72dbb:hover {
    color: var(--mlhp-green);
}

.mlhp-product-price-ade72dbb {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mlhp-green);
    margin-bottom: 10px;
}

.mlhp-qty-row-ade72dbb {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 10px;
    border: 1px solid var(--mlhp-border);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.mlhp-qty-btn-ade72dbb {
    background: var(--mlhp-grey);
    border: none;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mlhp-text);
    transition: background 0.15s;
}

.mlhp-qty-btn-ade72dbb:hover {
    background: var(--mlhp-green-bg);
    color: var(--mlhp-green);
}

.mlhp-qty-input-ade72dbb {
    width: 42px;
    height: 34px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--mlhp-border);
    border-right: 1px solid var(--mlhp-border);
    font-size: 0.9rem;
    font-weight: 600;
    -moz-appearance: textfield;
    background: var(--mlhp-white);
}

.mlhp-qty-input-ade72dbb::-webkit-outer-spin-button,
.mlhp-qty-input-ade72dbb::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mlhp-add-to-cart-ade72dbb {
    background: var(--mlhp-green);
    color: var(--mlhp-white);
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    transition: background 0.2s;
    margin-top: auto;
}

.mlhp-add-to-cart-ade72dbb:hover {
    background: var(--mlhp-green-light);
}

.mlhp-add-to-cart-ade72dbb.mlhp-added-ade72dbb {
    background: #2e7d32;
}

.mlhp-section-cta-ade72dbb {
    text-align: center;
    margin-top: 30px;
}

/* TRUST */
.mlhp-trust-ade72dbb {
    background: var(--mlhp-white);
    padding: 50px 20px;
    border-top: 1px solid var(--mlhp-border);
    border-bottom: 1px solid var(--mlhp-border);
}

.mlhp-trust-grid-ade72dbb {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.mlhp-trust-item-ade72dbb {
    text-align: center;
    padding: 20px 15px;
}

.mlhp-trust-icon-ade72dbb {
    font-size: 36px;
    width: 36px;
    height: 36px;
    color: var(--mlhp-green);
    margin-bottom: 12px;
}

.mlhp-trust-item-ade72dbb h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--mlhp-text);
}

.mlhp-trust-item-ade72dbb p {
    font-size: 0.85rem;
    color: var(--mlhp-text-light);
    margin: 0;
}

/* PROMO */
.mlhp-promo-ade72dbb {
    background: var(--mlhp-green);
    padding: 0;
}

.mlhp-promo-inner-ade72dbb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.mlhp-promo-text-ade72dbb {
    color: var(--mlhp-white);
    font-size: 1.05rem;
}

.mlhp-promo-btn-ade72dbb {
    display: inline-block;
    background: var(--mlhp-white);
    color: var(--mlhp-green) !important;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.mlhp-promo-btn-ade72dbb:hover {
    background: var(--mlhp-green-bg);
}

/* REVIEWS */
.mlhp-reviews-ade72dbb {
    background: var(--mlhp-grey);
    padding: 50px 20px;
}

.mlhp-reviews-grid-ade72dbb {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.mlhp-review-card-ade72dbb {
    background: var(--mlhp-white);
    border: 1px solid var(--mlhp-border);
    border-radius: var(--mlhp-radius);
    padding: 24px;
}

.mlhp-review-stars-ade72dbb {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.mlhp-review-text-ade72dbb {
    font-size: 0.9rem;
    color: var(--mlhp-text-light);
    margin: 0 0 12px;
    line-height: 1.5;
    font-style: italic;
}

.mlhp-review-name-ade72dbb {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mlhp-text);
}

/* EMAIL CAPTURE */
.mlhp-email-ade72dbb {
    background: var(--mlhp-white);
    padding: 50px 20px;
    border-top: 1px solid var(--mlhp-border);
}

.mlhp-email-inner-ade72dbb {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.mlhp-email-title-ade72dbb {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--mlhp-text);
}

.mlhp-email-sub-ade72dbb {
    font-size: 0.95rem;
    color: var(--mlhp-text-light);
    margin: 0 0 24px;
}

.mlhp-email-form-ade72dbb {
    display: flex;
    gap: 0;
    border: 2px solid var(--mlhp-green);
    border-radius: 50px;
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
}

.mlhp-email-input-ade72dbb {
    flex: 1;
    border: none;
    padding: 13px 20px;
    font-size: 0.95rem;
    outline: none;
    background: var(--mlhp-white);
}

.mlhp-email-btn-ade72dbb {
    background: var(--mlhp-green);
    color: var(--mlhp-white);
    border: none;
    padding: 13px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.mlhp-email-btn-ade72dbb:hover {
    background: var(--mlhp-green-light);
}

.mlhp-email-msg-ade72dbb {
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 600;
}

.mlhp-email-msg-ade72dbb.mlhp-msg-ok-ade72dbb {
    color: var(--mlhp-green);
}

.mlhp-email-msg-ade72dbb.mlhp-msg-err-ade72dbb {
    color: #c62828;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mlhp-products-grid-ade72dbb {
        grid-template-columns: repeat(3, 1fr);
    }
    .mlhp-trust-grid-ade72dbb {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mlhp-hero-title-ade72dbb {
        font-size: 1.7rem;
    }
    .mlhp-cat-grid-ade72dbb {
        grid-template-columns: repeat(3, 1fr);
    }
    .mlhp-products-grid-ade72dbb {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .mlhp-reviews-grid-ade72dbb {
        grid-template-columns: 1fr;
    }
    .mlhp-promo-inner-ade72dbb {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mlhp-hero-ade72dbb {
        padding: 40px 16px 35px;
    }
    .mlhp-hero-title-ade72dbb {
        font-size: 1.4rem;
    }
    .mlhp-hero-sub-ade72dbb {
        font-size: 0.95rem;
    }
    .mlhp-search-form-ade72dbb {
        border-radius: 8px;
    }
    .mlhp-search-btn-ade72dbb {
        padding: 12px 16px;
        border-radius: 0;
    }
    .mlhp-cat-grid-ade72dbb {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .mlhp-products-grid-ade72dbb {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .mlhp-product-info-ade72dbb {
        padding: 10px;
    }
    .mlhp-trust-grid-ade72dbb {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .mlhp-hero-ctas-ade72dbb {
        flex-direction: column;
        align-items: center;
    }
    .mlhp-email-form-ade72dbb {
        flex-direction: column;
        border-radius: 8px;
    }
    .mlhp-email-input-ade72dbb {
        border-bottom: 1px solid var(--mlhp-border);
        text-align: center;
    }
    .mlhp-email-btn-ade72dbb {
        border-radius: 0 0 6px 6px;
    }
    .mlhp-section-title-ade72dbb {
        font-size: 1.3rem;
    }
}
