/**
 * Mind35 Main Stylesheet
 *
 * All front-end styles for the Mind35 child theme.
 *
 * @package Mind35
 */


a:focus {
    color: #111 !important;
}

.m35-btn:hover {
   background: #9400D3 !important;
   color: #fff !important;
}

/* =============================================================================
    Archive and Shop page CSS
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap');

    :root {
        --m35-green: #0b6b3a;
        --m35-green-dark: #0b6b3a;
        --m35-green-2: #0a6336;
        --m35-lime: #9ad000;
        --m35-cream: #eef6e3;
        --m35-white: #ffffff;
        --m35-text: #111111;
        --m35-muted: #4b5563;
        --m35-radius: 14px;
        --m35-shadow: 0 10px 25px rgba(0,0,0,.12);
        --m35-soft-shadow: 0 10px 30px rgba(17,17,17,.05);
        --m35-border: rgba(17,17,17,.08);
    }

    body,
    .woocommerce,
    .woocommerce-page {
        font-family: 'Inter', sans-serif !important;
    }

    /* FULL WIDTH CONTAINER SETUP */
    .m35-category-breadcrumb > nav {
        color: #111 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        margin: 0 0 1.2em !important;
    }

    .m35-category-breadcrumb > nav > a {
        color: #111 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
    }

    .m35-shopall-wrap {
        min-height: 100vh;
        padding-bottom: 80px;
        width: 100%;
        overflow-x: hidden;
        background: #fff;
    }

    .m35-main-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 40px 8%;
        box-sizing: border-box;
    }

    .home .m35-hero {
        margin-bottom: 0px ;
        border-radius: 0;
    }

    /* SHOP PAGE HERO ONLY */
    .m35-hero {
        position: relative;
        border-radius: var(--m35-radius);
        overflow: hidden;
        min-height: 350px;
        background-size: cover;
        background-position: center;
        box-shadow: var(--m35-shadow);
        display: flex;
        align-items: center;
        margin-bottom: 44px;
        width: 100%;
    }

    .m35-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    }

    .m35-hero__content {
        position: relative;
        padding: 40px 60px;
        color: #fff;
        max-width: 800px;
    }

    .m35-hero__kicker {
        color: var(--m35-lime);
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        margin-bottom: 8px;
        letter-spacing: 0.08em;
        font-family: 'Inter', sans-serif;
    }

    .m35-hero__title {
        font-family: 'Playfair Display', serif !important;
        font-size: 64px;
        font-weight: 700;
        line-height: 1;
        margin: 0 0 24px;
        text-transform: uppercase;
        color: #fff !important;
        letter-spacing: -0.02em;
    }

    .m35-hero__btns {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .m35-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        padding: 0 30px 0 30px;
        border-radius: 100px;
        font-weight: 600;
        text-decoration: none;
        font-size: 15px;
        transition: 0.3s;
        font-family: 'Inter', sans-serif !important;
    }

    .m35-btn--solid {
        background: var(--m35-green-dark);
        color: #fff;
    }

    .m35-btn--outline {
        border: 2px solid rgba(255,255,255,0.7);
        color: #fff;
    }

    .m35-btn:hover {
        transform: translateY(-2px);
        opacity: 0.92;
    }

    /* CLEAN ARCHIVE HEADER FOR CATEGORY/TAG/SEARCH */
    .m35-archive-head {
        width: 100%;
        max-width: 900px;
        margin: 0 0 30px 0;
        padding: 0px 0 0;
        text-align: left;
    }

    .m35-archive-title {
        margin: 0 0 10px;
        font-family: "Playfair Display", serif !important;
        font-size: clamp(35px, 5vw, 35px);
        line-height: 1.1;
        font-weight: 600;
        color: var(--m35-text);
        letter-spacing: -0.02em;
    }

    .m35-archive-subtitle {
        margin: 0;
        max-width: 720px;
        font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        font-size: 17px;
        line-height: 1.8;
        color: var(--m35-muted);
        font-weight: 400;
    }

    /* Hide default WooCommerce archive title if theme prints it */
    .woocommerce-products-header,
    .term-description,
    .archive-description {
        display: none !important;
    }

    /* MAIN LOOP / GRID WRAP */
    #m35-archive-grid {
        margin-top: 0;
    }

    /* Products Grid */
    .m35-product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: 0;
        width: 100%;
        row-gap: 30px;
    }

    .m35-product-item {
        height: 100%;
    }

    .m35-stockCard {
        background: #fff;
        border-radius: 16px;
        box-shadow: var(--m35-soft-shadow);
        border: 1px solid var(--m35-border);
        padding: 0 15px 0 15px;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform 0.3s, box-shadow 0.3s;
        text-decoration: none;
        box-sizing: border-box;
    }

    .m35-stockCard:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 34px rgba(17,17,17,.07);
    }

    .m35-stockImgWrap {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 220px;
        width: 100%;
        margin-bottom: 2px;
    }

    .m35-stockImgWrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .m35-stockName {
        font-weight: 600;
        font-size: 17px;
        color: #152015;
        margin-bottom: 12px;
        flex-grow: 1;
        line-height: 1.4;
        font-family: 'Inter', sans-serif;
        text-decoration: none;
        transition: color 0.2s ease;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .m35-stockName:hover {
        color: var(--m35-green);
    }

    .m35-stockPrice {
        font-weight: 600;
        color: var(--m35-green);
        font-size: 20px;
        margin-bottom: 24px;
        font-family: 'Inter', sans-serif;
    }

    .m35-stockBtn {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 46px;
        border-radius: 10px;
        background: var(--m35-green);
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        width: 100%;
        font-family: 'Inter', sans-serif;
    }

    .m35-stockBtn:hover {
        background: var(--m35-green-2);
    }

    /* Load More */
    .m35-load-more-wrap {
        margin-top: 54px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .m35-load-more-btn {
        min-width: auto;
        cursor: pointer;
        border: none;
    }

    .m35-load-more-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
    }

    .m35-loader {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: var(--m35-muted);
        display: none;
    }

    /* Empty state */
    .m35-empty-state {
        text-align: center;
        padding: 60px 0;
    }

    .m35-empty-state h3 {
        margin: 0 0 10px;
        font-family: 'Playfair Display', serif;
        font-size: 34px;
        line-height: 1.2;
        color: var(--m35-text);
    }

    .m35-empty-state p {
        margin: 0;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: var(--m35-muted);
    }


/* =============================================================================
   1. ORDER CONFIRMATION POPUP
   ============================================================================= */

.m35-confirm-overlay {
	position: fixed;
	inset: 0;
	background: rgba( 17, 17, 17, 0.75 );
	backdrop-filter: blur( 5px );
	-webkit-backdrop-filter: blur( 5px );
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 20px;
	opacity: 0;
	animation: m35FadeIn 0.3s ease forwards;
	font-family: 'Inter', system-ui, sans-serif;
}

.m35-confirm-box {
	background: #ffffff;
	border-radius: 16px;
	max-width: 480px;
	width: 100%;
	padding: 40px 32px 32px;
	text-align: center;
	box-shadow: 0 24px 48px rgba( 0, 0, 0, 0.2 );
	transform: translateY( 20px );
	opacity: 0;
	animation: m35SlideUp 0.4s cubic-bezier( 0.16, 1, 0.3, 1 ) 0.1s forwards;
}

@keyframes m35FadeIn {
	to {
		opacity: 1;
	}
}

@keyframes m35SlideUp {
	to {
		transform: translateY( 0 );
		opacity: 1;
	}
}

.m35-confirm-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #eef6e3;
	color: #0b6b3a;
	margin-bottom: 24px;
}

