:root {
    --em-font__main: 'Albert Sans', Arial, sans-serif;
    --em-color__primary: #61b482;
    --em-color__base: #366b11;
    --em-color__dark: #253d4e;
    --em-color__light: #ffffff;
    --em-button-bg-color: #366b11;
    --em-button-bg-color-hover: #3d850a;
    --em-button-color: #ffffff;
    --em-button-rounded: 30px;
    --em-input-rounded: 30px;
    --em-border-color: #EBEBEB;
    --em-image-rounded: 10px;
    --em-color-price-sale: #db1215;
    --em-link-color: #253d4e;
    --em-link-color-hover: #61b482;
    --em-heading-color: #253d4e;
    --em-button-padding-top: 15px;
    --em-button-padding-right: 20px;
    --em-button-padding-bottom: 14px;
    --em-button-padding-left: 20px;
    --em-button-font-size: 14px;
    --em-button-font-weight: 600;
    --em-container: 1290px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--em-font__main);
    color: var(--em-color__dark);
    font-size: 14px;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

a {
    color: var(--em-link-color);
    text-decoration: none;
    transition: 0.4s;
}

a:hover {
    color: var(--em-link-color-hover);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.em-container {
    max-width: var(--em-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Campaign Bar */
.campaign-bar {
    background: #0b6b00;
    color: #fff;
    padding: 8px 0;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.campaign-bar .swiper {
    overflow: hidden;
}

.campaign-bar .swiper-wrapper {
    transition-timing-function: linear !important;
}

.campaign-bar__box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-bar__close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    padding: 5px;
}

.campaign-bar__close svg {
    width: 14px;
    height: 14px;
    display: block;
}

/* Buttons */
.em-button {
    font-size: var(--em-button-font-size);
    background-color: var(--em-button-bg-color);
    color: var(--em-button-color);
    border: 1px solid var(--em-button-bg-color);
    padding: var(--em-button-padding-top) var(--em-button-padding-right) var(--em-button-padding-bottom) var(--em-button-padding-left);
    line-height: 1;
    border-radius: var(--em-button-rounded);
    font-weight: var(--em-button-font-weight);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.25s;
    text-decoration: none;
}

.em-button:hover {
    background-color: var(--em-button-bg-color-hover);
    border-color: var(--em-button-bg-color-hover);
    color: #fff;
}

.em-button i {
    font-size: 12px;
}

/* Header Desktop */
.site-header__desktop {
    display: block;
}

.site-header__mobile {
    display: none;
}

.header-main {
    height: 70px;
    background: #fff;
    box-shadow: 0 1px 0 #d1d1d1;
    position: relative;
    z-index: 100;
    overflow: visible;
}

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
}

.header-sticky.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header__container {
    max-width: var(--em-container);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left-items {
    flex: 0 0 auto;
}

.header-center-items {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right-items {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-logo {
    display: flex;
    align-items: center;
    background: transparent;
}

.header-logo a {
    display: block;
    line-height: 0;
    background: transparent;
}

.header-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
}

/* Navigation */
.main-navigation .nav-menu {
    display: flex;
    gap: 0;
}

.main-navigation .nav-menu>li {
    position: relative;
}

.main-navigation .nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #0f2401;
    text-decoration: none;
}

.main-navigation .nav-menu>li>a i {
    font-size: 10px;
}

.main-navigation .nav-menu>li:hover>a,
.main-navigation .nav-menu>li.current-menu-item>a {
    color: var(--em-color__primary);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 200;
}

.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--em-color__dark);
}

.sub-menu li a:hover {
    color: var(--em-color__primary);
    background: #f9f9f9;
}

/* Header Icons */
.header-icon {
    font-size: 20px;
    color: #0f2401;
    position: relative;
}

.header-icon:hover {
    color: var(--em-color__primary);
}

.header-counter {
    position: relative;
}

.counter {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #357308;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Header */
.site-header__mobile .header-mobile-main {
    height: 60px;
    background: #fff;
    box-shadow: 0 1px 0 #cacaca;
    overflow: visible;
}

.site-header__mobile .header-mobile-main .site-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__mobile .header-mobile-main .header-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
}

.mobile-menu-toggle {
    font-size: 22px;
    color: #1e4602;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: 0.3s;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-panel.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--em-border-color);
    background: #fff;
}

.mobile-menu-header a {
    display: flex;
    align-items: center;
    line-height: 0;
    background: transparent;
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--em-color__dark);
}

.mobile-menu-nav {
    padding: 10px 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--em-border-color);
}

.mobile-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--em-color__dark);
}

.mobile-menu li a:hover {
    color: var(--em-color__primary);
}

.sub-menu-toggle {
    font-size: 12px;
    transition: 0.3s;
}

.mobile-menu .sub-menu {
    display: none;
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    border-radius: 0;
}

.mobile-menu .sub-menu.open {
    display: block;
}

.mobile-menu .sub-menu li a {
    padding-left: 35px;
    font-weight: 400;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.mobile-menu-overlay.open {
    display: block;
}

/* Hero Slider */
.hero-section {
    margin: 15px auto;
}

.hero-slider {
    border-radius: 20px;
    overflow: hidden;
}

.hero-slide {
    height: 540px;
    display: block;
    position: relative;
    overflow: hidden;
}

/* Full-slide clickable link */
.hero-slide__link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    line-height: 0;
}

.hero-slide__link:hover .hero-slide__image {
    transform: scale(1.03);
}

.hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    transition: transform 0.5s ease;
}

/* HTML overlay button for slides that need it */
.hero-slide__btn {
    position: absolute;
    bottom: 140px;
    left: 7%;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #2d4f1e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: 8px;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    transition: background 0.25s;
}

.hero-slide__btn i {
    color: #c8a96b;
    font-size: 13px;
}

.hero-slide__link:hover .hero-slide__btn {
    background: #1b3a10;
}

