/*
 Theme Name:   Chocolate Store Child
 Description:  Child Theme for Chocolate Store
 Author:       Choice
 Template:     chocolate-store
 Version:      1.0.0
*/

:root {
    --beige: #C8A898;
    --beige-lt: #DEC8BA;
    --beige-bg: #EAD9CE;
    --cream: #F5EDE6;
    --brown-dk: #000000;
    --brown-md: #000000;
    --brown-txt: #000000;
    --brown-acc: #000000;
    --green-bg: #4A5C48;
    --line: rgba(0, 0, 0, 0.15);
    /* Hero new palette */
    --brown-deep: #2B1810;
    --brown-mid: #6B3A24;
    --terracotta: #A85A38;
    --caramel: #C17A4F;
    --hero-cream: #F2E6D8;
    --cream-soft: #E8D5C4;
    --cream-bg: #F5EFE7;
    --text-muted: rgba(242, 230, 216, 0.72);
    --line-faint: rgba(242, 230, 216, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--beige-bg);
    color: #000000 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

p {
    font-size: 17px;
    line-height: 1.8;
}

/* ── ANNOUNCEMENT BAR ── */
.em-announcement-bar {
    background: #6B3A24;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 9px 0;
}

.em-announcement-track {
    display: inline-flex;
    animation: em-marquee 22s linear infinite;
}

.em-announcement-text {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 0 60px;
}

.em-announcement-text strong {
    font-weight: 700;
    color: #C17A4F;
    letter-spacing: 1.5px;
}

@keyframes em-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── NAV ── */
nav.em-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: #042a25 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #ffffff !important;
    text-transform: uppercase;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.95;
    transition: opacity 0.25s, color 0.25s;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 1 !important;
    color: var(--beige-lt) !important;
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .nav-right {
        gap: 16px;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-icon-link {
    color: #ffffff !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}

.nav-icon-link:hover {
    color: var(--beige-lt) !important;
}

.header-icon-svg {
    width: 20px;
    height: 20px;
    display: block;
}

.nav-cart-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-badge-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7c3201 !important;
    color: #042a25 !important;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 1;
}

.mobile-only-link {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffffff !important;
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    overflow: hidden;
}

/* dark gradient overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 12, 6, 0.85) 0%, rgba(20, 12, 6, 0.55) 60%, rgba(20, 12, 6, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Content overlay */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    padding: 156px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-height: 90vh;
}

.hero-eyebrow {
    font-size: 17px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff !important;
    font-weight: 400;
    margin-bottom: 26px;
    opacity: 0.85;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 500;
    line-height: 1.02;
    color: #ffffff !important;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-title em {
    font-style: italic;
    color: #ffffff !important;
}

.hero-desc {
    font-size: 21px !important;
    line-height: 1.85;
    color: #ffffff !important;
    max-width: 560px;
    margin: 0 0 40px 0;
    font-weight: 300;
    opacity: 0.9;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-size: 17px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px 40px;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #ffffff;
    color: var(--brown-deep) !important;
    border-color: #ffffff;
}

.hero-btn .arrow {
    font-size: 18px;
    line-height: 1;
}

/* feature icons row */
.hero-features {
    display: flex;
    gap: 48px;
    margin-top: 64px;
}

.hf {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
}

.hf-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hf-icon svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.3;
}

.hf-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff !important;
    font-weight: 500;
    line-height: 1.5;
}

/* ── FEATURE BAR ── */
.feature-bar {
    background: var(--cream-bg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 34px 60px;
}

.fb-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 30px;
    border-right: 1px solid rgba(107, 58, 36, 0.14);
}

.fb-item:last-child {
    border-right: none;
}

.fb-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--brown-mid);
    fill: none;
    stroke-width: 1.2;
}

.fb-title {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brown-deep) !important;
    font-weight: 600;
    margin-bottom: 6px;
}

.fb-desc {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(43, 24, 16, 0.6);
    font-weight: 300;
}

/* Keep btn-fill for other sections */
.btn-fill {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 14px 36px;
    text-decoration: none;
    transition: background 0.25s;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.btn-fill:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

.btn-line {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    color: #000000 !important;
    text-decoration: none;
    border-bottom: 1px solid #000000 !important;
    padding-bottom: 2px;
    transition: opacity 0.25s;
    display: inline-block;
}

.btn-line:hover {
    opacity: 0.6 !important;
    color: #000000 !important;
}

/* ── SECTION COMMON ── */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000 !important;
    font-weight: 500;
    margin-bottom: 20px;
}

.sec-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: #000000 !important;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: #000000 !important;
}

.sec-title em {
    font-style: italic;
    color: #000000 !important;
}

.sec-body {
    font-size: 17px !important;
    line-height: 1.9;
    color: #000000 !important;
    opacity: 0.65;
}

/* ── INTRO BAND ── */
.intro-band {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
}

.intro-num {
    background: var(--cream);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.intro-big {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    color: rgba(0, 0, 0, 0.08) !important;
    letter-spacing: -4px;
    margin-bottom: 0;
}

.intro-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content .sec-body {
    max-width: 520px;
    margin-top: 20px;
}

/* ── STATS ── */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat {
    padding: 52px 40px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: none;
}

.stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: #000000 !important;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-lbl {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000 !important;
}

/* ── PRODUCTS ── */
.products {
    padding: 90px 60px;
}

.products-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
}

.products-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
}

.products-title em {
    font-style: italic;
    color: #000000 !important;
}

.view-all {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #000000 !important;
    text-decoration: none;
    border-bottom: 1px solid #000000 !important;
    padding-bottom: 2px;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prod-card {
    background: var(--cream);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prod-img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.prod-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.55s ease !important;
}

.prod-card:hover .prod-img {
    transform: scale(1.05);
}

/* Shop archive page spacing */
.em-shop-archive {
    padding-top: 166px;
}

/* Sale badge */
.prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brown-acc);
    color: var(--cream);
    font-size: 9px;
    padding: 4px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

/* Product name link */
.prod-name a {
    text-decoration: none;
    color: var(--brown-txt);
}

/* Empty state */
.em-no-products {
    grid-column: 1 / -1;
    text-align: center;
}