.m35-confirm-icon svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.m35-confirm-box h2 {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 700;
	color: #111111;
	font-family: 'Playfair Display', serif;
	letter-spacing: -0.01em;
}

.m35-confirm-box p {
	margin: 0 0 16px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.6;
}

.m35-confirm-box p.m35-accent-text {
	color: #0b6b3a;
	font-weight: 600;
	margin-bottom: 6px;
}

.m35-confirm-box p.m35-warning-text {
	color: #b45309;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0;
}

.m35-confirm-close {
	margin-top: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 100%;
	border-radius: 12px;
	border: 0;
	background: #0b6b3a;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
}

.m35-confirm-close:hover {
	background: #0a6336;
}

.m35-confirm-close:active {
	transform: scale( 0.98 );
}

/* =============================================================================
   2. TYPOGRAPHY & HEADINGS
   ============================================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
.entry-content :where( h1, h2, h3, h4, h5, h6 ) {
	font-size: 24px;
	margin-bottom: 10px;
}

header.entry-header .entry-title {


}

/* =============================================================================
   3. LAYOUT
   ============================================================================= */

.entry-content {
	word-wrap: break-word;
	margin-top: 110px;
	padding: 0 20px;
}

.ast-plain-container.ast-no-sidebar #primary {
	margin-top: 70px;
}

/* =============================================================================
   4. PRODUCT — TYPOGRAPHY & DESCRIPTION
   ============================================================================= */

.m35-product-short-desc ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.m35-product-short-desc p {
	color: #111 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	line-height: 1.5 !important;
}

.m35-desc-content p {
	color: #111 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	font-weight: 500;
	line-height: 1.5 !important;
}

.m35-desc-content > strong {
	color: #111 !important;
	font-size: 16px !important;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
}

.m35-tab-panel p {
	margin-bottom: 1.15em !important;
}

.m35-product-info p {
	margin-bottom: 0.75em;
}

.woocommerce-variation-description p {
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.5 !important;
}

.woocommerce-variation-availability > p {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #111111 !important;
}

/* =============================================================================
   5. PRODUCT — BREADCRUMB
   ============================================================================= */

.m35-breadcrumb .woocommerce-breadcrumb a {
	color: #111 !important;
}

.m35-breadcrumb .woocommerce-breadcrumb {
	color: #111 !important;
}