/* Hero Slider Pagination */
.hero-slider .swiper-pagination-bullet {
    background: rgba(255,255,255,0.6);
    border: 2px solid #fff;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 768px) {
    .hero-slide {
        height: 320px;
    }
    .hero-slide__btn {
        bottom: 70px;
        font-size: 12px;
        padding: 12px 20px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 220px;
    }
    .hero-slide__btn {
        bottom: 40px;
        font-size: 10px;
        padding: 9px 14px;
        gap: 8px;
        letter-spacing: 0.06em;
    }
}



/* Product Strip Slider (below hero) */
.product-strip-section {
    margin: 20px auto 40px;
    padding: 0;
}

.product-strip-slider {
    padding: 10px 4px 20px;
}

.product-strip-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    height: 100%;
}

.product-strip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border-color: var(--em-color__primary);
}

.product-strip-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
}

.product-strip-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-strip-card:hover .product-strip-card__img img {
    transform: scale(1.07);
}

.product-strip-card__info {
    padding: 10px 12px 12px;
    text-align: center;
}

.product-strip-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--em-color__dark);
    margin: 0 0 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-strip-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-strip-card__price .old-price {
    font-size: 11px;
    color: #aaa;
    text-decoration: line-through;
}

.product-strip-card__price .sale-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--em-color-price-sale, #db1215);
}



/* Promo Banners */
.promo-banners {
    margin-bottom: 75px;
}

.promo-banners__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-banner {
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.promo-banner__image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    padding-top: 20px;
}

.promo-banner__content {
    padding: 56px 45px;
}

.promo-banner__label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

.promo-banner__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #530202;
    margin-bottom: 15px;
}

.promo-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #3F3903;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.promo-banner__btn:hover {
    background: #E09314;
    color: #fff;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 47px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #545454;
    display: block;
    margin-bottom: 5px;
}

.section-title {
    font-size: 46px;
    font-weight: 600;
    color: var(--em-color__dark);
    line-height: 1.2;
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-tab {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #545454;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    background: #f4f4f4;
}

.product-tab:hover {
    color: #fff;
    background: var(--em-color__primary);
    border-color: var(--em-color__primary);
}

.product-tab.active {
    color: var(--em-color__primary);
    border-color: var(--em-color__primary);
}

/* Product Grid */
.popular-products {
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--em-color__primary);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f9f9f9;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #db1215;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #999;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #db1215;
    transform: scale(1.1);
}

.product-card__info {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card__info h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--em-color__dark);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.rating {
    color: #ffb800;
    font-size: 12px;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.sale-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--em-color-price-sale);
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--em-button-bg-color);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background: var(--em-button-bg-color-hover);
    box-shadow: 0 5px 15px rgba(54, 107, 17, 0.3);
}

/* About Section */
.about-section {
    margin-bottom: 60px;
}

.about-section__inner {
    background: #FFF6C6;
    border-radius: 20px;
    padding: 85px;
    text-align: center;
}

.about-section .section-title {
    margin-bottom: 0;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-card {
    text-align: center;
}

.trust-card__icon {
    width: 100px;
    height: 100px;
    border: 1px solid var(--em-color__dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--em-color__dark);
    margin: 0 auto 24px;
}

.trust-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--em-color__dark);
    margin-bottom: 20px;
}

.trust-card__text {
    font-size: 14px;
    color: var(--em-color__dark);
    line-height: 1.7;
}

/* Homemade Products */
.homemade-products {
    margin-bottom: 60px;
}

.homemade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.homemade-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid var(--em-border-color);
}

.homemade-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.homemade-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.homemade-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.homemade-card:hover .homemade-card__image img {
    transform: scale(1.09);
}

.homemade-card__info {
    padding: 15px;
    text-align: center;
}

.homemade-card__info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--em-color__dark);
    margin-bottom: 5px;
}

/* Healthy Living Banner */
.healthy-living-banner {
    margin-bottom: 20px;
    padding: 20px 0 60px;
}

.healthy-living__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.healthy-living__content {
    padding-right: 20px;
}

.healthy-living__title {
    font-size: 46px;
    font-weight: 600;
    color: var(--em-color__dark);
    line-height: 1.2;
    margin-bottom: 18px;
}

.healthy-living__text {
    font-size: 15px;
    color: var(--em-color__dark);
    margin-bottom: 18px;
    line-height: 1.8;
}

.healthy-living__image img {
    border-radius: 20px;
    width: 100%;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: transparent;
}

.footer-logo a {
    display: inline-block;
    line-height: 0;
    background: transparent;
}

.footer-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
}

.footer-logo-wrapper img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #aaa;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--em-color__primary);
    width: 16px;
}

.footer-contact a {
    color: #aaa;
}

.footer-contact a:hover {
    color: var(--em-color__primary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 16px;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--em-color__primary);
    color: #fff;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #aaa;
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--em-color__primary);
}

.footer-contact-info p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.footer-contact-info strong {
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 13px;
    color: #888;
}

/* Mobile Navigation Bar */
.ecomus-mobile-navigation-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 50;
    padding: 8px 0;
    color: #3c6e07;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: #3c6e07;
    text-decoration: none;
}

.mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--em-color__primary);
}

.cart-count-mobile {
    font-size: 10px;
}

/* Drawers */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    display: none;
}

.drawer-overlay.open {
    display: block;
}

.drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    background: #fff;
    z-index: 300;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--em-border-color);
}

.drawer-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--em-color__dark);
}