.prod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.35s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.prod-card:hover .prod-overlay {
    background: rgba(0, 0, 0, 0.18);
}

.prod-info {
    padding: 18px 18px 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prod-cat {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000 !important;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.prod-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000 !important;
    margin-bottom: 4px;
    line-height: 1.25;
}

.prod-desc {
    font-size: 14px !important;
    color: #000000 !important;
    opacity: 0.55;
    line-height: 1.6;
    margin-bottom: 14px;
}

.prod-ft {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.prod-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #000000 !important;
    font-weight: 400;
}

.prod-btn {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #000000 !important;
    color: #000000 !important;
    background: transparent;
    padding: 7px 14px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

.prod-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

/* ── SPLIT FEATURE ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    min-height: 540px;
}

.split-img {
    overflow: hidden;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-body {
    background: var(--cream);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-body .sec-body {
    max-width: 420px;
    margin: 20px 0 40px;
}

/* ── PROCESS ── */
.process {
    padding: 90px 60px;
    background: var(--cream);
    border-top: 1px solid var(--line);
}

.process-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.process-step {
    background: var(--beige-bg);
    padding: 40px 30px;
    border: 1px solid var(--line);
    position: relative;
}

.step-n {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.1) !important;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.step-t {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000 !important;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.step-d {
    font-size: 16px !important;
    line-height: 1.75;
    color: #000000 !important;
    opacity: 0.65;
}

/* ── PACKAGING SHOWCASE ── */
.pack-showcase {
    background: #000000;
    padding: 90px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pack-text .sec-label {
    color: #ffffff !important;
}

.pack-text .sec-label::before {
    background: #ffffff !important;
}

.pack-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 400;
    color: #ffffff !important;
    line-height: 1.15;
    margin-bottom: 20px;
}

.pack-title em {
    font-style: italic;
    color: #ffffff !important;
}

.pack-desc {
    font-size: 17px !important;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 40px;
}

.pack-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.pack-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.5;
}

.pack-feat::before {
    content: '✦';
    color: #ffffff !important;
    font-size: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-cream {
    display: inline-block;
    background: var(--cream);
    color: #000000 !important;
    padding: 14px 36px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: background 0.25s;
}

.btn-cream:hover {
    background: var(--beige-lt);
    color: #000000 !important;
}

.pack-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.pack-img-wrap {
    overflow: hidden;
    aspect-ratio: 2/3;
}

.pack-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pack-img-wrap:first-child {
    margin-top: 40px;
}

.pack-label {
    color: var(--beige-lt);
}

.pack-img-offset {
    margin-top: 40px;
}

.gift-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── GIFT CTA ── */
.gift-cta {
    background: var(--beige-bg);
    border-top: 1px solid var(--line);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.gift-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000 !important;
    margin-bottom: 12px;
}

.gift-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: #000000 !important;
    line-height: 1.2;
}

/* ── TESTIMONIAL ── */
.testimonial {
    background: var(--cream);
    padding: 80px 60px;
    text-align: center;
    border-top: 1px solid var(--line);
}

.quote-open {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 0.4;
    color: #000000 !important;
    opacity: 0.15;
    margin-bottom: 28px;
    display: block;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(23px, 2.5vw, 33px) !important;
    font-style: italic;
    font-weight: 400;
    color: #000000 !important;
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.5;
}

.quote-by {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000000 !important;
}

/* ── INSTAGRAM REELS ── */
.ig-reels {
    padding: 80px 60px;
    background: var(--cream-bg, #FAF6F1);
    border-top: 1px solid var(--line, #E5DDD4);
}

.ig-reels-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.ig-reels-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ig-reels-icon {
    width: 42px;
    height: 42px;
    color: var(--brown-deep, #2B1810);
    flex-shrink: 0;
}

.ig-reels-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: var(--brown-deep, #2B1810);
    margin: 0;
    line-height: 1.2;
}

.ig-reels-handle {
    font-size: 14px;
    color: var(--brown-mid, #6B3A24);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.ig-reels-handle:hover {
    color: var(--terracotta, #A85A38);
}

.ig-reels-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: #ffffff;
    background: var(--brown-deep, #2B1810);
    text-decoration: none;
    padding: 12px 28px;
    transition: all 0.3s;
}

.ig-reels-follow-btn:hover {
    background: var(--brown-mid, #6B3A24);
    color: #ffffff;
}

/* Reels Grid */
/* Reels Slider */
.ig-reels-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.ig-reels-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide standard scrollbar */
    -ms-overflow-style: none;
    /* IE/Edge */
    width: 100%;
    padding: 10px 0;
}

.ig-reels-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.ig-reel-card {
    flex: 0 0 calc((100% - 3 * 20px) / 4);
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(43, 24, 16, 0.1);
    transition: transform 0.35s, box-shadow 0.35s;
    display: block;
}

.ig-reel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(43, 24, 16, 0.18);
}

.ig-reel-cover-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.ig-reel-cover,
.ig-reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ig-reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s, background-color 0.3s;
}

.ig-reel-card:hover .ig-reel-overlay {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.3);
}

.ig-play-btn {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #133b33;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.ig-play-btn svg {
    margin-left: 3px;
    /* visual center alignment */
}

.ig-reel-card:hover .ig-play-btn {
    transform: scale(1.1);
}

/* Slider Arrows */
.ig-reels-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.25s, transform 0.25s, color 0.25s, opacity 0.25s;
    color: #133b33;
    padding: 0;
}

.ig-reels-arrow:hover {
    background-color: #133b33;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.ig-reels-arrow-left {
    left: -22px;
}

.ig-reels-arrow-right {
    right: -22px;
}

/* Fallback */
.ig-reels-fallback {
    text-align: center;
    padding: 50px 20px;
    background: rgba(43, 24, 16, 0.04);
    border-radius: 12px;
}

.ig-reels-fallback p {
    font-size: 16px;
    color: var(--brown-txt, #3D2A1A);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ig-reels-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--brown-deep, #2B1810);
    text-decoration: none;
    border: 1px solid var(--brown-deep, #2B1810);
    padding: 14px 30px;
    transition: all 0.3s;
}

.ig-reels-cta:hover {
    background: var(--brown-deep, #2B1810);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .ig-reels {
        padding: 60px 28px;
    }

    .ig-reel-card {
        flex: 0 0 calc((100% - 2 * 20px) / 3) !important;
    }
}

@media (max-width: 767px) {
    .ig-reels {
        padding: 48px 16px;
    }

    .ig-reel-card {
        flex: 0 0 100% !important;
    }

    .ig-reels-arrow {
        display: none !important;
    }

    .ig-reels-follow-btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    .ig-reels-header {
        margin-bottom: 24px;
    }
}

/* ── FOOTER ── */
footer.em-footer {
    background: #000000 !important;
    padding: 70px 60px 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-middle .footer-logo-img {
    height: 96px !important;
    max-height: 96px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 16px !important;
}

.footer-middle .footer-tagline {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff !important;
    margin-bottom: 16px;
    display: block;
    font-weight: 600;
    opacity: 1 !important;
}

.footer-middle .footer-about {
    font-size: 16px !important;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 1 !important;
}

.footer-rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 8px 20px;
    margin-top: 24px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-rating-badge:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-rating-badge .badge-num {
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
}

.footer-rating-badge .rating-stars {
    color: #F5A623;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-rating-badge .rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    font-weight: 500;
}

.footer-top>div {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff !important;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
    opacity: 1 !important;
}

.footer-logo-img {
    height: 64px !important;
    max-height: 64px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin-bottom: 14px !important;
}

.footer-tagline {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff !important;
    margin-bottom: 16px;
    display: block;
    font-weight: 600;
    opacity: 1 !important;
}

.footer-about {
    font-size: 16px !important;
    line-height: 1.8;
    color: #ffffff !important;
    max-width: 240px;
    font-weight: 500;
    opacity: 1 !important;
}

.footer-col-hd {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff !important;
    display: block;
    margin-bottom: 18px;
    font-weight: 700;
    opacity: 1 !important;
}

.footer-links {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.footer-links li {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.footer-links a {
    font-size: 15px;
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    opacity: 1 !important;
    text-align: left !important;
}

.footer-links a:hover {
    color: #ffffff !important;
    opacity: 1 !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-copy {
    font-size: 14px;
    color: #ffffff !important;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 1 !important;
}

.footer-socials {
    display: flex;
    gap: 24px;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
}

.footer-socials a {
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
    opacity: 1 !important;
}

.footer-socials a:hover {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* ── SINGLE PRODUCT PAGE SPECIFIC ── */
.em-single-product-container {
    max-width: 1200px;
    margin: 120px auto 80px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.em-single-product-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.em-single-product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.em-single-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #000000 !important;
    margin-bottom: 12px;
    line-height: 1.2;
}

.em-single-product-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #000000 !important;
    margin-bottom: 24px;
    font-weight: 500;
}

.em-single-product-description {
    font-size: 18px !important;
    line-height: 1.8;
    color: #000000 !important;
    margin-bottom: 36px;
    opacity: 0.8;
}

.em-single-product-btn {
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    max-width: 250px;
}

.em-single-product-btn:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

/* Light Background Content Force Overrides */
.intro-band h2,
.intro-band p:not(.sec-body),
.intro-band span,
.stats span,
.products h2,
.products p:not(.prod-desc),
.products span,
.products a:not(.prod-btn),
.split-body h2,
.split-body p:not(.sec-body),
.split-body span,
.split-body a:not(.btn-fill),
.process h2,
.process p:not(.step-d),
.process span,
.testimonial p:not(.quote-text),
.testimonial span,
.gift-cta h2,
.gift-cta p,
.gift-cta span,
.gift-cta a:not(.btn-fill),
.em-single-product-container h1,
.em-single-product-container p:not(.em-single-product-description),
.em-single-product-container span {
    color: #000000 !important;
}

@media (max-width: 480px) {
    .no-sidebar {
        padding-top: 62px;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    nav.em-nav {
        padding: 14px 20px;
    }

    .nav-logo-img {
        height: 54px !important;
        max-height: 54px !important;
    }

    .nav-left {
        margin-right: 16px;
    }

    .nav-right {
        gap: 18px;
    }

    .em-announcement-bar {
        top: 82px;
    }

    .nav-center {
        position: static;
        transform: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #042a25;
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 2px solid #031e1a;
        gap: 0;
        text-align: center;
        z-index: 10000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        justify-content: center;
    }

    .nav-links a {
        color: #ffffff !important;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 14px;
        padding: 14px 0;
        width: 100%;
        display: block;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-links a:hover {
        color: #ead9ce !important;
        background-color: rgba(255, 255, 255, 0.04);
    }

    .hero {
        min-height: 70vh;
        background-image: url('/wp-content/uploads/2026/07/El_Mitacoa_tablet.png') !important;
        background-position: center center !important;
        padding: 0 28px;
    }

    .hero-content {
        padding: 136px 0 50px;
        min-height: 70vh;
    }

    .hero-features {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .feature-bar {
        grid-template-columns: 1fr 1fr;
        gap: 28px 0;
        padding: 32px 28px;
    }

    .fb-item:nth-child(2) {
        border-right: none;
    }

    .fb-item {
        padding: 0 18px;
    }

    .intro-band {
        grid-template-columns: 1fr;
    }

    .intro-num {
        padding: 40px 24px 0;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .intro-content {
        padding: 40px 24px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .products {
        padding: 60px 24px;
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split {
        grid-template-columns: 1fr;
    }

    .split-img {
        height: 300px;
    }

    .split-body {
        padding: 40px 24px;
    }

    .process {
        padding: 60px 24px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pack-showcase {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 40px;
    }

    .gift-cta {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 24px;
    }

    footer.em-footer {
        padding: 50px 24px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .em-single-product-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .hero {
        background-image: url('/wp-content/uploads/2026/07/EL_MITACOA_9-16.jpeg') !important;
        background-position: center center !important;
        min-height: 75vh;
        padding: 62px 20px 0px 20px;
    }

    .hero-content {
        padding: 126px 0 40px;
        min-height: 75vh;
    }

    .hero-features {
        gap: 16px;
        justify-content: space-between;
        width: 100%;
    }

    .feature-bar {
        grid-template-columns: 1fr;
    }

    .fb-item {
        border-right: none;
        border-bottom: 1px solid rgba(107, 58, 36, 0.14);
        padding: 18px 0;
    }

    .fb-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero {
        background-image: url('/wp-content/uploads/2026/07/EL_MITACOA_9-16.jpeg') !important;
        background-position: center center !important;
        min-height: 100vw;
        padding: 62px 20px 0px 20px;
    }

    .hero-content {
        min-height: 100vw;
        padding: 80px 0 30px;
    }

    .hero-title {
        font-size: 38px !important;
    }
}

/* Super specific menu link override */
.em-nav a,
.em-nav span,
.nav-links a,
#nav-links-menu a,
nav.em-nav ul li a {
    color: #ffffff !important;
}

.cart-badge-count {
    color: #042a25 !important;
}

/* ── NEW REPLICATED CART DESIGN FROM SCRATCH ── */
:root {
    --teal: #133B33;
    --teal-dk: #0E2E27;
    --page-bg: #F4F5F4;
    --card: #FFFFFF;
    --summary-bg: #F4F5F5;
    --text: #1A1A1A;
    --muted: #6B7280;
    --line: #EDEDED;
    --line-soft: #F0F0F0;
    --qty-bg: #F3F1F2;
    --trash: #E8412A;
}

/* Background & Wrapper resets */
.woocommerce-cart {
    background: var(--page-bg) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
}

.woocommerce-cart #content,
.woocommerce-cart .site-content {
    background: var(--page-bg) !important;
    padding: 40px 0 !important;
}

.woocommerce-cart .entry-header {
    background: transparent !important;
    border-bottom: none !important;
    padding: 0 !important;
    text-align: left !important;
    max-width: 1280px !important;
    margin: 0 auto 24px auto !important;
    padding: 0 24px !important;
}

.woocommerce-cart h1.entry-title {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    margin: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
}

/* Layout Grid */
.woocommerce-cart .woocommerce {
    display: grid !important;
    grid-template-columns: 1fr 360px !important;
    gap: 28px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    align-items: start !important;
}

/* Hide top notices visually — they are cloned near Order Summary by cart.js */
.woocommerce-cart .woocommerce-notices-wrapper {
    grid-column: 1 / -1 !important;
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Cart form card */
.woocommerce-cart .woocommerce-cart-form {
    background: var(--card) !important;
    border-radius: 14px !important;
    padding: 28px 32px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    border: none !important;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

/* Cart table elements */
.woocommerce-cart-form table.cart {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
    margin: 0 !important;
}

.woocommerce-cart-form table.cart thead {
    display: block !important;
}

.woocommerce-cart-form table.cart thead tr {
    display: grid !important;
    grid-template-columns: 108px 1.5fr 0.9fr 1.1fr 0.9fr 0.7fr !important;
    align-items: center !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid var(--line) !important;
}

.woocommerce-cart-form table.cart thead tr th {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    text-transform: none !important;
    border: none !important;
    padding: 0 !important;
    text-align: left !important;
    background: transparent !important;
}

.woocommerce-cart-form table.cart thead tr th.product-thumbnail {
    order: 1 !important;
}

.woocommerce-cart-form table.cart thead tr th.product-name {
    order: 2 !important;
    padding-left: 16px !important;
}

.woocommerce-cart-form table.cart thead tr th.product-price {
    order: 3 !important;
}

.woocommerce-cart-form table.cart thead tr th.product-quantity {
    order: 4 !important;
}

.woocommerce-cart-form table.cart thead tr th.product-subtotal {
    order: 5 !important;
}

.woocommerce-cart-form table.cart thead tr th.product-remove {
    order: 6 !important;
    text-align: center !important;
}

.woocommerce-cart-form table.cart tbody {
    display: block !important;
}

.woocommerce-cart-form table.cart tbody tr.cart_item {
    display: grid !important;
    grid-template-columns: 108px 1.5fr 0.9fr 1.1fr 0.9fr 0.7fr !important;
    align-items: center !important;
    padding: 24px 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
    background: transparent !important;
}

.woocommerce-cart-form table.cart tbody tr.cart_item:last-child {
    border-bottom: none !important;
}

.woocommerce-cart-form table.cart tbody tr td {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Cell contents */
.woocommerce-cart-form table.cart td.product-thumbnail {
    order: 1 !important;
}

.woocommerce-cart-form table.cart td.product-thumbnail img {
    width: 108px !important;
    height: 100px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    box-shadow: none !important;
}

.woocommerce-cart-form table.cart td.product-name {
    order: 2 !important;
    padding: 0 16px !important;
}

.woocommerce-cart-form table.cart td.product-name a {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}

.woocommerce-cart-form table.cart td.product-price {
    order: 3 !important;
    font-size: 15px !important;
    color: var(--text) !important;
}

.woocommerce-cart-form table.cart td.product-quantity {
    order: 4 !important;
}

.woocommerce-cart-form table.cart td.product-subtotal {
    order: 5 !important;
    font-size: 15px !important;
    color: var(--text) !important;
    font-weight: 600 !important;
}

.woocommerce-cart-form table.cart td.product-remove {
    order: 6 !important;
    text-align: center !important;
}

.woocommerce-cart-form table.cart td.product-remove a.remove {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 20px !important;
    line-height: 1 !important;
    padding: 6px !important;
    display: inline-block !important;
    transition: transform 0.15s !important;
    color: var(--muted) !important;
    height: auto !important;
    width: auto !important;
    border-radius: 0 !important;
}

.woocommerce-cart-form table.cart td.product-remove a.remove:hover {
    transform: scale(1.12) !important;
    color: var(--trash) !important;
    background: transparent !important;
}

.woocommerce-cart-form table.cart td.product-remove a.remove::before {
    content: "🗑" !important;
}

/* Quantity Stepper */
.woocommerce-cart .quantity:not(.qty-styled) {
    opacity: 0 !important;
}

.woocommerce-cart .quantity.qty-styled {
    display: inline-flex !important;
    align-items: center !important;
    background: var(--qty-bg) !important;
    border-radius: 22px !important;
    padding: 4px !important;
    width: fit-content !important;
    border: none !important;
    height: auto !important;
}

.woocommerce-cart .quantity.qty-styled .qty-btn {
    width: 30px !important;
    height: 30px !important;
    border: none !important;
    background: transparent !important;
    font-size: 18px !important;
    line-height: 1 !important;
    color: var(--text) !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    transition: background 0.15s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.woocommerce-cart .quantity.qty-styled .qty-btn:hover {
    background: rgba(0, 0, 0, 0.06) !important;
}

.woocommerce-cart .quantity.qty-styled input.qty {
    width: 38px !important;
    height: 30px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 15px !important;
    color: var(--text) !important;
    pointer-events: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
}

/* Order Summary */
.woocommerce-cart .cart-collaterals {
    background: var(--card) !important;
    border-radius: 14px !important;
    padding: 28px 26px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    position: sticky !important;
    top: 24px !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    border: none !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
    font-size: 0 !important;
    margin-bottom: 22px !important;
}

.woocommerce-cart .cart-collaterals .cart_totals h2::before {
    content: "Order Summary" !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--teal) !important;
    display: block !important;
    font-family: inherit !important;
}

/* Coupon Box — Custom standalone form in sidebar */
.em-coupon-box {
    background: var(--summary-bg) !important;
    border-radius: 10px !important;
    padding: 16px !important;
    margin-bottom: 24px !important;
    border: none !important;
}

.em-coupon-box .em-coupon-label {
    font-size: 13px !important;
    color: var(--muted) !important;
    margin-bottom: 10px !important;
    font-weight: 500 !important;
}

.em-coupon-box .em-coupon-input {
    width: 100% !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    color: var(--text) !important;
    margin-bottom: 12px !important;
    outline: none !important;
    background: #fff !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    transition: border-color 0.2s !important;
}

.em-coupon-box .em-coupon-input:focus {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 3px rgba(19, 59, 51, 0.08) !important;
}

.em-coupon-box .em-coupon-apply {
    background: var(--card) !important;
    border: 1.5px dashed var(--muted) !important;
    border-radius: 8px !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    text-transform: none !important;
    display: inline-block !important;
    font-family: inherit !important;
}

.em-coupon-box .em-coupon-apply:hover {
    background: var(--teal) !important;
    color: #fff !important;
    border-color: var(--teal) !important;
    border-style: solid !important;
}

/* Inline coupon feedback */
.em-coupon-feedback {
    margin-top: 10px !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

.em-feedback-error {
    background: #fef2f2 !important;
    color: #991b1b !important;
    border: 1px solid #fecaca !important;
}

.em-feedback-success {
    background: #f0fdf4 !important;
    color: #166534 !important;
    border: 1px solid #bbf7d0 !important;
}

/* Sidebar notices — cloned from top for visibility near Order Summary */
.em-sidebar-notices {
    margin-bottom: 16px !important;
}

.em-sidebar-notices .woocommerce-message {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    border-left: 4px solid #22c55e !important;
    color: #166534 !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
}

.em-sidebar-notices .woocommerce-message::before {
    color: #22c55e !important;
}

.em-sidebar-notices .woocommerce-error {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    border-left: 4px solid #ef4444 !important;
    color: #991b1b !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
    list-style: none !important;
}

.em-sidebar-notices .woocommerce-error li {
    list-style: none !important;
}

.em-sidebar-notices .woocommerce-info {
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
    border-left: 4px solid #3b82f6 !important;
    color: #1e40af !important;
    padding: 14px 16px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
}

/* Totals Table */
.woocommerce-cart .cart-collaterals .shop_table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 0 !important;
    border: none !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
    background: transparent !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.cart-subtotal th,
.woocommerce-cart .cart-collaterals .shop_table tr.cart-subtotal td,
.woocommerce-cart .cart-collaterals .shop_table tr.shipping th,
.woocommerce-cart .cart-collaterals .shop_table tr.shipping td,
.woocommerce-cart .cart-collaterals .shop_table tr.tax-rate th,
.woocommerce-cart .cart-collaterals .shop_table tr.tax-rate td {
    font-size: 15px !important;
    color: var(--text) !important;
    font-weight: normal !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Coupon discount row — show discount line with green accent */
.woocommerce-cart .cart-collaterals .shop_table tr.cart-discount {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
    background: transparent !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.cart-discount th {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2e7d32 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.cart-discount td {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2e7d32 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.cart-discount td a.woocommerce-remove-coupon {
    color: var(--trash) !important;
    font-size: 12px !important;
    text-decoration: none !important;
    margin-left: 6px !important;
    font-weight: 400 !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover {
    text-decoration: underline !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.order-total {
    border-bottom: none !important;
    padding: 10px 0 4px !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.order-total th {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.order-total td {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-cart .cart-collaterals .shop_table tr.order-total td small {
    display: none !important;
}

/* Proceed to Checkout button */
.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    padding: 0 !important;
}

.woocommerce-cart .cart-collaterals .checkout-button {
    display: block !important;
    width: 100% !important;
    background: var(--teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    box-shadow: none !important;
}

.woocommerce-cart .cart-collaterals .checkout-button:hover {
    background: var(--teal-dk) !important;
}

/* Hide WooCommerce native elements */
.woocommerce-cart-form .actions .coupon {
    display: none !important;
}

.woocommerce-cart-form .actions {
    padding: 0 !important;
    border-top: none !important;
}

.woocommerce-cart-form button[name="update_cart"] {
    display: none !important;
}

.woocommerce-cart-form.processing {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .woocommerce-cart .woocommerce {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-cart .cart-collaterals {
        position: static !important;
    }
}

@media (max-width: 640px) {
    .woocommerce-cart .woocommerce {
        padding: 0 12px !important;
        gap: 16px !important;
    }

    .woocommerce-cart .woocommerce-cart-form {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .woocommerce-cart-form table.cart thead {
        display: none !important;
    }

    /* Hide WooCommerce default mobile label prefixes (e.g. "Product:", "Price:") */
    .woocommerce-cart-form table.cart td::before {
        display: none !important;
    }

    /* Each cart item as a card-style row */
    .woocommerce-cart-form table.cart tbody tr.cart_item {
        display: grid !important;
        grid-template-columns: 85px 1fr !important;
        grid-template-rows: auto auto auto !important;
        grid-template-areas:
            "thumb name"
            "thumb meta"
            "thumb actions" !important;
        gap: 6px 14px !important;
        padding: 16px 0 !important;
        border-bottom: 1px solid var(--line-soft) !important;
        align-items: center !important;
    }

    .woocommerce-cart-form table.cart tbody tr.cart_item:last-child {
        border-bottom: none !important;
    }

    /* Product Image */
    .woocommerce-cart-form table.cart td.product-thumbnail {
        display: block !important; /* Override WooCommerce default mobile hide */
        grid-area: thumb !important;
        order: unset !important;
    }

    .woocommerce-cart-form table.cart td.product-thumbnail img {
        width: 85px !important;
        height: 85px !important;
        border-radius: 8px !important;
        object-fit: cover !important;
    }

    /* Product Name */
    .woocommerce-cart-form table.cart td.product-name {
        grid-area: name !important;
        order: unset !important;
        padding: 0 32px 0 0 !important; /* Prevent overlap with absolute positioned trash button */
        align-self: start !important;
    }

    .woocommerce-cart-form table.cart td.product-name a {
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        color: var(--text) !important;
    }

    /* Price */
    .woocommerce-cart-form table.cart td.product-price {
        grid-area: meta !important;
        order: unset !important;
        padding: 0 32px 0 0 !important; /* Prevent overlap here too */
        font-size: 14px !important;
        color: var(--muted) !important;
        font-weight: 500 !important;
    }

    /* Quantity */
    .woocommerce-cart-form table.cart td.product-quantity {
        grid-area: actions !important;
        order: unset !important;
        padding: 0 !important;
    }

    .woocommerce-cart-form table.cart td.product-subtotal {
        display: none !important;
    }

    .woocommerce-cart-form table.cart td.product-remove {
        position: absolute !important;
        top: 14px !important;
        right: 0 !important;
        padding: 0 !important;
        z-index: 5 !important;
    }

    .woocommerce-cart-form table.cart td.product-remove a.remove {
        font-size: 16px !important; /* Slightly smaller for mobile refinement */
        padding: 4px !important;
    }

    .woocommerce-cart-form table.cart tbody tr.cart_item {
        position: relative !important;
    }

    /* Smaller qty stepper on mobile */
    .woocommerce-cart .quantity.qty-styled {
        border-radius: 18px !important;
        padding: 2px !important;
    }

    .woocommerce-cart .quantity.qty-styled .qty-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 16px !important;
    }

    .woocommerce-cart .quantity.qty-styled input.qty {
        width: 32px !important;
        height: 28px !important;
        font-size: 14px !important;
    }

    /* Order Summary card on mobile */
    .woocommerce-cart .cart-collaterals {
        padding: 20px 18px !important;
        border-radius: 12px !important;
    }

    .woocommerce-cart .cart-collaterals .cart_totals h2::before {
        font-size: 20px !important;
    }

    .woocommerce-cart .cart-collaterals .checkout-button {
        padding: 14px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }
}


/* Custom WooCommerce Notice Styles (Green Success) */
.woocommerce-cart .woocommerce-message {
    border-top-color: #2e7d32 !important;
    background: #f4f9f5 !important;
    color: #133B33 !important;
}

.woocommerce-cart .woocommerce-message::before {
    color: #2e7d32 !important;
}

.woocommerce-cart .woocommerce-message a.button {
    background: #133B33 !important;
    color: #ffffff !important;
}

.woocommerce-cart .woocommerce-message a.button:hover {
    background: #0E2E27 !important;
}


/* ══════════════════════════════════════════════════════════
   CHECKOUT PAGE — Replicated from checkout-page.html
   ══════════════════════════════════════════════════════════ */

/* Variables already defined in cart section:
   --teal, --teal-dk, --page-bg, --card, --summary-bg,
   --text, --muted, --line, --line-soft                     */
:root {
    --field-border: #DCDCDC;
    --field-focus: #133B33;
}

/* Page background & font */
.woocommerce-checkout {
    background: var(--page-bg) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
}

.woocommerce-checkout #content,
.woocommerce-checkout .site-content {
    background: var(--page-bg) !important;
    padding: 40px 0 !important;
}

/* Page Header */
.woocommerce-checkout .entry-header {
    background: transparent !important;
    border-bottom: none !important;
    padding: 0 !important;
    text-align: left !important;
    max-width: 1280px !important;
    margin: 0 auto 6px auto !important;
    padding: 0 24px !important;
}

.woocommerce-checkout h1.entry-title {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    margin: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
}

/* Breadcrumb / back-to-cart link */
.woocommerce-checkout .checkout-back-link {
    max-width: 1280px;
    margin: 0 auto 24px auto;
    padding: 0 24px;
    font-size: 14px;
    color: var(--muted);
}

.woocommerce-checkout .checkout-back-link a {
    color: var(--teal);
    text-decoration: none;
}

.woocommerce-checkout .checkout-back-link a:hover {
    text-decoration: underline;
}

/* Hide coupon toggle link at top */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon {
    display: none !important;
}

/* ── LAYOUT GRID ── */
.woocommerce-checkout form.woocommerce-checkout {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 28px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    align-items: start !important;
}

/* Notices span full width */
.woocommerce-checkout .woocommerce-notices-wrapper {
    grid-column: 1 / -1 !important;
}

/* Left column: billing + shipping + notes */
.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Right column: order review */
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order-wrap,
.woocommerce-checkout #order_review_heading {
    grid-column: 2 !important;
}

/* Hide the "Your order" heading — we replace with "Order Summary" */
.woocommerce-checkout #order_review_heading {
    display: none !important;
}

/* ── CARD STYLING ── */
/* Billing card */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
    background: var(--card) !important;
    border-radius: 14px !important;
    padding: 28px 32px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 24px !important;
}

/* Col-1, Col-2 resets */
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-checkout .col2-set {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Section headings with step numbers */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    margin-bottom: 22px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: inherit !important;
}

/* Step number badge — injected via CSS counter */
.woocommerce-checkout .woocommerce-billing-fields h3::before {
    content: "1" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: var(--teal) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
}

.woocommerce-checkout .woocommerce-shipping-fields h3::before,
.woocommerce-checkout .woocommerce-additional-fields h3::before {
    content: "2" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: var(--teal) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
}

/* ── FORM FIELDS ── */
/* Two-column grid for billing fields */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 20px !important;
}

/* Full width fields */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row-wide {
    grid-column: 1 / -1 !important;
}

/* First/last name side by side */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row-first {
    grid-column: 1 !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row-last {
    grid-column: 2 !important;
}

/* Form row resets */
.woocommerce-checkout .form-row {
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
}

/* Labels */
.woocommerce-checkout .form-row label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    margin-bottom: 7px !important;
    display: block !important;
}

.woocommerce-checkout .form-row label .required {
    color: #E8412A !important;
}

.woocommerce-checkout .form-row label .optional {
    color: var(--muted) !important;
    font-weight: 400 !important;
}

/* Input fields */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    border: 1px solid var(--field-border) !important;
    border-radius: 9px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    color: var(--text) !important;
    font-family: inherit !important;
    background: #fff !important;
    outline: none !important;
    width: 100% !important;
    box-shadow: none !important;
    transition: border-color 0.15s, box-shadow 0.15s !important;
    height: auto !important;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: var(--field-focus) !important;
    box-shadow: 0 0 0 3px rgba(19, 59, 51, 0.08) !important;
}

.woocommerce-checkout textarea {
    resize: vertical !important;
    min-height: 84px !important;
}

/* Additional fields (notes) wrapper */
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    width: 100% !important;
}

.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .form-row {
    width: 100% !important;
}

/* ── ORDER REVIEW — Right sidebar ── */
.woocommerce-checkout #order_review {
    background: var(--card) !important;
    border-radius: 14px !important;
    padding: 28px 26px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    position: sticky !important;
    top: 24px !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    border: none !important;
}

/* "Order Summary" title via ::before */
.woocommerce-checkout #order_review::before {
    content: "Order Summary" !important;
    display: block !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--teal) !important;
    margin-bottom: 22px !important;
    font-family: inherit !important;
}

/* Review order table */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100% !important;
    border: none !important;
    border-collapse: collapse !important;
    margin-bottom: 0 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
    display: none !important;
}

/* Cart items in order review */
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--line-soft) !important;
    background: transparent !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr td {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr td.product-name {
    flex: 1 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    line-height: 1.4 !important;
    min-width: 0 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr td.product-total {
    font-size: 14px !important;
    color: var(--text) !important;
    white-space: nowrap !important;
    font-weight: 500 !important;
}

/* Footer rows: subtotal, shipping, tax, total */
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    padding: 9px 0 !important;
    border-bottom: none !important;
    background: transparent !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr td {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.shipping th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.tax-rate th {
    font-size: 14px !important;
    color: var(--muted) !important;
    font-weight: normal !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.shipping td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.tax-rate td {
    font-size: 14px !important;
    color: var(--text) !important;
    font-weight: normal !important;
}

/* Coupon discount row on checkout */
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.cart-discount {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    padding: 9px 0 !important;
    border-bottom: none !important;
    background: transparent !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.cart-discount th {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2e7d32 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.cart-discount td {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2e7d32 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.cart-discount td a.woocommerce-remove-coupon {
    color: var(--trash) !important;
    font-size: 11px !important;
    text-decoration: none !important;
    margin-left: 4px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.order-total {
    border-top: 1px solid var(--line) !important;
    margin-top: 8px !important;
    padding-top: 10px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.order-total th {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.order-total td {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr.order-total td small {
    font-size: 13px !important;
    color: var(--muted) !important;
    font-weight: normal !important;
    display: block !important;
    text-align: right !important;
    margin-top: 2px !important;
}

/* ── PAYMENT METHODS ── */
.woocommerce-checkout #payment {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    margin-top: 12px !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    border: 1px solid var(--field-border) !important;
    border-radius: 10px !important;
    padding: 16px 18px !important;
    margin-bottom: 12px !important;
    cursor: pointer !important;
    transition: border-color 0.15s, background 0.15s !important;
    background: transparent !important;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
    margin-bottom: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li:hover {
    border-color: var(--teal) !important;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    accent-color: var(--teal) !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    cursor: pointer !important;
}

.woocommerce-checkout #payment ul.payment_methods li .payment_box {
    font-size: 12px !important;
    color: var(--muted) !important;
    margin-top: 6px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li .payment_box::before {
    display: none !important;
}

/* Place Order button */
.woocommerce-checkout #payment .place-order {
    padding: 0 !important;
    margin-top: 20px !important;
}

.woocommerce-checkout #place_order {
    display: block !important;
    width: 100% !important;
    background: var(--teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    box-shadow: none !important;
    font-family: inherit !important;
    height: auto !important;
}

.woocommerce-checkout #place_order:hover {
    background: var(--teal-dk) !important;
}

/* Privacy & terms */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-size: 12px !important;
    color: var(--muted) !important;
    margin-top: 16px !important;
    text-align: center !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--teal) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .woocommerce-checkout form.woocommerce-checkout {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-checkout #order_review {
        position: static !important;
        grid-column: 1 !important;
    }

    .woocommerce-checkout #customer_details {
        grid-column: 1 !important;
    }
}

@media (max-width: 640px) {
    .woocommerce-checkout form.woocommerce-checkout {
        padding: 0 14px !important;
    }

    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-shipping-fields,
    .woocommerce-checkout .woocommerce-additional-fields {
        padding: 22px 18px !important;
    }

    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row-first,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row-last {
        grid-column: 1 !important;
    }
}

/* Green notice on checkout too */
.woocommerce-checkout .woocommerce-message {
    border-top-color: #2e7d32 !important;
    background: #f4f9f5 !important;
    color: #133B33 !important;
}

.woocommerce-checkout .woocommerce-message::before {
    color: #2e7d32 !important;
}

/* ── PREMIUM BLOG IMAGE HOVER & CLICKABILITY ── */
.blog-post .post-thumb {
    background: transparent !important;
}

.blog-post:hover .post-thumb img {
    opacity: 0.95 !important;
    transform: scale(1.05) !important;
}

.blog-post .post-thumb img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease !important;
}

/* ── SINGLE POST & BLOG ARCHIVE HEADER SPACING & BANNER HEIGHT ── */
body.single-post #blog-content,
body.blog #blog-content {
    margin-top: 90px !important;
}

body.single-post #blog-content .featured-img,
body.single-post #blog-content .featured-img .post-thumbnail {
    height: 420px !important;
}

body.single-post #blog-content .featured-img img {
    height: 420px !important;
    object-fit: cover !important;
    opacity: 0.65 !important;
}

body.single-post #blog-content .featured-img .single-meta-box {
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
}

body.single-post #blog-content .featured-img h1 {
    font-size: 38px !important;
    font-family: 'Playfair Display', serif !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

body.single-post #blog-content .featured-img ul.meta-info li,
body.single-post #blog-content .featured-img ul.meta-info li a {
    color: #ffffff !important;
    font-size: 15px !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5) !important;
}

body.single-post #blog-content .featured-img .bread_crumb,
body.single-post #blog-content .featured-img .bread_crumb a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5) !important;
}

/* ==========================================================================
   Checkout Page — International Phone Input & Country Search
   ========================================================================== */
.woocommerce-checkout .iti {
    width: 100% !important;
    display: block !important;
}

.woocommerce-checkout .iti__country-list {
    border-radius: 8px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    max-width: 400px !important;
    background-color: #ffffff !important;
    z-index: 9999 !important;
}

.woocommerce-checkout .iti__country {
    padding: 10px 14px !important;
    transition: background-color 0.2s ease !important;
}

.woocommerce-checkout .iti__country:hover,
.woocommerce-checkout .iti__country.iti__highlight {
    background-color: rgba(19, 59, 51, 0.05) !important;
}

.woocommerce-checkout .iti__selected-country {
    background-color: rgba(19, 59, 51, 0.02) !important;
    padding: 8px 12px !important;
}

.woocommerce-checkout .iti__search-input {
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    margin: 8px !important;
    width: calc(100% - 16px) !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout .iti__selected-dial-code {
    font-size: 15px !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #133b33 !important;
    font-weight: 500 !important;
}

.woocommerce-checkout .iti__selected-country {
    background-color: rgba(0, 0, 0, 0.03) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 9px 0 0 9px !important;
    padding: 0 12px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

input#billing_phone,
.woocommerce-checkout input#billing_phone,
.woocommerce-checkout .iti input#billing_phone,
.iti input[type="tel"] {
    padding-left: 78px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #ffffff !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 10px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 100000;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    letter-spacing: 0.5px;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    background-color: #20ba5a;
}

.whatsapp-icon-exact {
    flex-shrink: 0;
    display: block;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.floating-whatsapp:hover .whatsapp-icon-exact {
    transform: scale(1.05);
}

.whatsapp-text {
    text-transform: uppercase;
}

.whatsapp-emoji {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s;
}

.floating-whatsapp:hover .whatsapp-emoji {
    transform: translateX(-3px);
}

/* Responsive adjustment for small screens */
@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        padding: 0 !important;
        border-radius: 12px !important;
        width: 50px !important;
        height: 50px !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .whatsapp-text,
    .whatsapp-emoji {
        display: none !important;
    }

    .whatsapp-icon-exact {
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }
}

/* ── TRUST BADGES ── */
.trust-badges {
    background: var(--cream, #F5EDE6);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    border-bottom: 1.5px solid var(--line, rgba(0, 0, 0, 0.1));
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 40px;
    max-width: 1200px;
    width: 100%;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.badge-icon-wrap {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 1.5px solid var(--brown-deep, #2B1810);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-deep, #2B1810);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background-color 0.3s ease,
        color 0.3s ease;
    background: transparent;
}

.badge-icon-wrap svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.badge-item:hover .badge-icon-wrap {
    transform: scale(1.08);
    background-color: var(--brown-deep, #2B1810);
    color: var(--cream, #F5EDE6);
}

.badge-item:hover .badge-icon-wrap svg {
    transform: rotate(8deg);
}

.badge-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-deep, #2B1810);
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

/* Responsive layouts */
@media (max-width: 960px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 16px;
    }

    .badge-icon-wrap {
        width: 76px;
        height: 76px;
    }

    .badge-icon-wrap svg {
        width: 30px;
        height: 30px;
    }

    .badge-label {
        font-size: 13px;
    }
}

/* ── PRODUCT TABS ── */
.em-single-product-tabs-container {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 24px;
}

.em-product-tabs {
    margin: 0;
    width: 100%;
}

.em-tabs-nav {
    display: flex;
    gap: 32px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 28px !important;
}

.em-product-tabs button.em-tab-btn {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 14px 0 !important;
    margin: 0 0 -2px 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: rgba(0, 0, 0, 0.45) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
}

.em-product-tabs button.em-tab-btn:hover,
.em-product-tabs button.em-tab-btn:focus {
    color: var(--brown-deep, #2B1810) !important;
    background: transparent !important;
    border-bottom: 2px solid var(--brown-deep, #2B1810) !important;
}

.em-product-tabs button.em-tab-btn.active {
    color: var(--brown-deep, #2B1810) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--brown-deep, #2B1810) !important;
}

.em-tabs-content {
    min-height: 180px;
    font-size: 16px;
    line-height: 1.8;
}

.em-tab-pane {
    display: none;
    animation: tabFadeIn 0.4s ease forwards;
}

.em-tab-pane.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shipping Details List Styling (Matches 2nd image reference with brand colors) */
.em-shipping-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 10px;
}

.em-shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.em-shipping-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(107, 58, 36, 0.08);
    /* light brown tint */
    color: var(--brown-mid, #6B3A24);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.em-shipping-item:hover .em-shipping-icon-wrap {
    background-color: var(--brown-deep, #2B1810);
    color: #ffffff;
    transform: scale(1.05);
}

.em-shipping-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.em-shipping-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.em-shipping-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--brown-deep, #2B1810);
    margin: 0;
}

.em-shipping-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.6;
}

.em-shipping-footnote {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 28px;
}