/* =============================================================================
   6. PRODUCT — VARIATIONS FORM
   ============================================================================= */

.m35-product-info .variations_form .variations {
	width: 100% !important;
	border: none !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	margin: 0 !important;
}

.m35-product-info .variations_form .variations tbody,
.m35-product-info .variations_form .variations tr {
	display: block !important;
}

.m35-product-info .variations_form .variations tr {
	margin-bottom: 14px !important;
}

.m35-product-info .variations_form .variations tr:last-child {
	margin-bottom: 0 !important;
}

.m35-product-info .variations_form .variations th.label {
	display: block !important;
	padding: 0 0 6px 2px !important;
	border: none !important;
	width: 100% !important;
}

.m35-product-info .variations_form .variations th.label label {
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #111 !important;
}

.m35-product-info .variations_form .variations td.value {
	display: block !important;
	padding: 0 !important;
	border: none !important;
	width: 100% !important;
	position: relative !important;
}

.m35-product-info .variations_form .variations select,
.m35-product-info .class-name {
	width: 100% !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	background: #f6faf4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b6b3a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center !important;
	border: 2px solid #0b6b3a !important;
	border-radius: 120px !important;
	padding: 13px 44px 13px 16px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #222 !important;
	cursor: pointer !important;
	box-sizing: border-box !important;
	height: auto !important;
	line-height: 1.4 !important;
	font-family: inherit !important;
}

.m35-product-info .variations_form .variations select:focus {
	outline: none !important;
	border-color: #0b6b3a !important;
	background-color: #fff !important;
	box-shadow: 0 0 0 3px rgba( 11, 107, 58, 0.1 ) !important;
}

.m35-product-info .variations_form .reset_variations {
	display: inline-block !important;
	margin-top: 6px !important;
	font-size: 13px !important;
	color: #0b6b3a !important;
	text-decoration: underline !important;
	font-weight: 600 !important;
}

.m35-product-info .woocommerce-variation.single_variation {
	font-size: 20px !important;
	font-weight: 600 !important;
	color: #111111 !important;
}

.m35-product-info .single_variation_wrap {
	margin: 0 !important;
	padding: 0 !important;
}

.m35-product-info .variations_button {
	margin: 0 !important;
	padding: 0 !important;
	gap: 10px !important;
}

.m35-product-info .variations_button .quantity {
	margin: 0 !important;
	flex-shrink: 0 !important;
}

.m35-product-info .variations_button .quantity input {
	width: 60px !important;
	height: 40px !important;
	border-radius: 8px !important;
	border: 2px solid #0b6b3a !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-align: center !important;
	background: #f6faf4 !important;
	color: #111 !important;
	padding: 0 !important;
}

.m35-product-info .variations_button .quantity input:focus {
	outline: none !important;
	border-color: #0b6b3a !important;
	background: #fff !important;
}

.m35-product-info .variations_button .single_add_to_cart_button {
	flex: 1 !important;
	height: 50px !important;
	border-radius: 120px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	letter-spacing: 0.3px !important;
}

.m35-product-info .variations_button .single_add_to_cart_button.disabled {
	background: #b0c8b8 !important;
	cursor: not-allowed !important;
	transform: none !important;
	box-shadow: none !important;
}

/* =============================================================================
   7. PRODUCT — STOCK / CTA BUTTON
   ============================================================================= */

.m35-stockBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	padding: 0 24px;
	border-radius: 100px !important;
	background: linear-gradient( 135deg, #0b6b3a 0%, #074d29 100% );
	color: #fff;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.02em;
	width: auto;
	align-self: flex-start;
	margin-bottom: 22px;
	border: none;
	cursor: pointer;
}

.m35-stockBtn::after {
	content: '→';
	font-size: 14px;
}

.m35-stockBtn:focus,
.m35-stockBtn:focus-visible {
	color: #fff !important;
}

.m35-stockBtn:hover {
	background: #9400D3 !important;
	color: #ffffff;
	border: 1px solid #9400D3 !important;
}

/* =============================================================================
   8. PRODUCT — REVIEWS
   ============================================================================= */

.woocommerce-js #reviews .comment-form-comment label,
.woocommerce-js #reviews .comment-form-rating label {
	font-size: 15px !important;
}

.woocommerce-js #reviews #review_form #respond p.comment-form-author input,
.woocommerce-js #reviews #review_form #respond p.comment-form-email input {
	border-radius: 12px !important;
}

.woocommerce-js #reviews #review_form {
	border: unset !important;
	padding: 0 !important;
}

.wcpr-form-description {
	margin-bottom: 10px !important;
}

.wcpr-gdpr-policy {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	padding: 15px 20px;
	border-radius: 10px;
	margin-bottom: 25px !important;
	border: 1px solid #e0e0e0;
}

.m35-reviews-wrap #review_form label {
	margin-bottom: 0 !important;
	font-weight: 600 !important;
}

.wcpr-filter-container .wcpr-filter-button {
	background-color: var( --ast-global-color-0 ) !important;
	border-radius: 5px;
	color: #fff !important;
}