.cart-drawer {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.cart-drawer__body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    background: #f7f7f7;
    -webkit-overflow-scrolling: touch;
}
.cart-drawer__header {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.cart-drawer__header h2 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}
.cart-drawer__items {
    padding: 15px 20px;
}
.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cart-item__img {
    width: 85px;
    height: 85px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item__info {
    flex: 1;
}
.cart-item__info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    line-height: 1.4;
}
.cart-item__price {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-item__price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
    font-weight: 400;
}
.cart-item__price .sale-price {
    color: #db1215;
    font-weight: 700;
    font-size: 15px;
}
.cart-item__qty-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}
.qty-pill {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 2px;
}
.qty-pill button {
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #444;
}
.qty-pill input {
    width: 32px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 13px;
    background: transparent;
}
.cart-item__remove-link {
    background: none;
    border: none;
    color: #999;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

.cart-drawer__upsell {
    padding: 20px;
    background: #f7f7f7;
}
.upsell-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 5px;
}
.upsell-header span {
    font-weight: 700;
    font-size: 15px;
    color: #333;
}
.upsell-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.upsell-item__img {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.upsell-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upsell-item__info {
    flex: 1;
}
.upsell-item__info h5 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 5px;
    color: #333;
}
.upsell-item__price {
    font-size: 14px;
    color: #db1215;
    font-weight: 700;
}
.upsell-item__price .old-price {
    text-decoration: line-through;
    color: #aaa;
    font-weight: 400;
    margin-right: 8px;
    font-size: 12px;
}
.upsell-item__view {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #3c6e07;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.cart-drawer__footer {
    flex-shrink: 0;
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
    position: relative;
    z-index: 1;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}
.cart-total-amount {
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-save-badge {
    font-size: 10px;
    background: #fff0f0;
    color: #db1215;
    padding: 2px 6px;
    border: 1px solid #ffcccc;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 700;
}
.upsell-dots {
    display: flex;
    gap: 5px;
}
.upsell-dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 !important;
    background: #ddd;
    opacity: 1;
}
.upsell-dots .swiper-pagination-bullet-active {
    background: #366b11;
}

.cart-drawer__footer {
    flex-shrink: 0;
    padding: 20px;
    border-top: 1px solid var(--em-border-color);
    background: #fff;
    position: relative;
    z-index: 1;
}
.wishlist-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}
.cart-empty i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 15px;
}
.cart-empty p {
    font-size: 16px;
    color: #999;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
.cart-total-amount {
    color: var(--em-color-price-sale);
}
.cart-drawer__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}
.view-cart-btn-outlined {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--em-color__dark);
    justify-content: center;
}
.view-cart-btn-outlined:hover {
    background: #f5f5f5;
}
.checkout-btn-solid {
    background-color: #366b11;
    color: #fff;
    justify-content: center;
}
.checkout-btn-solid:hover {
    background-color: #2b550d;
}

/* Search Popup */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 400;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-popup.open {
    display: flex;
}

.search-popup__inner {
    width: 100%;
    max-width: 600px;
    position: relative;
    padding: 0 20px;
}

.search-form {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    font-size: 16px;
    background: transparent;
}

.search-submit {
    background: var(--em-button-bg-color);
    border: none;
    color: #fff;
    padding: 0 25px;
    cursor: pointer;
    font-size: 18px;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Login Popup */
.login-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 400;
    display: none;
    align-items: center;
    justify-content: center;
}

.login-popup.open {
    display: flex;
}

.login-popup__inner {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    padding: 30px;
}

.login-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.login-popup__header h3 {
    font-size: 22px;
    font-weight: 600;
}

.login-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--em-color__dark);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--em-border-color);
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--em-color__dark);
}

.form-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.form-remember input[type="checkbox"] {
    width: auto;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
}

.form-footer a {
    color: var(--em-color__primary);
    font-size: 14px;
}

/* Cart Item in Drawer */
.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--em-border-color);
}

.cart-item__img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__info {
    flex: 1;
}

.cart-item__info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--em-color-price-sale);
}

.cart-item__remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    align-self: flex-start;
}

.cart-item__remove:hover {
    color: #db1215;
}

/* Wishlist Item */
.wishlist-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--em-border-color);
    align-items: center;
}

.wishlist-item__img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.wishlist-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item__info {
    flex: 1;
}

.wishlist-item__info h4 {
    font-size: 14px;
    font-weight: 600;
}

