/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * 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.
 */
/* FAQ Wrapper */
.belaur-faq {
    max-width: 900px;
    margin: 30px auto 0;
}

/* FAQ Item */
.belaur-faq__item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.belaur-faq__item:hover {
    border-color: #cbd5e1;
}

/* Open state */
.belaur-faq__item[open] {
    border-color: #d1d5db;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Question */
.belaur-faq__item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 24px;
    cursor: pointer;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    color: #1f2937;

    list-style: none;
}

/* Remove default marker */
.belaur-faq__item summary::-webkit-details-marker {
    display: none;
}

.belaur-faq__item summary::marker {
    display: none;
}

/* Plus icon */
.belaur-faq__item summary::after {
    content: "+";

    flex: 0 0 32px;
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f3f4f6;

    font-size: 22px;
    font-weight: 400;
    line-height: 1;

    color: #374151;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

/* Open icon */
.belaur-faq__item[open] summary::after {
    content: "−";
    background: #012241;
    color: #fff;
}

/* Answer */
.belaur-faq__answer {
    padding: 0 24px 22px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* Remove unwanted first/last margins */
.belaur-faq__answer p {
    margin-top: 0;
}

.belaur-faq__answer p:last-child {
    margin-bottom: 0;
}

/* FAQ heading */
.belaur-faq+* {
    margin-top: 30px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #012241;
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 767px) {

    .belaur-faq {
        margin-top: 20px;
    }

    .belaur-faq__item {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .belaur-faq__item summary {
        padding: 16px 18px;
        font-size: 15px;
        gap: 12px;
    }

    .belaur-faq__item summary::after {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .belaur-faq__answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    h2 {
        font-size: 26px;
    }
}

/* =========================================
   Belaur Blog Archive
   ========================================= */

#content.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 90px;
}

/* -----------------------------------------
   Archive Header
   ----------------------------------------- */

#content .page-header {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

#content .page-header .entry-title {
    margin: 0;
    color: #012241;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

#content .page-header::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    margin: 20px auto 0;
    background: #012241;
    border-radius: 10px;
}

/* -----------------------------------------
   Posts Grid
   ----------------------------------------- */

body.blog #content .page-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* -----------------------------------------
   Post Card
   ----------------------------------------- */

#content .page-content article.post {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 30px;

    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;

    box-shadow: 0 4px 18px rgba(1, 34, 65, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Hover */
#content .page-content article.post:hover {
    transform: translateY(-5px);
    border-color: #d1d5db;
    box-shadow: 0 12px 30px rgba(1, 34, 65, 0.12);
}

/* -----------------------------------------
   Post Title
   ----------------------------------------- */

#content .page-content article.post .entry-title {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 650;
    line-height: 1.4;
}

#content .page-content article.post .entry-title a {
    color: #012241;
    text-decoration: none;
    transition: color 0.2s ease;
}

#content .page-content article.post:hover .entry-title a {
    color: #315b7d;
}

/* -----------------------------------------
   Excerpt
   ----------------------------------------- */

#content .page-content article.post p {
    margin: 0;

    color: #667085;
    font-size: 15px;
    line-height: 1.75;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

/* -----------------------------------------
   Read More
   ----------------------------------------- */

#content .page-content article.post::after {
    content: "Read article →";

    margin-top: auto;
    padding-top: 25px;

    color: #012241;
    font-size: 14px;
    font-weight: 600;

    transition: transform 0.2s ease;
}

#content .page-content article.post:hover::after {
    transform: translateX(4px);
}

/* -----------------------------------------
   Tablet
   ----------------------------------------- */

@media (max-width: 991px) {

    #content.site-main {
        padding: 55px 20px 70px;
    }

    #content .page-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    #content .page-content article.post {
        padding: 25px;
    }
}

/* -----------------------------------------
   Mobile
   ----------------------------------------- */

@media (max-width: 600px) {

    #content.site-main {
        padding: 40px 16px 60px;
    }

    #content .page-header {
        margin-bottom: 32px;
    }

    #content .page-header .entry-title {
        font-size: 32px;
    }

    #content .page-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #content .page-content article.post {
        padding: 22px;
        border-radius: 12px;
    }

    #content .page-content article.post .entry-title {
        font-size: 19px;
    }

    #content .page-content article.post p {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }
}

/* Single Blog Post */
.single-post #content.site-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 20px 90px;
}

/* Post title */
.single-post .page-header {
    margin-bottom: 45px;
    text-align: center;
}

.single-post .page-header .entry-title {
    max-width: 900px;
    margin: 0 auto;

    color: #012241;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Decorative line */
.single-post .page-header::after {
    content: "";
    display: block;

    width: 60px;
    height: 3px;

    margin: 22px auto 0;

    background: #012241;
    border-radius: 10px;
}

/* =========================================
   Belaur Product Grid
========================================= */

.belaur-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
}


/* =========================================
   Product Card
========================================= */

.belaur-product-card {
    min-width: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;

    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.belaur-product-card:hover {
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.16);
}


/* =========================================
   Entire Card Link
========================================= */

.belaur-product-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}


/* =========================================
   Product Image
========================================= */