.wcpr-filter-container .wcpr-filter-button.wcpr-active {
	background-color: var( --ast-global-color-0 );
}

.wcpr-filter-container .wcpr-filter-button:hover {
	background-color: #9400D3 !important;
}

/* =============================================================================
   9. GLOBAL BUTTONS & HOVER STATES
   ============================================================================= */

button:focus,
.menu-toggle:hover,
button:hover,
.ast-button:hover,
.ast-custom-button:hover,
.button:hover,
input[type=reset]:hover,
input[type=reset]:focus,
input#submit:hover,
input#submit:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
form[class*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover,
form[class*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus,
body .wp-block-file .wp-block-file__button:hover,
body .wp-block-file .wp-block-file__button:focus,
.woocommerce-js a.button:hover,
.woocommerce button.button:hover,
.woocommerce .woocommerce-message a.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce input.button:hover,
.woocommerce button.button.alt.disabled:hover,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link:hover,
[class*="wc-block"] button:hover,
.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons .button:not( .checkout ):not( .ast-continue-shopping ):hover,
.woocommerce-js .astra-cart-drawer .astra-cart-drawer-content .woocommerce-mini-cart__buttons a.checkout:hover,
.woocommerce button.button.alt.disabled.wc-variation-selection-needed:hover,
[class*="wc-block"] .wc-block-components-button:hover,
[class*="wc-block"] .wc-block-components-button:focus {
	color: #ffffff;
	background-color: #9400D3 !important;
}

.add_to_cart_button {
	border-radius: 100px !important;
}

.return-to-shop a {
	border-radius: 100px !important;
}

.m35-btn.primary:hover {
	background: #9400D3 !important;
	color: #ffffff;
	border: 1px solid #9400D3 !important;
}

.m35-form-submit:hover {
	background: #9400D3 !important;
	color: #ffffff;
	border: 1px solid #9400D3 !important;
}

.m35-phone-cta:hover {
	background: #9400D3;
	color: #ffffff;
}

.m35-menu-btn:hover {
	color: #9400d3 !important;
}

/* =============================================================================
   10. WOOCOMMERCE NOTICES
   ============================================================================= */

.woocommerce-notices-wrapper {
	margin: 26px 0 0;
}

.m35-notices-wrap .woocommerce-message {
	padding: 18px 22px 18px 52px !important;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 24px !important;
	border: 1px solid rgba( 17, 17, 17, 0.16 ) !important;
	border-top: 4px solid #0b6b3a !important;
	border-radius: 14px;
	background: #ffffff !important;
	color: #111111 !important;
	box-shadow: 0 10px 30px rgba( 17, 17, 17, 0.06 );
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	list-style: none;
	box-sizing: border-box;
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
	position: absolute !important;
	left: 20px !important;
	top: 50% !important;
	transform: translateY( -50% );
	margin: 0 !important;
	line-height: 1 !important;
	font-size: 18px !important;
}

.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
	order: 2;
	margin: 0 0 0 auto !important;
	flex: 0 0 auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px !important;
	border-radius: 9px !important;
	background: #0b6b3a !important;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	box-shadow: none !important;
}

.woocommerce-message .button:hover,
.woocommerce-error .button:hover,
.woocommerce-info .button:hover {
	background: #9400D3 !important;
	color: #ffffff !important;
}

.woocommerce-message a:not( .button ),
.woocommerce-error a:not( .button ),
.woocommerce-info a:not( .button ) {
	color: inherit;
}

/* =============================================================================
   11. WOOCOMMERCE — QUANTITY INPUT
   ============================================================================= */

.woocommerce-js .quantity .qty {
	border: 1px solid #111;
	border-radius: 14px;
	background: transparent;
}

/* =============================================================================
   12. WOOCOMMERCE — FORM FIELDS (GLOBAL)
   ============================================================================= */

.required {
	color: #f44336;
	font-weight: bold;
}

.woocommerce form .form-row input.input-text {
	padding: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 100px !important;
	font-size: 16px;
	transition: 0.3s;
	background: transparent !important;
}

.form-row label .required {
	color: #ef4444;
	text-decoration: none;
	margin-left: 2px;
}

.form-row label .optional {
	color: #9ca3af;
	font-weight: normal;
	font-size: 0.8rem;
}

.form-row .input-text:focus,
.form-row select:focus,
.form-row textarea:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba( 16, 185, 129, 0.15 );
	background-color: #ffffff;
}

/* =============================================================================
   13. WOOCOMMERCE — LOGIN / REGISTER FORMS
   ============================================================================= */

body .woocommerce form.login,
body .woocommerce form.checkout_coupon,
body .woocommerce form.register {
	border-radius: 25px !important;
	background: #eee;
}

.woocommerce-form-login__submit:hover {
	background: #9400D3 !important;
}

.woocommerce-form__input-checkbox {
	width: 16px !important;
	height: 14px !important;
}