.wishlist-item__remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1199px) {
    .site-header__desktop {
        display: none;
    }

    .site-header__mobile {
        display: block;
    }

    .ecomus-mobile-navigation-bar {
        display: flex;
        justify-content: space-around;
    }

    body {
        padding-bottom: 67px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-slide {
        height: 480px;
    }

    .hero-slide__content {
        padding: 0 38px;
    }

    .hero-slide__title {
        font-size: 44px;
    }

    .hero-slide__description {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .promo-banners {
        margin-bottom: 63px;
    }

    .promo-banners__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-banner {
        height: 300px;
    }

    .promo-banner__content {
        padding: 30px;
    }

    .promo-banner__title {
        font-size: 32px;
    }

    .about-section__inner {
        padding: 74px 15px 85px;
    }

    .section-title {
        font-size: 32px;
    }

    .trust-cards {
        gap: 20px;
    }

    .trust-card__icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
        padding: 22.5px 23px;
    }

    .healthy-living__title {
        font-size: 32px;
    }

    .healthy-living__inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .hero-slide__content {
        padding: 30px 0 0 15px;
        text-align: center;
    }

    .hero-slide__title {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .hero-slide__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-slide__button {
        padding: 8px 10px;
        font-size: 12px;
    }

    .promo-banners {
        margin-bottom: 44px;
    }

    .promo-banner {
        height: 240px;
        position: relative;
        overflow: hidden;
    }

    .promo-banner__image {
        height: 75%;
        width: auto;
        object-fit: contain;
    }

    .promo-banner__content {
        padding: 19px 0 19px 19px;
    }

    .promo-banner__label {
        font-size: 10px;
    }

    .promo-banner__title {
        font-size: 18px;
        line-height: 1.4;
    }

    .promo-banner__btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .category-card {
        padding: 10px;
        gap: 8px;
    }

    .category-card__name {
        font-size: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 23px;
    }

    .about-section__inner {
        padding: 35px 15px 40px;
    }

    .trust-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-card__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        padding: 13.5px 14px;
        margin-bottom: 16px;
    }

    .trust-card__title {
        font-size: 18px;
        margin-bottom: 11px;
    }

    .healthy-living__title {
        font-size: 24px;
    }

    .healthy-living__inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .drawer {
        width: 100%;
        right: -100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-banners__grid {
        gap: 10px;
    }
}

/* Rare Tomato Vault dynamic storefront additions */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.rtv-page {
    padding: 38px 15px 70px;
}

.rtv-page .section-header p {
    max-width: 760px;
    margin: 10px auto 0;
    line-height: 1.7;
    color: var(--em-color__text);
}

.breadcrumbs {
    color: #777;
    font-size: 14px;
    margin: 10px 0 28px;
}

.breadcrumbs a {
    color: var(--em-color__primary);
}

.category-chip-row,
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.shop-toolbar input,
.shop-toolbar select,
.checkout-layout input,
.checkout-layout textarea,
.cart-page input,
.checkout-summary input {
    border: 1px solid var(--em-border-color);
    border-radius: 6px;
    padding: 11px 12px;
    font-family: inherit;
}

.home-product-panel {
    display: none;
}

.home-product-panel.is-active {
    display: grid;
}

.product-card__info h3 a,
.homemade-card__info h3 a {
    color: inherit;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 42px;
    align-items: start;
    margin-bottom: 60px;
}

.product-gallery__main {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    background: #f7f4ed;
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.product-gallery__thumbs button {
    width: 74px;
    height: 74px;
    padding: 0;
    border: 1px solid var(--em-border-color);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.product-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.product-summary h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 22px 0;
}

.qty-input {
    width: 76px;
}

.rtv-wishlist-button {
    position: static;
    width: 44px;
    height: 44px;
    border: 1px solid var(--em-border-color);
    background: #fff;
    border-radius: 50%;
}

.product-description,
.article-content {
    line-height: 1.8;
    color: var(--em-color__text);
}

.cart-page,
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 100px 120px 100px;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cart-page-item img {
    width: 100%;
    border-radius: 8px;
}

.checkout-summary,
.checkout-form-panel {
    background: #fff;
    border: 1px solid var(--em-border-color);
    border-radius: 8px;
    padding: 22px;
}

.checkout-summary h3,
.checkout-form-panel h3 {
    margin-bottom: 16px;
}

.checkout-summary p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.summary-total {
    border-top: 1px solid var(--em-border-color);
    padding-top: 14px;
    font-size: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-layout label,
.cart-page label,
.shop-toolbar label,
.checkout-summary label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
}

.checkout-layout small {
    color: #777;
    font-weight: 400;
}

.checkout-message,
.success-message {
    margin-top: 14px;
    color: var(--em-color__primary);
}

.article-hero-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 28px;
}

.rtv-story {
    margin-bottom: 50px;
}

@media (max-width: 900px) {

    .product-detail,
    .cart-page,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .cart-page-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }
    .cart-page-item > *:nth-child(1) { grid-row: 1 / 4; }
    .cart-page-item > *:nth-child(2) { grid-column: 2; }
    .cart-page-item > *:nth-child(3) { grid-column: 2; }
    .cart-page-item > *:nth-child(4) { grid-column: 2; }
    .cart-page-item > *:nth-child(5) { grid-column: 2; justify-self: start; }
}
/* Product Detail Overhaul - ThaiMan Style */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.gallery-main-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
}

.gallery-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery__thumbs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumb-btn {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
}

.thumb-btn:hover {
    border-color: var(--em-color__primary);
}

.product-status-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.product-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.product-price-row .sale-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--em-color-price-sale);
}

.product-price-row .old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: #999;
}

.discount-label {
    background: #ff4d4d;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.product-purchase-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap; /* allow wrapping on mobile */
}