.belaur-product-card__image {
    width: 100%;
    overflow: hidden;
}

.belaur-product-card__image img {
    width: 100%;
    height: 255px !important;
    object-fit: contain;
    object-position: center center;
}



/* =========================================
   Content
========================================= */

.belaur-product-card__content {
    padding: 20px;
}


/* =========================================
   Product Title
========================================= */

.belaur-product-card__title {
    margin: 0 0 10px;

    color: #012241;

    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================
   Description
========================================= */

.belaur-product-card__description {
    color: #555;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 1024px) {

    .belaur-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {

    .belaur-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .belaur-product-card__title {
        font-size: 20px;
    }

}

.belaur-products-grid .belaur-product-card__title {
    font-family: "Playfair Display", Sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 40px;
    color: #E0A44E;
}

.belaur-view-products-btn {
    background: #e0a44e;
    padding: 10px 65px;
    border-radius: 10px;
    color: #fff;
}

.belaur-view-products-btn:hover {
    box-shadow: 0 4px 18px rgba(1, 34, 65, 0.25) !important;
    color: #fff;
}

.belaur-view-pro-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* =========================================
   Belaur WooCommerce Product Grid
   ========================================= */

ul.products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin: 0 !important;
    padding: 0 !important;
}

ul.products.columns-4::before,
ul.products.columns-4::after {
    display: none !important;
}

/* Product card */
ul.products.columns-4 li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 0 22px !important;

    display: flex;
    flex-direction: column;

    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* Hover */
ul.products.columns-4 li.product:hover {
    transform: translateY(-5px);
    border-color: #d9dde2;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}

/* Product link */
ul.products.columns-4 li.product .woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
}

/* Image wrapper effect */
ul.products.columns-4 li.product img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    display: block;

    margin: 0 !important;
    padding: 20px;

    background: #f7f8f9;

    transition: transform 0.3s ease;
}

ul.products.columns-4 li.product:hover img {
    transform: scale(1.04);
}

/* Product title */
ul.products.columns-4 li.product .woocommerce-loop-product__title {
    margin: 0 !important;
    padding: 20px 20px 12px !important;

    font-size: 20px !important;
    line-height: 1.3;
    font-weight: 600;

    color: #012241;
    text-align: left;
}

/* Read more button */
ul.products.columns-4 li.product .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    align-self: flex-start;

    margin: 0 20px !important;
    padding: 11px 22px !important;

    min-height: 44px;

    border: 1px solid #e0a44e;
    border-radius: 8px;

    background: #e0a44e;
    color: #fff;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

ul.products.columns-4 li.product .button:hover {
    background: transparent;
    color: #e0a44e;
    transform: translateY(-1px);
}

/* =========================================
   Tablet
   ========================================= */

@media (max-width: 991.98px) {

    ul.products.columns-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    ul.products.columns-4 li.product img {
        height: 230px;
    }

}

/* =========================================
   Mobile
   ========================================= */

@media (max-width: 767.98px) {

    ul.products.columns-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    ul.products.columns-4 li.product {
        border-radius: 12px;
        padding-bottom: 16px !important;
    }

    ul.products.columns-4 li.product img {
        height: 190px;
        padding: 12px;
    }

    ul.products.columns-4 li.product .woocommerce-loop-product__title {
        padding: 14px 14px 10px !important;
        font-size: 17px !important;
    }

    ul.products.columns-4 li.product .button {
        margin: 0 14px !important;
        padding: 9px 15px !important;
        min-height: 40px;
        font-size: 13px;
    }

}

/* =========================================
   Small Mobile
   ========================================= */

@media (max-width: 480px) {

    ul.products.columns-4 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    ul.products.columns-4 li.product img {
        height: 240px;
    }

}

footer {
    margin-top: 25px;
}
/* =========================
   BLOG POSTS
========================= */

.belaur-shortcode-posts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

/* CARD */
.belaur-shortcode-post {
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    height: auto;
}

/* IMAGE */
.belaur-shortcode-post__image {
    width: 100%;
}

.belaur-shortcode-post__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.belaur-shortcode-post__content {
    display: flex;
    flex-direction: column;
    padding: 25px;
}

/* TITLE */
.belaur-shortcode-post__title {
    margin: 0 0 15px;
}

/* SHORT CONTENT */
.belaur-shortcode-post__text {
    height: 120px;
    overflow: hidden;
    line-height: 1.7;
}

/* ONLY CLICKED CARD EXPANDS */
.belaur-shortcode-post__content.is-expanded
.belaur-shortcode-post__text {
    height: auto;
    overflow: visible;
}

/* READ MORE */
.belaur-shortcode-post__readmore {
    margin-top: 15px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    border-color: #E0A44E!important;
    background-color: #E0A44E!important;
    color: #fff!important;
}
.belaur-shortcode-post__readmore:hover {
    background: #fff!important;
    color: #000!important;
}

/* TABLET */
@media (max-width: 1024px) {
    .belaur-shortcode-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .belaur-shortcode-posts {
        grid-template-columns: 1fr;
    }
}
.belaur-shortcode-post{
    border: 1px solid lightgray;
    border-radius: 10px;
}