.woocommerce-form-login__rememberme {
	margin: 0 !important;
}

.woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.05rem !important;
	font-weight: 600 !important;
	cursor: pointer;
	margin: 10px 0;
	color: #111827 !important;
}

#account_password {
	border-radius: 100px;
}

/* =============================================================================
   14. WOOCOMMERCE — BILLING FIELDS
   ============================================================================= */

.woocommerce-billing-fields__field-wrapper label {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin: 0 12px !important;
	transition: color 0.2s ease !important;
	line-height: 1.5 !important;
}

.woocommerce-billing-fields__field-wrapper label .required {
	color: #ef4444 !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	margin-left: 0.125rem !important;
}

.woocommerce-billing-fields__field-wrapper label .optional {
	color: #94a3b8 !important;
	font-weight: 400 !important;
	font-size: 0.75rem !important;
	margin-left: 0.25rem !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper {
	display: block !important;
	position: relative !important;
	width: 100% !important;
}

.woocommerce-billing-fields__field-wrapper .input-text {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height: 50px !important;
}

.woocommerce-billing-fields__field-wrapper .input-text:hover {
	background-color: #ffffff !important;
}

.woocommerce-billing-fields__field-wrapper .input-text:focus {
	border-color: #0b6b3a !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba( 11, 107, 58, 0.1 ) !important;
}

.woocommerce-billing-fields__field-wrapper .input-text::placeholder {
	color: #94a3b8 !important;
	opacity: 1 !important;
}

.woocommerce-billing-fields__field-wrapper .input-text:-webkit-autofill,
.woocommerce-billing-fields__field-wrapper .input-text:-webkit-autofill:hover,
.woocommerce-billing-fields__field-wrapper .input-text:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 50px white inset !important;
	-webkit-text-fill-color: #111 !important;
	transition: background-color 5000s ease-in-out 0s !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid .input-text,
.woocommerce-billing-fields__field-wrapper .woocommerce-invalid-required-field .input-text {
	border-color: #ef4444 !important;
	background-color: #fef2f2 !important;
	color: #7f1d1d !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid .input-text::placeholder {
	color: #fca5a5 !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid .input-text:focus {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 4px rgba( 239, 68, 68, 0.2 ) !important;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-invalid label {
	color: #dc2626 !important;
}

.woocommerce-billing-fields__field-wrapper .screen-reader-text {
	border: 0 !important;
	clip: rect( 1px, 1px, 1px, 1px ) !important;
	clip-path: inset( 50% ) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	word-wrap: normal !important;
}

.is-us-country select {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height: 50px !important;
}

/* =============================================================================
   15. WOOCOMMERCE — SHIPPING FIELDS
   ============================================================================= */

.woocommerce-shipping-fields__field-wrapper label {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin: 0 12px !important;
	transition: color 0.2s ease !important;
	line-height: 1.5 !important;
}

.woocommerce-shipping-fields__field-wrapper label .required {
	color: #ef4444 !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	margin-left: 0.125rem !important;
}

.woocommerce-shipping-fields__field-wrapper label .optional {
	color: #94a3b8 !important;
	font-weight: 400 !important;
	font-size: 0.75rem !important;
	margin-left: 0.25rem !important;
}

.woocommerce-shipping-fields__field-wrapper .woocommerce-input-wrapper {
	display: block !important;
	position: relative !important;
	width: 100% !important;
}

.woocommerce-shipping-fields__field-wrapper .input-text {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height: 50px !important;
}

.woocommerce-shipping-fields__field-wrapper .input-text:focus {
	border-color: #0b6b3a !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba( 11, 107, 58, 0.1 ) !important;
}

.woocommerce-shipping-fields__field-wrapper .woocommerce-invalid .input-text,
.woocommerce-shipping-fields__field-wrapper .woocommerce-invalid-required-field .input-text {
	border-color: #ef4444 !important;
	background-color: #fef2f2 !important;
	color: #7f1d1d !important;
}

.is-us-country-shippings select {
	border-radius: 100px !important;
	border: 1px solid #e2e8f0 !important;
	background-color: #f8fafc !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.875rem !important;
	color: #111 !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	height: 50px !important;
}

/* =============================================================================
   16. WOOCOMMERCE — CHECKOUT PAGE
   ============================================================================= */

.page-id-20 {
	background: #eee !important;
}

#customer_details .form-row {
	margin: 0 0 16px;
}

.is-user-reg .form-row-first,
.is-user-reg .form-row-last {
	display: none;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review {
	background: #fff;
	padding: 20px 20px 40px 20px;
	border-radius: 12px;
}

.woocommerce .woocommerce-billing-fields,
.woocommerce .woocommerce-shipping-fields,
.woocommerce-page .woocommerce-billing-fields,
.woocommerce-page .woocommerce-shipping-fields {
	zoom: 1;
	background: #fff;
	margin-top: 30px;
	border-radius: 12px;
	padding: 20px 20px 40px 20px;
	margin-bottom: 30px;
}

.woocommerce.woocommerce-checkout form #customer_details.col2-set,
.woocommerce-page.woocommerce-checkout form #customer_details.col2-set {
	width: 58%;
	margin-right: 0.347826087%;
}