.qty-control {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 0 6px;
    height: 48px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qty-control input {
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin: 0;
    padding: 0;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    -moz-appearance: textfield;
}

/* Hide number input spinners */
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.full-width-add {
    flex-grow: 1;
    border-radius: 50px !important;
    padding: 15px 30px !important;
    font-weight: 700 !important;
    justify-content: space-between !important;
    display: flex !important;
}

.wishlist-btn-round {
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

.wishlist-btn-round:hover {
    background: #f5f5f5;
    border-color: #999;
}

.trust-badge-row {
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-top: 25px;
}

.trust-badge-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    filter: grayscale(1);
    opacity: 0.6;
}

.product-accordions {
    margin-top: 40px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    padding: 15px 0;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.accordion-content {
    padding-bottom: 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    display: none;
}

.product-meta-list {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.product-meta-list li {
    margin-bottom: 8px;
}

.additional-info-table {
    width: 100%;
}

.additional-info-table th {
    text-align: left;
    width: 150px;
    padding: 10px 0;
}

@media (max-width: 991px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Review System & Modals */
.rtv-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rtv-modal.open {
    display: flex;
    opacity: 1;
}

.rtv-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
}

.modal-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.form-row textarea {
    height: 120px;
    resize: none;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.star-rating-input {
    font-size: 24px;
    color: #ffc107;
    display: flex;
    gap: 5px;
}

.star-rating-input i {
    cursor: pointer;
}

.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

.review-action-footer {
    margin-top: 30px;
}

.reviews-list {
    margin-bottom: 30px;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.review-meta {
    margin-bottom: 10px;
    font-size: 14px;
}

.review-stars {
    color: #ffc107;
    margin-top: 5px;
}

.review-text {
    line-height: 1.6;
    color: #444;
}

/* Search Drawer Styles */
.search-drawer {
    background: #fff;
}

.drawer-body-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.search-form-drawer {
    margin-bottom: 30px;
}

.search-input-wrapper {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 2px 5px;
    display: flex;
    align-items: center;
}

.search-input-wrapper i {
    padding-left: 15px;
    color: #999;
}

.search-input-wrapper input {
    border: none;
    outline: none;
    padding: 12px 15px;
    width: 100%;
    font-size: 15px;
    background: transparent;
}

.inspiration-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--em-color__dark);
}

.inspiration-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inspiration-item {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.inspiration-item:hover {
    opacity: 0.8;
}

.inspiration-item__img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.inspiration-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspiration-item__info {
    flex: 1;
}

.inspiration-item__stars {
    font-size: 11px;
    color: #ddd;
    margin-bottom: 5px;
}

.inspiration-item__stars span {
    color: #999;
    margin-left: 5px;
}

.inspiration-item__title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.inspiration-item__price {
    font-size: 14px;
}

.inspiration-item__price .sale-price {
    font-weight: 700;
    color: var(--em-color-price-sale);
}

.inspiration-item__price .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

/* Checkout Improvements */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
}

.checkout-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.checkout-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--em-color__dark);
}

.checkout-section h3 i {
    color: var(--em-color__primary);
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.form-row input, .form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-row input:focus {
    border-color: var(--em-color__primary);
    outline: none;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--em-color__primary);
    background: #f9fff5;
}

.payment-option input[type="radio"] {
    margin-top: 5px;
    accent-color: var(--em-color__primary);
}

.payment-option-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-option-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.payment-option-info span {
    font-size: 13px;
    color: #777;
}

.payment-option-icons {
    display: flex;
    gap: 8px;
    font-size: 20px;
    color: #666;
}

.checkout-tc {
    margin: 20px 0 30px;
    padding: 0 10px;
}

.checkout-tc label {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
}

.summary-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.summary-items {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.summary-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.summary-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-info {
    flex: 1;
}

.summary-item-info h4 {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.summary-item-info p {
    font-size: 12px;
    color: #777;
    margin: 2px 0 0;
}

.summary-item-price {
    font-weight: 600;
    font-size: 14px;
}

.summary-totals {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-totals p {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #eee;
    font-size: 18px;
    font-weight: 800;
    color: var(--em-color__dark);
}

.secure-checkout-badge {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #777;
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .summary-card {
        position: static;
    }
}
.cart-item__info h4 a {
    color: inherit;
    text-decoration: none;
}
.cart-item__info h4 a:hover {
    color: var(--em-color__primary);
}
.cart-item__img-link {
    display: block;
    flex-shrink: 0;
}

/* ===== Collections Page V2 ===== */

.collections-header {
    text-align: center;
    padding: 60px 0 40px;
}

.collections-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 15px;
}

.collections-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--em-color__dark);
    margin-bottom: 20px;
}

.collections-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 18px;
}

.collections-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Horizontal Cards Grid */
.collections-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.collection-card-v2 {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    min-height: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #111;
}

.collection-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.collection-card-v2__bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.collection-card-v2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20,20,20,0.95) 30%, rgba(20,20,20,0.85) 55%, transparent 100%);
    z-index: 2;
}

.collection-card-v2__content {
    position: relative;
    z-index: 3;
    padding: 35px 40px;
    width: 65%;
}

.collection-card-v2__title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.collection-card-v2__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 250px;
}

.collection-card-v2__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2E7D32;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s;
}

.collection-card-v2:hover .collection-card-v2__btn {
    background: #1b5e20;
}

/* Trust Badges */
.collections-trust {
    background: #f6f8f4;
    border-radius: 16px;
    padding: 45px 30px;
    margin-bottom: 60px;
}

.collections-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.collections-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.collections-trust__icon {
    font-size: 34px;
    color: #2E7D32;
}

.collections-trust__text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--em-color__dark);
    margin-bottom: 8px;
}

.collections-trust__text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .collections-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .collection-card-v2__bg {
        width: 100%;
    }
    
    .collection-card-v2__content {
        width: 60%;
    }

    .collections-trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 640px) {
    .collections-header {
        padding: 40px 0 30px;
    }
    
    .collections-title {
        font-size: 32px;
    }
    
    .collection-card-v2 {
        min-height: 280px;
        align-items: flex-end;
    }
    
    .collection-card-v2__bg {
        width: 100%;
        opacity: 1;
    }
    
    .collection-card-v2__overlay {
        background: linear-gradient(to top, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.7) 60%, transparent 100%);
    }
    
    .collection-card-v2__content {
        width: 100%;
        padding: 40px 25px 25px;
    }
    
    .collections-trust__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Page ===== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 35px;
    margin-top: 30px;
    align-items: start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.contact-form-panel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 32px 35px;
}

.contact-panel-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--em-color__dark);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-panel-title i {
    color: var(--em-color__primary);
    font-size: 16px;
}

.contact-panel-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0 0 24px;
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f0faf2;
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #2e7d32;
    font-size: 14px;
    font-weight: 500;
}

.contact-success i {
    font-size: 20px;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fafafa;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--em-color__primary);
    box-shadow: 0 0 0 3px rgba(97, 180, 130, 0.1);
    background: #fff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #bbb;
    font-weight: 400;
}

.contact-field textarea {
    resize: none;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 24px !important;
    font-size: 15px !important;
    margin-top: 4px;
}

/* Contact Info Sidebar */
.contact-info-panel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px 28px;
    position: sticky;
    top: 100px;
}

.contact-info-panel .contact-panel-title {
    margin-bottom: 20px;
}

.contact-info-whatsapp {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #25d366;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.contact-info-whatsapp:hover {
    background: #1fb855;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.contact-info-whatsapp i {
    font-size: 26px;
    flex-shrink: 0;
}

.contact-info-whatsapp strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.contact-info-whatsapp span {
    display: block;
    font-size: 12px;
    opacity: 0.85;
    margin-top: 1px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-item > i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f8ee;
    color: var(--em-color__base);
    border-radius: 8px;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--em-color__dark);
    line-height: 1.4;
    text-decoration: none;
}

a.contact-info-value:hover {
    color: var(--em-color__primary);
}