#customer_details h3:not( .elementor-widget-woocommerce-checkout-page h3 ) {
	font-size: 30px;
	text-transform: capitalize;
}

form #order_review_heading:not( .elementor-widget-woocommerce-checkout-page #order_review_heading ) {
	border-style: none;
	border-color: transparent;
	font-size: 30px;
	text-align: left;
	padding: 40px 0 25px 0;
}

form #order_review:not( .elementor-widget-woocommerce-checkout-page #order_review ) {
	border-style: unset;
}

#place_order {
	min-height: unset !important;
	border-radius: 100px !important;
	background: #0b6b3a !important;
	border: 0 !important;
	font-family: Inter, Arial, sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
}

#place_order:hover {
	color: #ffffff;
	background-color: #9400D3 !important;
}

.page-id-20 #coupon_code {
	width: 100%;
	height: 44px;
	padding: 0 16px 0 42px !important;
	border-radius: 50px !important;
	border: 1px solid #eaeaea !important;
	background: #fafafa !important;
	font-size: 14px !important;
	font-weight: 500;
	transition: all 0.25s ease;
}

.page-id-20 button[name="apply_coupon"] {
	height: 44px;
	padding: 0 18px;
	border-radius: 50px;
	border: none;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2px;
	cursor: pointer;
	transition: all 0.25s ease;
	text-transform: capitalize;
}

.page-id-20 .woocommerce-checkout-review-order-table .cart-subtotal {
	background: #9400d3 !important;
}

.page-id-20 .woocommerce-checkout-review-order-table .cart-subtotal th {
	color: #fff !important;
	padding: 0 10px !important;
}

/* Checkout delivery notice */
.m35-checkout-notice {
	background: #f7f7f7;
	padding: 15px;
	border-left: 4px solid #000000;
	margin-bottom: 20px;
	font-size: 16px;
}

.m35-checkout-notice a {
	font-weight: bold;
	text-decoration: underline;
}

.m35-checkout-notice a:hover,
.custom-checkout-notice a:hover {
	color: #9400d3 !important;
}

/* Custom WooCCM field buttons */
#billing_wooccm11_button,
#billing_wooccm12_button {
	background: transparent;
	border: 1px solid #9400D3;
	color: #000;
	border-radius: 100px;
}

#billing_wooccm11_button:hover,
#billing_wooccm12_button:hover {
	color: #fff !important;
}

#wooccm_order_attachment_update {
	padding: 15px !important;
}

/* File upload button */
.wooccm-file-button {
	background-color: #111827;
	color: #ffffff;
	border: none;
	padding: 14px 20px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-align: center;
	box-shadow: 0 2px 4px rgba( 0, 0, 0, 0.1 );
}

/* =============================================================================
   17. WOOCOMMERCE — CART PAGE
   ============================================================================= */

.page-id-19 .woocommerce-cart-form,
.page-id-19 .cart-collaterals {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.06 );
	margin-bottom: 30px;
}

.shop_table_responsive tr {
	background: #eee;
	border: none !important;
	color: #111 !important;
	font-family: 'Inter', sans-serif;
	font-weight: 400 !important;
}

.shop_table_responsive a {
	color: #111;
}

.woocommerce-js a.remove .ahfb-svg-iconset {
	margin-top: 2px !important;
}

.woocommerce-js a.remove::before {
	border: 1px solid #9400d3;
}

.woocommerce-cart-form__cart-item td.product-remove a.remove {
	width: 30px;
	height: 30px;
}