.contact-info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f9fdf6;
    border: 1px solid #e8f0e1;
    border-radius: 10px;
}

.contact-info-note > i {
    color: var(--em-color__primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-note strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--em-color__dark);
    margin-bottom: 4px;
}

.contact-info-note p {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 22px 20px;
    }

    .contact-info-panel {
        padding: 22px 20px;
    }
}

/* ===== About Us Page ===== */
.about-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 90px;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.about-story-content strong,
.healthy-living__content strong {
    color: #254e2b;
    font-weight: 700;
}

.about-story-image-wrap {
    position: relative;
    z-index: 1;
}

.about-story-image-backdrop {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #FFF6C6;
    border-radius: 20px;
    z-index: -1;
}

.about-story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    aspect-ratio: 1 / 1;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-story-image:hover img {
    transform: scale(1.05);
}

.about-trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 15px;
    padding-top: 35px;
    border-top: 1px solid #e8e8e8;
}

.about-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--em-color__dark);
}

.about-trust-badge i {
    color: var(--em-color__primary);
    font-size: 20px;
    background: #f2f8ee;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.3s, color 0.3s;
}

.about-trust-badge:hover i {
    background: var(--em-color__primary);
    color: #fff;
}

/* Custom quote box and side elements for About Page */
.about-quote-box {
    position: relative;
    background: #f3f6f3;
    border-left: 4px solid #254e2b;
    padding: 22px 28px;
    border-radius: 4px 16px 16px 4px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.about-quote-box p {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #254e2b;
    line-height: 1.4;
    margin: 0 !important;
}

.about-quote-box .quote-leaf-icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 32px;
    color: #cbdccb;
    transform: rotate(45deg);
    pointer-events: none;
}

.about-side-badges-wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-side-badges {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

.about-side-badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.about-side-badge__icon {
    width: 50px;
    height: 50px;
    background: #eef5eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.about-side-badge__icon i {
    color: #254e2b;
    font-size: 20px;
}

.about-side-badge:hover .about-side-badge__icon {
    background: #254e2b;
}

.about-side-badge:hover .about-side-badge__icon i {
    color: #fff;
}

.about-side-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    max-width: 100px;
}

.about-side-badge-divider {
    width: 1px;
    background: #e0e0e0;
    margin: 10px 15px;
}

.about-side-btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #254e2b;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(37, 78, 43, 0.15);
}

.about-side-btn:hover {
    background: #1b3a1f;
    transform: translateY(-2px);
    color: #fff;
}

.about-side-btn i {
    font-size: 14px;
    transition: transform 0.2s;
}

.about-side-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .about-side-badges {
        flex-direction: column;
        gap: 20px;
    }
    .about-side-badge-divider {
        display: none;
    }
    .about-side-badge {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        justify-content: flex-start;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .about-side-badge span {
        max-width: none;
        text-align: left;
    }
}


@media (max-width: 992px) {
    .about-story-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-story-image-wrap {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .about-trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-trust-badge {
        flex-direction: row;
        align-items: center;
    }
}

/* ===================================================
   HEADER AUTH — Sign In Button & User Dropdown
   =================================================== */
.header-signin-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #366b11, #4e9c1a);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(54,107,17,0.25);
}
.header-signin-btn:hover {
    background: linear-gradient(135deg, #2b550d, #366b11);
    box-shadow: 0 6px 18px rgba(54,107,17,0.35);
    transform: translateY(-1px);
    color: #fff !important;
}

/* User Menu Wrapper */
.header-user-menu {
    position: relative;
}
.header-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid rgba(54,107,17,0.3);
    border-radius: 50px;
    padding: 5px 12px 5px 5px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    color: var(--em-color__dark);
}
.header-user-btn:hover {
    border-color: #366b11;
    background: rgba(54,107,17,0.05);
}
.header-user-btn[aria-expanded="true"] { border-color: #366b11; }
.header-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.header-avatar-initials {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #366b11, #61b482);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-user-name {
    font-size: 13px;
    font-weight: 600;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header-user-chevron {
    font-size: 10px;
    color: #777;
    transition: transform 0.25s ease;
}
.header-user-btn[aria-expanded="true"] .header-user-chevron { transform: rotate(180deg); }

/* Dropdown */
.header-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
    border: 1px solid rgba(0,0,0,0.07);
    z-index: 600;
    display: none;
    animation: hudSlide 0.2s ease;
    overflow: hidden;
}
.header-user-dropdown.open { display: block; }
@keyframes hudSlide {
    from { opacity:0; transform:translateY(-8px); }
    to   { opacity:1; transform:translateY(0); }
}
.hud-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f0faf0, #e8f5e9);
}
.hud-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg,#366b11,#61b482);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.hud-avatar img { width:100%; height:100%; object-fit:cover; }
.hud-name { font-weight: 700; font-size: 14px; color: #253d2b; }
.hud-email { font-size: 11px; color: #777; margin-top: 2px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:140px; }
.hud-divider { height: 1px; background: #f0f0f0; margin: 4px 0; }
.hud-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
}
.hud-item i { width: 16px; text-align: center; color: #366b11; }
.hud-item:hover { background: #f4fef4; color: #366b11; }
.hud-logout { color: #c0392b !important; }
.hud-logout i { color: #c0392b !important; }
.hud-logout:hover { background: #fff5f5 !important; }

/* ===================================================
   CUSTOMER DASHBOARD
   =================================================== */
.dash-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 140px);
    gap: 0;
    background: #f4f6f8;
}

/* Sidebar */
.dash-sidebar {
    background: linear-gradient(180deg, #1a3d0e 0%, #253d2b 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 100%;
}
.dash-sidebar-profile {
    padding: 30px 20px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dash-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}
.dash-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.4);
}
.dash-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #81c784);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    border: 3px solid rgba(255,255,255,0.4);
    margin: 0 auto;
}
.dash-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    color: #366b11;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.dash-sidebar-name { font-size: 16px; font-weight: 700; color: #fff; }
.dash-sidebar-email { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 3px; word-break: break-all; }

.dash-nav { flex: 1; padding: 16px 0; }
.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.dash-nav-item i { width: 18px; text-align: center; font-size: 15px; }
.dash-nav-item:hover { color: #fff; background: rgba(255,255,255,0.1); }
.dash-nav-item.active { color: #fff; background: rgba(255,255,255,0.15); border-left-color: #7ed321; font-weight: 600; }
.dash-logout-btn {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #f9a8a8;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    transition: background 0.2s;
}
.dash-logout-btn:hover { background: rgba(220,53,69,0.25); }

/* Main */
.dash-main {
    padding: 32px;
    overflow: auto;
}

/* Toast */
.dash-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: opacity 0.4s ease;
}
.dash-toast-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.dash-toast-error   { background: #fce4ec; color: #b71c1c; border: 1px solid #f48fb1; }

/* Welcome Card */
.dash-welcome-card {
    background: linear-gradient(135deg, #253d2b 0%, #366b11 50%, #4e9c1a 100%);
    color: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(54,107,17,0.25);
}
.dash-welcome-title { font-size: 22px; font-weight: 700; margin: 0 0 6px; }
.dash-welcome-sub { font-size: 14px; opacity: 0.8; margin: 0; }

/* Stats Grid */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.dash-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.dash-stat-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.dash-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.dash-stat-info { display: flex; flex-direction: column; }
.dash-stat-num { font-size: 22px; font-weight: 700; color: #253d2b; line-height: 1.1; }
.dash-stat-label { font-size: 12px; color: #888; margin-top: 3px; }

/* Cards */
.dash-card {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}
.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f5f5f5;
}
.dash-card-header h2 { font-size: 16px; font-weight: 700; color: #253d2b; margin: 0; display:flex;align-items:center;gap:8px; }
.dash-card-header h2 i { color: #366b11; }
.dash-link { font-size: 13px; color: #366b11; text-decoration: none; font-weight: 600; }
.dash-link:hover { text-decoration: underline; }

/* Table */
.dash-table-wrap { overflow-x: auto; padding: 0 24px 20px; }
.dash-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.dash-table th { padding: 12px 8px; font-weight: 700; color: #888; font-size: 11px; text-transform: uppercase; border-bottom: 2px solid #f0f0f0; text-align: left; }
.dash-table td { padding: 13px 8px; border-bottom: 1px solid #f9f9f9; vertical-align: middle; }
.dash-table tr:last-child td { border-bottom: none; }
.dash-order-num { font-weight: 700; color: #366b11; font-family: monospace; }

/* Badges */
.dash-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.dash-badge-order-received { background: #e3f2fd; color: #1565c0; }
.dash-badge-processing     { background: #fff8e1; color: #f57f17; }
.dash-badge-packed         { background: #e8f5e9; color: #2e7d32; }
.dash-badge-shipped        { background: #fff3e0; color: #e65100; }
.dash-badge-delivered      { background: #e8f5e9; color: #1b5e20; }
.dash-badge-cancelled      { background: #fce4ec; color: #c62828; }
.dash-badge-paid           { background: #e8f5e9; color: #1b5e20; }
.dash-badge-pending        { background: #fff8e1; color: #f57f17; }
.dash-badge-failed         { background: #fce4ec; color: #c62828; }

/* Forms */
.dash-form { padding: 24px; }
.dash-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.dash-field-group { display: flex; flex-direction: column; gap: 6px; }
.dash-field-group label { font-size: 13px; font-weight: 600; color: #444; }
.dash-field-group input, .dash-field-group select, .dash-field-group textarea {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.dash-field-group input:focus { border-color: #366b11; box-shadow: 0 0 0 3px rgba(54,107,17,0.08); }

/* Buttons */
.dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.2s ease;
    text-decoration: none;
}
.dash-btn-primary { background: linear-gradient(135deg,#366b11,#4e9c1a); color: #fff; box-shadow: 0 4px 12px rgba(54,107,17,0.25); }
.dash-btn-primary:hover { background: linear-gradient(135deg,#2b550d,#366b11); box-shadow: 0 6px 18px rgba(54,107,17,0.35); transform: translateY(-1px); color:#fff; }
.dash-btn-outline { background: #fff; color: #366b11; border: 1.5px solid #366b11; }
.dash-btn-outline:hover { background: #f4fef4; }

/* Empty State */
.dash-empty {
    text-align: center;
    padding: 50px 20px;
    color: #aaa;
}
.dash-empty i { font-size: 42px; margin-bottom: 14px; display: block; }
.dash-empty p { font-size: 15px; }
.dash-empty a { color: #366b11; font-weight: 600; }

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .dash-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .dash-shell { grid-template-columns: 1fr; }
    .dash-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        min-height: auto;
    }
    .dash-sidebar-profile { display: none; }
    .dash-nav {
        display: flex;
        flex-wrap: wrap;
        padding: 8px;
        gap: 2px;
    }
    .dash-nav-item { padding: 8px 12px; font-size: 12px; border-left: none; border-bottom: 3px solid transparent; }
    .dash-nav-item.active { border-bottom-color: #7ed321; border-left: none; }
    .dash-logout-btn { width: auto; margin: 8px; }
    .dash-main { padding: 16px; }
    .dash-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .dash-form-grid { grid-template-columns: 1fr; }
    .dash-welcome-card { flex-direction: column; align-items: flex-start; }
}

/* Mobile Cart Drawer — keep footer always visible */
@media (max-width: 480px) {
    .drawer {
        width: 100vw;
        right: -100vw;
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .drawer.open {
        right: 0;
    }
    .cart-drawer {
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .cart-drawer__body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .cart-drawer__footer {
        flex-shrink: 0 !important;
        position: relative;
        z-index: 2;
        padding: 14px 16px;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    }
    .cart-drawer__actions {
        gap: 8px;
    }
    .view-cart-btn-outlined,
    .checkout-btn-solid {
        padding: 12px 10px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .dash-stats-grid { grid-template-columns: 1fr; }
    .header-user-name { display: none; }
}

/* ===================================================
   ORDER TRACKING DETAILS
   =================================================== */
.track-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.track-back-link {
    font-size: 14px;
    color: #366b11;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.track-back-link:hover {
    color: #2b550d;
}
.track-info-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}
.track-lbl {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.track-val {
    font-size: 16px;
    font-weight: 700;
    color: #253d2b;
    margin: 0;
}
.track-val.text-primary {
    color: #366b11;
}

/* Cancelled Banner */
.track-cancelled-banner {
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #c53030;
}
.track-cancelled-banner i {
    font-size: 28px;
}
.track-cancelled-banner h4 {
    margin: 0 0 4px;
    font-weight: 700;
    font-size: 15px;
}
.track-cancelled-banner p {
    margin: 0;
    font-size: 13px;
    color: #742a2a;
}

/* Stepper */
.track-stepper-wrapper {
    padding: 10px 0 20px;
}
.track-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.track-stepper::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #e5e7eb;
    z-index: 1;
}
.track-stepper-progress {
    position: absolute;
    top: 22px;
    left: 40px;
    height: 4px;
    background: #366b11;
    z-index: 1;
    transition: width 0.4s ease;
}
.track-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    text-align: center;
}
.track-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px #e5e7eb;
    transition: all 0.3s ease;
}
.track-step.completed .track-step-icon {
    background: #366b11;
    color: #fff;
    box-shadow: 0 0 0 1px #366b11;
}
.track-step.active .track-step-icon {
    background: #366b11;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(54, 107, 17, 0.2);
}
.track-step-label {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    line-height: 1.2;
}
.track-step.active .track-step-label,
.track-step.completed .track-step-label {
    color: #253d2b;
}

/* Stepper Responsive */
@media (max-width: 600px) {
    .track-stepper::before, .track-stepper-progress {
        display: none;
    }
    .track-stepper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-left: 20px;
    }
    .track-stepper::after {
        content: '';
        position: absolute;
        top: 20px;
        left: 36px;
        bottom: 20px;
        width: 3px;
        background: #e5e7eb;
        z-index: 1;
    }
    .track-step {
        flex-direction: row;
        align-items: center;
        width: auto;
        text-align: left;
        gap: 15px;
    }
    .track-step-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    .track-step-label {
        margin-top: 0;
        font-size: 13px;
    }
}

/* Tracking Details Grid */
.track-details-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
    margin-top: 24px;
}
@media (max-width: 900px) {
    .track-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Items details inside tracking */
.track-items-list {
    padding: 0 24px;
}
.track-item-row {
    display: grid;
    grid-template-columns: 60px 1fr 150px 100px;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}
.track-item-row:last-child {
    border-bottom: none;
}
.track-item-img-wrap {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fcfcfc;
}
.track-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.track-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #253d2b;
    margin: 0 0 4px;
}
.track-item-sku, .track-item-seeds {
    display: block;
    font-size: 11px;
    color: #888;
}
.track-item-qty-price {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #555;
}
.track-item-qty {
    font-weight: 600;
    color: #253d2b;
}
.track-item-total {
    font-size: 14px;
    font-weight: 700;
    color: #253d2b;
    text-align: right;
}

@media (max-width: 600px) {
    .track-item-row {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
    }
    .track-item-qty-price {
        grid-column: 2;
        flex-direction: row;
        gap: 10px;
    }
    .track-item-total {
        grid-column: 2;
        text-align: left;
    }
}

.track-pricing-footer {
    background: #fafafa;
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.track-price-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
}
.track-price-line.discount {
    color: #c53030;
}
.track-price-line.total {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #253d2b;
}

/* Shipping Address & Payment Cards */
.track-address-card, .track-payment-card {
    padding: 20px 24px;
}
.track-addr-name {
    font-size: 15px;
    font-weight: 700;
    color: #253d2b;
    margin: 0 0 8px;
}
.track-addr-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.track-addr-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #555;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 12px;
}
.track-addr-contact i {
    color: #366b11;
    width: 16px;
}

.track-pay-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 12px;
}
.track-pay-row:last-child {
    margin-bottom: 0;
}
.track-pay-note {
    background: #fff8e1;
    border: 1px solid #ffe082;
    color: #b78103;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== MTSeedbank Style Blog Section ===== */
.mtseedbank-blog-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.mtseedbank-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mtseedbank-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mtseedbank-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.mtseedbank-blog-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.mtseedbank-blog-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mtseedbank-blog-card:hover .mtseedbank-blog-card__image-wrap img {
    transform: scale(1.08);
}

.mtseedbank-blog-card__category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(26, 43, 73, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mtseedbank-blog-card__content {
    padding: 25px;
}

.mtseedbank-blog-card__title {
    margin: 0 0 15px;
    line-height: 1.4;
}

.mtseedbank-blog-card__title a {
    color: #1a2b49;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.mtseedbank-blog-card__title a:hover {
    color: var(--em-color__primary);
}

.mtseedbank-blog-card__meta {
    font-size: 13px;
    color: #777;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .mtseedbank-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mtseedbank-blog-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    /* Mobile Cart Adjustments */
    .qty-control {
        height: 40px;
    }
    .qty-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .qty-control input {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
    .product-purchase-controls {
        flex-wrap: wrap;
        width: 100%;
    }
    .product-purchase-controls .add-to-cart-btn {
        flex: 1;
        min-width: 120px;
    }
    .add-to-cart-btn {
        padding: 8px 15px;
        font-size: 12px;
        white-space: nowrap;
        gap: 5px;
    }
    
    .checkout-form-panel input, .checkout-form-panel select, .checkout-form-panel textarea {
        width: 100% !important;
        box-sizing: border-box;
    }
}