.page-id-19 .coupon .button {
	border-radius: 50px;
	padding: 10px 18px;
	background: linear-gradient( 135deg, #0b5f3a, #0b5f3a );
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	border: none;
}

.page-id-19 .coupon input.input-text {
	flex: 1;
	border: none;
	outline: none;
	padding: 12px 16px;
	border-radius: 50px;
	font-size: 14px;
	background: transparent;
}

.page-id-19 .coupon input::placeholder {
	color: #aaa;
}

.page-id-19 .coupon .button:hover {
	background: #9400d3 !important;
}

.woocommerce #content table.cart td.actions .button,
.woocommerce table.cart td.actions .button,
.woocommerce-page #content table.cart td.actions .button,
.woocommerce-page table.cart td.actions .button {
	margin-left: 5px;
	border-radius: 50px;
	padding: 10px 18px;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	border: none;
}

.woocommerce #content table.cart img,
.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img {
	border-radius: 12px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	padding: 10px;
	border-radius: 999px;
}

.cart-subtotal {
	background: #0a5e34 !important;
}

.cart-subtotal th {
	color: #fff !important;
}

.cart-subtotal td {
	color: #fff !important;
}

/* =============================================================================
   18. ID VERIFICATION BLOCK
   ============================================================================= */

.m35-id-wrap {
	display: none;
}

.m35-id-verification-wrap {
	background-color: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 1rem !important;
	padding: 1.5rem !important;
	margin-top: 2rem !important;
	margin-bottom: 2rem !important;
	box-sizing: border-box !important;
}

.m35-id-verification-wrap h3 {
	grid-column: span 2 !important;
	margin: 0 !important;
	font-size: 25px !important;
	font-weight: 700 !important;
	color: #111 !important;
}

.IDVerification h3 {
	font-size: 25px !important;
}

.m35-id-verification-wrap > p:not( .form-row ) {
	grid-column: span 2 !important;
	margin: 0 0 1rem 0 !important;
	font-size: 0.875rem !important;
	color: #64748b !important;
}

.m35-id-verification-wrap label {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	color: #111 !important;
	margin-bottom: 0.5rem !important;
}

.m35-id-verification-wrap label .required {
	color: #ef4444 !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	margin-left: 0.125rem !important;
}

.m35-id-verification-wrap input[type="file"] {
	display: block !important;
	width: 100% !important;
	padding: 0.5rem !important;
	background-color: #ffffff !important;
	border: 2px dashed #cbd5e1 !important;
	border-radius: 0.75rem !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	color: #111 !important;
	font-size: 0.875rem !important;
	box-sizing: border-box !important;
}

.m35-id-verification-wrap input[type="file"]:hover,
.m35-id-verification-wrap input[type="file"]:focus {
	border-color: #0b6b3a !important;
	background-color: #f0fdf4 !important;
	outline: none !important;
}

.m35-id-verification-wrap input[type="file"]::file-selector-button {
	background-color: #9400d3 !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 100px !important;
	padding: 0.5rem 1rem !important;
	margin-right: 1rem !important;
	font-weight: 600 !important;
	font-size: 0.875rem !important;
	cursor: pointer !important;
	transition: background-color 0.2s ease !important;
}

.m35-id-verification-wrap input[type="file"]::file-selector-button:hover {
	background-color: #08522c !important;
}

/* =============================================================================
   19. CART COUNT & HEADER
   ============================================================================= */

.m35-cart-count {
	right: 0 !important;
	top: -2px !important;
}

/* =============================================================================
   20. SHOP / CATEGORY GRID
   ============================================================================= */

.mind35-all-shop-transition .m35-cat-card:hover {
	transform: translateY( -8px );
	box-shadow: 0 20px 50px rgba( 0, 0, 0, 0.12 );
}

/* =============================================================================
   21. ADMIN — HOMEPAGE PRODUCT SECTIONS META BOX
   ============================================================================= */

.m35-home-products-wrap {
	display: grid;
	gap: 28px;
}

.m35-home-products-card {
	padding: 18px;
	border: 1px solid #dcdcde;
	background: #fff;
	border-radius: 6px;
}

.m35-home-products-card h3 {
	margin: 0 0 10px;
}

.m35-home-products-card p.desc {
	margin: 0 0 14px;
	color: #50575e;
}

.m35-home-products-card .select2-container,
.m35-home-products-card .selectWoo-container {
	width: 100% !important;
	max-width: 900px;
}

.m35-home-products-note {
	margin-top: 10px;
	color: #646970;
	font-size: 12px;
}


/* Responsive */
    @media (min-width: 1600px) {
        .m35-product-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 1024px) {
        .m35-main-container {
            padding: 30px 40px;
        }
        .m35-product-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .m35-stockCard {
            padding: 24px;
        }
        .m35-hero__title {
            font-size: 52px;
        }
        .m35-archive-head {
            margin-bottom: 40px;
        }
    }


/* =============================================================================
   22. RESPONSIVE — max-width: 900px
   ============================================================================= */

@media ( max-width: 900px ) {

	.m35-service-area {
		display: none;
	}

	.m35-right-group {
		flex-grow: 1;
		justify-content: flex-end;
	}

}

/* =============================================================================
   23. RESPONSIVE — max-width: 800px
   ============================================================================= */

@media ( max-width: 800px ) {

	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last,
	.woocommerce-page form .form-row-first,
	.woocommerce-page form .form-row-last {
		width: 100% !important;
	}

	#customer_details.col2-set {
		width: 100% !important;
		float: none !important;
		margin-right: 0.347826087%;
		display: grid !important;
	}

	.m35-id-verification-wrap .form-row {
		grid-column: span 2 !important;
	}

	.m35-cart-count {
		top: -5px !important;
		right: 4px !important;
	}

	.woocommerce-message,
	.woocommerce-error,
	.woocommerce-info {
		display: block;
		padding: 16px 16px 16px 46px !important;
		font-size: 15px;
	}

	.woocommerce-message::before,
	.woocommerce-error::before,
	.woocommerce-info::before {
		left: 16px !important;
		top: 18px !important;
		transform: none;
	}

	.woocommerce-message .button,
	.woocommerce-error .button,
	.woocommerce-info .button {
		display: inline-flex !important;
		margin: 14px 0 0 !important;
		width: auto;
	}

}

@media (max-width: 768px) {
        .m35-main-container {
            padding: 25px 25px;
        }
        .m35-product-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .m35-hero__content {
            padding: 30px;
        }
        .m35-archive-head {
            margin-bottom: 30px;
        }
        .m35-archive-subtitle {
            font-size: 16px;
            line-height: 1.75;
        }
        .m35-stockCard {
            padding: 20px;
        }
        .m35-stockImgWrap {
            height: auto;
            margin-bottom: 1px;
        }
    }



/* =============================================================================
   24. RESPONSIVE — max-width: 600px
   ============================================================================= */

@media ( max-width: 600px ) {

	.m35-header {
		padding: 12px 16px;
		gap: 12px;
	}

	.m35-brand img {
		max-height: 32px;
	}

	.m35-right-group {
		gap: 12px;
	}

	.m35-phone-prefix {
		display: none;
	}

	.m35-phone-cta {
		font-size: 0.9rem;
		gap: 4px;
	}

	.m35-phone-cta svg {
		width: 14px;
		height: 14px;
	}

	.m35-divider {
		margin: 0;
	}

	.m35-actions {
		gap: 12px;
	}

	.m35-icon-btn svg {
		width: 24px;
		height: 24px;
	}

	.m35-menu-btn {
		padding: 6px 12px;
		font-size: 0.85rem;
	}

}


@media (max-width: 480px) {
        .m35-main-container {
            padding: 20px 15px;
        }
        .m35-product-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .m35-hero {
            min-height: 280px;
        }
        .m35-hero__title {
            font-size: 40px;
        }
        .m35-hero__content {
            padding: 20px;
        }
        .m35-archive-head {
            margin-bottom: 26px;
        }
        .m35-archive-title {
            font-size: 38px;
        }
    }


/* =============================================================================
   25. RESPONSIVE — max-width: 400px
   ============================================================================= */

@media ( max-width: 400px ) {

	.m35-header {
		padding: 10px;
		gap: 8px;
	}

	.m35-brand img {
		max-height: 42px;
	}

	.m35-phone-cta {
		font-size: 0.8rem;
	}

	.m35-right-group,
	.m35-actions {
		gap: 8px;
	}

	.m35-menu-btn {
		padding: 6px 10px;
	}

}






/* =========================================================
   BLOG PAGE TEMPLATE — CSS
   Add to your existing stylesheet.
   BEM: .blog-page, .blog-grid, .blog-card
   ========================================================= */

/* ---------- Page wrapper ---------- */
.blog-page {
  width: 100%;
  padding: 2rem 0rem 2rem;
  box-sizing: border-box;
}

/* ---------- Header ---------- */
.blog-page__header {
  max-width: 760px;
  margin: 0 auto 1rem;
  text-align: center;
}

.blog-page__title {
  font-size: clamp(2rem, 5vw, 2.80rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: #111;
  font-family: "Playfair Display", Sans-serif !important;
}

.blog-page__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  margin: 0;
  line-height: 1.6;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  color: #4b5563!important;
  font-weight: 400!important;
}

/* ---------- Container ---------- */
.blog-page__container {
  max-width: 1240px;
  margin: 0 auto;
}

/* ---------- Grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 15px !important;
  row-gap: 35px !important;
}

/* ---------- Card ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;

  /* Fade-in start state (JS adds .blog-card--visible) */
  opacity: 0;
  transform: translateY(16px);
}

.blog-card--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease,
              box-shadow 0.25s ease;
}

/* Fallback: no JS / no IntersectionObserver support */
@media (prefers-reduced-motion: reduce) {
  .blog-card {
    opacity: 1;
    transform: none;
  }
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

/* ---------- Featured image ---------- */
.blog-card__image-link {
  display: block;
}

.blog-card__image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.04);
}

/* ---------- Body ---------- */
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
  gap: 0.6rem;
}

/* ---------- Title ---------- */
.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.blog-card__title-link {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: "Inter", Sans-serif !important;
  font-size: 18px!important;
  font-weight: 500 !important;
  font-style: normal;
}

.blog-card__title-link:hover {
  color: #111 !important; /* swap to your brand color */
}

/* ---------- Excerpt ---------- */
.blog-card__excerpt {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  font-family: "Inter", Sans-serif !important;
  font-size: 15px!important;
  font-weight: 500 !important;
  font-style: normal;
}

/* ---------- Read more link ---------- */
.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #0b6b3a; /* swap to your brand color */
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  font-family: "Inter", Sans-serif !important;
  font-size: 14px !important;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-card__read-more:hover {
  gap: 0.55rem;
  color: #9400d3;
}

/* ---------- No-image variant ---------- */
.blog-card--no-image .blog-card__body {
  padding-top: 1.75rem;
}

/* ---------- No posts ---------- */
.blog-page__no-posts {
  text-align: center;
  color: #888;
  font-size: 1rem;
  padding: 3rem 0;
}


/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    row-gap: 35px;
  }

  .blog-page__header {
    margin-bottom: 2rem;
  }
}



