/* ==========================================================================
   Alysum Modern Organic Theme Stylesheet
   Inspired by the Alysum Organic E-commerce Template
   ========================================================================== */

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

:root {
    --alysum-primary: #236557;
    --alysum-primary-hover: #1b4f44;
    --alysum-primary-light: #eaf3f0;
    --alysum-primary-dark: #174239;
    --alysum-yellow: #f5a623;
    --alysum-yellow-dark: #d97706;
    --alysum-yellow-light: #fef3c7;
    --alysum-orange: #ea580c;
    --alysum-cream: #f7f4ee;
    --alysum-cream-dark: #ede6d8;
    --alysum-dark: #18211e;
    --alysum-body: #4b5563;
    --alysum-muted: #6b7280;
    --alysum-border: #ebe5d8;
    --alysum-white: #ffffff;
    --alysum-radius-sm: 6px;
    --alysum-radius-md: 12px;
    --alysum-radius-lg: 20px;
    --alysum-radius-pill: 50px;
    --alysum-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --alysum-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --alysum-shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Global Typography & Resets */
html {
    height: auto;
    min-height: 100%;
    max-width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--alysum-body);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--alysum-body);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.alysum-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--alysum-dark);
    letter-spacing: -0.025em;
}

.alysum-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--alysum-yellow-dark);
    display: inline-block;
    margin-bottom: 8px;
}

/* Buttons */
.alysum-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--alysum-primary);
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--alysum-radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(35, 101, 87, 0.2);
    text-decoration: none !important;
}

.alysum-btn-primary:hover {
    background-color: var(--alysum-primary-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(35, 101, 87, 0.3);
}

.alysum-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--alysum-primary) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: var(--alysum-radius-pill);
    border: 2px solid var(--alysum-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.alysum-btn-outline:hover {
    background-color: var(--alysum-primary);
    color: #ffffff !important;
}

/* 1. Top Announcement Bar */
.alysum-topbar {
    background-color: var(--alysum-primary);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    font-weight: 500;
}

.alysum-topbar__cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #f1f5f9;
}

.alysum-topbar__cert i {
    color: #86efac;
    font-size: 13.5px;
}

.alysum-topbar__promo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.alysum-topbar a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 6px;
    transition: opacity 0.2s;
}

.alysum-topbar a:hover {
    opacity: 0.85;
}

/* 2. Main Header */
.alysum-header {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #f0ede6;
}

.alysum-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--alysum-dark) !important;
    letter-spacing: -0.04em;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.alysum-brand span {
    color: var(--alysum-primary);
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.alysum-brand:hover,
.alysum-brand:focus,
.alysum-brand:active {
    color: var(--alysum-primary) !important;
    text-decoration: none !important;
}

.alysum-brand:hover span,
.alysum-brand:focus span,
.alysum-brand:active span {
    color: var(--alysum-yellow-dark, #d97706) !important;
}

.alysum-header__deliver {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--alysum-muted);
}

.alysum-header__deliver i {
    color: var(--alysum-primary);
    font-size: 16px;
}

.alysum-header__deliver strong {
    color: var(--alysum-dark);
    font-weight: 700;
}

/* Modern Pill Search */
.alysum-search-form {
    display: flex;
    align-items: center;
    background: #f8faf9;
    border: 1.5px solid #e2ece7;
    border-radius: var(--alysum-radius-pill);
    padding: 4px 6px 4px 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.alysum-search-form:focus-within {
    border-color: var(--alysum-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(35, 101, 87, 0.1);
}

.alysum-search-form input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: var(--alysum-dark);
    outline: none;
}

.alysum-search-form input::placeholder {
    color: #94a3b8;
}

.alysum-search-form button {
    background: var(--alysum-primary);
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.alysum-search-form button:hover {
    background: var(--alysum-primary-hover);
}

/* Header Action Icons */
.alysum-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.alysum-header__action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: var(--alysum-dark);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.alysum-header__action-item:hover {
    color: var(--alysum-primary);
}

.alysum-icon-badge {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f8faf9;
    border: 1px solid #e8edea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alysum-dark);
    font-size: 16px;
    transition: all 0.2s;
}

.alysum-header__action-item:hover .alysum-icon-badge {
    background: var(--alysum-primary-light);
    color: var(--alysum-primary);
    border-color: var(--alysum-primary);
}

.alysum-icon-badge .badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--alysum-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* 3. Navigation Bar */
.alysum-navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e8edea !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
    position: relative !important;
    z-index: 990 !important;
}

.alysum-navbar .container > div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 52px !important;
    width: 100% !important;
}

.alysum-nav-list {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
    gap: 4px !important;
    flex-wrap: nowrap !important; /* Never wrap whole items or create second row */
}

.alysum-nav-list > li {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.alysum-nav-list > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    white-space: nowrap !important; /* CRITICAL: Never break text into awkward multi-lines */
    transition: all 0.2s ease;
    border-radius: 6px;
    position: relative;
    line-height: 1;
}

.alysum-nav-list > li:hover > a {
    color: #236557;
    background: rgba(35, 101, 87, 0.05);
}

.alysum-nav-list > li.active > a {
    color: #236557;
    font-weight: 800;
}

/* Perfect bottom active indicator */
.alysum-nav-list > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    height: 3px;
    background: #236557;
    border-radius: 3px 3px 0 0;
}

/* Clean inline HOT badge */
.alysum-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 6px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.25);
    vertical-align: middle;
}

/* Symmetrical Right Certification Badge (Relocated to Topbar for Screen Symmetry) */
.alysum-header__deliver {
    display: none !important;
}

/* Navigation Dropdown */
.alysum-nav-list > li .header__menu__dropdown,
.alysum-nav-list > li .alysum-nav-dropdown,
.alysum-nav__list > li .header__menu__dropdown,
.alysum-nav__list > li .alysum-nav-dropdown {
    position: absolute !important;
    left: 0 !important;
    top: 100% !important;
    width: 250px !important;
    background: #ffffff !important;
    text-align: left !important;
    padding: 10px 0 !important;
    z-index: 1050 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(12px) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14) !important;
    border-radius: 14px !important;
    border: 1px solid #e2e8f0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.alysum-nav-list > li:hover .header__menu__dropdown,
.alysum-nav-list > li:hover .alysum-nav-dropdown,
.alysum-nav__list > li:hover .header__menu__dropdown,
.alysum-nav__list > li:hover .alysum-nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.alysum-nav-list > li .header__menu__dropdown li,
.alysum-nav-list > li .alysum-nav-dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alysum-nav-list > li .header__menu__dropdown li a,
.alysum-nav-list > li .alysum-nav-dropdown li a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--alysum-dark) !important;
    font-weight: 600;
    padding: 10px 20px;
    text-transform: none;
    display: block;
    transition: all 0.2s ease;
    border: none;
    line-height: 1.4;
    text-decoration: none !important;
}

.alysum-nav-list > li .header__menu__dropdown li a:hover,
.alysum-nav-list > li .alysum-nav-dropdown li a:hover {
    color: var(--alysum-primary) !important;
    background-color: var(--alysum-primary-light);
    padding-left: 24px;
}

/* Responsive adjustments for 992px - 1280px */
@media (min-width: 992px) and (max-width: 1280px) {
    .alysum-nav-list > li > a {
        padding: 0 8px;
        font-size: 12.5px;
    }
    .alysum-nav-badge {
        font-size: 8px;
        padding: 1px 4px;
        margin-left: 4px;
    }
    .alysum-header__deliver {
        padding: 5px 10px;
        font-size: 11.5px;
        margin-left: 8px;
    }
}

@media (min-width: 992px) and (max-width: 1120px) {
    .alysum-nav-list > li > a {
        padding: 0 5px;
        font-size: 12px;
    }
    .alysum-header__deliver {
        display: none !important; /* Hide badge on tighter screens so menu has full symmetry */
    }
}

/* Uniform Image Sizes for Cart & Wishlist Tables */
.shoping__cart__table table tbody tr td.shoping__cart__item,
.wishlist__table table tbody tr td.shoping__cart__item {
    display: flex;
    align-items: center;
    text-align: left;
}

.shoping__cart__table table tbody tr td.shoping__cart__item img,
.wishlist__table table tbody tr td.shoping__cart__item img {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: inline-block !important;
    margin-right: 20px !important;
    border: 1px solid #ebe5d8 !important;
    background: #fbf9f6 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Breadcrumbs Theme */
.breadcrumb-section {
    background-color: var(--alysum-cream);
    padding: 45px 0;
    margin-bottom: 40px;
}

.breadcrumb__text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--alysum-dark);
    margin-bottom: 8px;
}

.breadcrumb__option a {
    font-size: 14px;
    color: var(--alysum-primary);
    font-weight: 700;
}

.breadcrumb__option span {
    font-size: 14px;
    color: var(--alysum-body);
}

/* 4. Hero Section */
.alysum-hero {
    position: relative;
    background: #fbf9f6;
    border-radius: var(--alysum-radius-lg);
    margin: 24px auto;
    overflow: hidden;
    padding: 70px 60px;
    box-shadow: var(--alysum-shadow-sm);
}

.alysum-hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0.95;
    z-index: 1;
}

.alysum-hero__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0.15) 100%);
    z-index: 2;
}

.alysum-hero__content {
    position: relative;
    z-index: 3;
    max-width: 580px;
}

.alysum-hero__title {
    font-size: 54px;
    line-height: 1.12;
    font-weight: 800;
    color: var(--alysum-dark);
    margin: 12px 0 20px 0;
    letter-spacing: -0.03em;
}

.alysum-hero__desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--alysum-body);
    margin-bottom: 28px;
}

.alysum-hero__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.alysum-hero__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alysum-hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--alysum-dark);
}

.alysum-hero__features li i {
    color: var(--alysum-primary);
    font-size: 15px;
    background: var(--alysum-primary-light);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3 for 2 Promo Badge */
.alysum-hero__badge {
    position: absolute;
    top: 50px;
    right: 180px;
    z-index: 4;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--alysum-primary);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(35, 101, 87, 0.35);
    border: 3px solid #ffffff;
}

.alysum-hero__badge-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.alysum-hero__badge-tag {
    background: var(--alysum-yellow);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* 5. 3 Diet Banners */
.alysum-diet-banners {
    margin: 40px 0;
}

/* AgilityShare Biomechanical Category Feature Cards */
.mf-promo-card,
.alysum-diet-card {
    position: relative;
    border-radius: var(--alysum-radius-md);
    overflow: hidden;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: var(--alysum-shadow-sm);
}

.mf-promo-card:hover,
.alysum-diet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--alysum-shadow-md);
    color: #ffffff;
}

.mf-promo-card--knee,
.alysum-diet-card--keto {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.mf-promo-card--spine,
.alysum-diet-card--paleo {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.mf-promo-card--nutrition,
.alysum-diet-card--vegan {
    background: linear-gradient(135deg, #266e5f 0%, #174239 100%);
}

.mf-promo-card__text,
.alysum-diet-card__text {
    z-index: 2;
}

.mf-promo-card__sub,
.alysum-diet-card__sub {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 6px;
}

.mf-promo-card__title,
.alysum-diet-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.mf-promo-card__img,
.alysum-diet-card__img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    margin-left: 14px;
}

/* 6. Weekly Ad Section & Cards */
.alysum-weekly-ad {
    padding: 60px 0;
}

.alysum-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.alysum-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-top: 6px;
}

.alysum-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.alysum-card {
    background: #ffffff;
    border: 1px solid #ebe5d8;
    border-radius: var(--alysum-radius-md);
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.alysum-card:hover {
    transform: translateY(-4px);
    border-color: #d1c7b5;
    box-shadow: var(--alysum-shadow-md);
}

.alysum-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--alysum-yellow);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}

.alysum-card__fav {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ffffff;
    border: 1px solid #e8edea;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.alysum-card__fav:hover,
.alysum-card__fav.is-favorite {
    color: #e53637;
    background: #fff1f2;
    border-color: #fecdd3;
}

.alysum-card__pic {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
}

.alysum-card__pic img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.alysum-card:hover .alysum-card__pic img {
    transform: scale(1.05);
}

.alysum-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--alysum-dark);
    margin-bottom: 10px;
    line-height: 1.35;
    min-height: 40px;
}

.alysum-card__title a {
    color: inherit;
    text-decoration: none;
}

.alysum-card__title a:hover {
    color: var(--alysum-primary);
}

.alysum-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f3eee6;
}

.alysum-card__price {
    display: flex;
    flex-direction: column;
}

.alysum-card__price-current {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--alysum-dark);
}

.alysum-card__price-old {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}

.alysum-card__add-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--alysum-radius-sm);
    background: var(--alysum-primary);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.alysum-card__add-btn:hover {
    background: var(--alysum-primary-hover);
    transform: scale(1.05);
}

/* 7. Sustainability Section */
.alysum-sustainability {
    padding: 60px 0;
}

.alysum-sustainability__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 10px;
    margin-bottom: 24px;
}

.alysum-sustainability__text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--alysum-body);
    margin-bottom: 24px;
}

.alysum-sustainability__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alysum-sustainability__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--alysum-dark);
}

.alysum-sustainability__list li i {
    color: var(--alysum-primary);
}

/* 8. Healthy Groceries Shouldn't Break The Bank */
.alysum-healthy-section {
    background-color: var(--alysum-cream);
    padding: 80px 0;
    border-radius: var(--alysum-radius-lg);
    margin: 40px 0;
}

.alysum-bag-container {
    position: relative;
    text-align: center;
}

.alysum-bag-img {
    max-width: 100%;
    border-radius: var(--alysum-radius-md);
    box-shadow: var(--alysum-shadow-md);
}

.alysum-bag-sticker {
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--alysum-yellow);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
    border: 3px solid #ffffff;
}

.alysum-bag-sticker span {
    font-size: 11px;
    font-weight: 600;
}

.alysum-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.alysum-feature-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--alysum-dark);
    margin-bottom: 6px;
}

.alysum-feature-item p {
    font-size: 14px;
    color: var(--alysum-body);
    margin: 0;
    line-height: 1.55;
}

/* 9. Shop by Anatomical Zone (Interactive Section) */
.mf-anatomy-section,
.alysum-shop-by-diet {
    padding: 60px 0;
}

.mf-anatomy-lead,
.alysum-diet-lead-card {
    background: var(--alysum-yellow);
    border-radius: var(--alysum-radius-md);
    padding: 50px 36px;
    color: var(--alysum-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 24px rgba(245, 166, 35, 0.2);
}

.mf-anatomy-lead h3,
.alysum-diet-lead-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--alysum-dark);
    margin-bottom: 16px;
}

.mf-anatomy-lead p,
.alysum-diet-lead-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d2f10;
    margin-bottom: 30px;
}

.alysum-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.alysum-category-card {
    background: #ffffff;
    border: 1px solid #ebe5d8;
    border-radius: var(--alysum-radius-md);
    padding: 16px;
    text-align: center;
    text-decoration: none !important;
    color: var(--alysum-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.alysum-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--alysum-shadow-md);
    border-color: var(--alysum-primary);
    color: var(--alysum-primary);
}

.alysum-category-card__img {
    width: 90px;
    height: 90px;
    border-radius: var(--alysum-radius-sm);
    object-fit: cover;
    margin-bottom: 12px;
}

.alysum-category-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 10. Clinical Guides & Physiotherapy Articles */
.mf-clinical-guides,
.alysum-recipes-section {
    background-color: var(--alysum-cream);
    padding: 70px 0;
    border-radius: var(--alysum-radius-lg);
    margin: 40px 0;
}

.mf-guide-card,
.alysum-recipe-card {
    background: #ffffff;
    border-radius: var(--alysum-radius-md);
    overflow: hidden;
    box-shadow: var(--alysum-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mf-guide-card:hover,
.alysum-recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--alysum-shadow-md);
}

.mf-guide-card__pic,
.alysum-recipe-card__pic {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mf-guide-card__body,
.alysum-recipe-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mf-guide-card__title,
.alysum-recipe-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--alysum-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.mf-guide-card__desc,
.alysum-recipe-card__desc {
    font-size: 14px;
    color: var(--alysum-body);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* 11. Modern High-Contrast Clinical Footer */
.alysum-footer {
    background: linear-gradient(180deg, #123930 0%, #0a211b 100%) !important;
    color: #ffffff !important;
    padding: 65px 0 35px 0 !important;
    margin-top: 60px !important;
    border-top: 3px solid #34d399 !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.alysum-footer h4 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.75px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid #34d399 !important;
    display: inline-block !important;
    opacity: 1 !important;
}

.alysum-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.alysum-footer ul li {
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
}

.alysum-footer ul li a {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    opacity: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: all 0.2s ease !important;
}

.alysum-footer ul li a:hover {
    color: #34d399 !important;
    opacity: 1 !important;
    transform: translateX(4px) !important;
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.5) !important;
}

.alysum-footer p,
.alysum-footer-newsletter p {
    font-size: 14.5px !important;
    color: #ffffff !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.alysum-newsletter-box {
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 2px solid #34d399 !important;
    border-radius: 10px !important;
    padding: 4px 6px 4px 14px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
}

.alysum-newsletter-box:focus-within {
    background: #ffffff !important;
    border-color: #6ee7b7 !important;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.35) !important;
}

.alysum-newsletter-box input {
    background: transparent !important;
    border: none !important;
    color: #0f172a !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    width: 100% !important;
    outline: none !important;
    padding: 7px 0 !important;
}

.alysum-newsletter-box input::placeholder {
    color: #64748b !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.alysum-newsletter-box button {
    background: #236557 !important;
    border: none !important;
    color: #ffffff !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.alysum-newsletter-box button:hover {
    background: #184c41 !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
}

/* Google Ads & Merchant Center Policy Compliant Corporate Info Bar */
.alysum-footer__corporate {
    margin-top: 38px !important;
    padding: 24px 28px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
}

.alysum-footer__corp-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
}

.alysum-footer__corp-item i {
    font-size: 22px !important;
    color: #34d399 !important;
    margin-top: 3px !important;
    flex-shrink: 0 !important;
}

.alysum-footer__corp-title {
    display: block !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
}

.alysum-footer__corp-text {
    margin: 0 !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

.alysum-footer__corp-text a {
    color: #34d399 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, text-decoration 0.2s ease !important;
}

.alysum-footer__corp-text a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.alysum-footer__corp-sub {
    display: block !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-top: 3px !important;
}

@media (max-width: 767px) {
    .alysum-footer__corporate {
        padding: 20px 16px !important;
        margin-top: 28px !important;
    }
    .alysum-footer__corp-item {
        margin-bottom: 18px !important;
    }
    .alysum-footer__corp-item:last-child {
        margin-bottom: 0 !important;
    }
}

/* Footer Bottom Strip - High Contrast & Clean */
.alysum-footer__bottom {
    margin-top: 28px !important;
    padding-top: 22px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    font-size: 14.5px !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
}

.alysum-footer__notice {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

.alysum-footer__notice i {
    color: #34d399 !important;
    font-size: 16px !important;
}

.alysum-footer__copyright {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Universal footer contrast guarantee */
.alysum-footer,
.alysum-footer div,
.alysum-footer span,
.alysum-footer li,
.alysum-footer p {
    color: #ffffff;
}

/* Global Overrides for Alysum buttons and links */
.primary-btn {
    background-color: var(--alysum-primary) !important;
    border-radius: var(--alysum-radius-pill) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.primary-btn:hover {
    background-color: var(--alysum-primary-hover) !important;
}

.site-btn {
    background-color: var(--alysum-primary) !important;
    border-radius: var(--alysum-radius-pill) !important;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .alysum-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .alysum-hero__badge {
        right: 40px;
    }
}

@media (max-width: 991px) {
    .alysum-hero {
        padding: 50px 30px;
    }
    .alysum-hero__title {
        font-size: 40px;
    }
    .alysum-hero__badge {
        display: none;
    }
    .alysum-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .alysum-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .alysum-footer__bottom {
        flex-direction: column !important;
        gap: 14px !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .alysum-footer__notice {
        justify-content: center !important;
        text-align: center !important;
    }
}

@media (max-width: 575px) {
    .alysum-product-grid {
        grid-template-columns: 1fr;
    }
    .alysum-hero__title {
        font-size: 32px;
    }
    .alysum-category-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   AgilityShare Product Details & Variant Selectors UI
   ========================================================================== */

.product__details__pic__item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.product__details__pic__item--large {
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product__details__gallery-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.product__details__thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: #f8fafc;
}

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

.product__details__thumb:hover {
    border-color: #236557;
    transform: translateY(-2px);
}

.product__details__thumb.active {
    border-color: #236557;
    box-shadow: 0 0 0 2px rgba(35, 101, 87, 0.2);
}

/* Right Details Section */
.product__details__badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product__details__title {
    font-size: 28px;
    font-weight: 800;
    color: #18211e;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 8px;
}

.product__details__rating {
    margin-bottom: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.product__details__rating:hover {
    opacity: 0.85;
}

.product__details__rating span {
    font-size: 13px;
    color: #64748b;
    margin-left: 6px;
    text-decoration: underline;
    text-decoration-color: #cbd5e1;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.product__details__rating:hover span {
    color: #236557;
    text-decoration-color: #236557;
}

.product__details__price {
    font-size: 32px;
    font-weight: 800;
    color: #236557;
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product__details__price-old {
    font-size: 20px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.product__details__desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 18px;
}

/* Variant Groups */
.product__variants-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 26px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
}

.product__variant-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product__variant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.product__variant-label {
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product__variant-selected {
    color: #236557;
    font-weight: 700;
    background: rgba(35, 101, 87, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.product__variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product__variant-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product__variant-btn i {
    font-size: 11px;
    display: none;
}

.product__variant-btn:hover {
    border-color: #236557;
    color: #236557;
}

.product__variant-btn.active {
    background: #236557;
    border-color: #236557;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(35, 101, 87, 0.25);
}

.product__variant-btn.active i {
    display: inline-block;
}

/* Actions Row: Qty, Add to Cart, Buy Now, Wishlist */
.product__details__actions-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.product__details__qty-wishlist-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.product__details__btn-group {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.product__details__quantity {
    margin: 0 !important;
}

.pro-qty-custom {
    width: 130px;
    height: 50px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-sizing: border-box;
}

.pro-qty-custom .qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pro-qty-custom .qty-btn:hover {
    background: #236557;
    color: #ffffff;
}

.pro-qty-custom input {
    border: none;
    text-align: center;
    width: 40px;
    font-weight: 700;
    font-size: 16px;
    color: #18211e;
    background: transparent;
    -moz-appearance: textfield;
}

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

.product__details__wishlist-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 !important;
}

.product__details__wishlist-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.product__details__wishlist-btn.active {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444;
}

.product__details__add-btn {
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: #236557;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product__details__add-btn:hover {
    background: #18473d;
    transform: translateY(-1px);
    color: #ffffff;
}

.buy-now-btn {
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: #f5a623;
    color: #18211e;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.buy-now-btn:hover {
    background: #e0961a;
    transform: translateY(-1px);
    color: #18211e;
}

.product__details__text .heart-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 !important;
}

.product__details__text .heart-icon:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.product__details__text .heart-icon.active {
    background: #fee2e2;
    border-color: #ef4444;
    color: #ef4444;
}

/* Reviews List in Tab */
.product__details__tab__reviews {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 14px;
}

.product__review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
}

.product__review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.product__review-stars {
    color: #f5a623;
    font-size: 13px;
}

.product__review-header strong {
    font-size: 14px;
    color: #18211e;
}

.product__review-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 0;
    font-style: italic;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsiveness (User-Friendly & No Button Overlaps)
   ========================================================================== */

body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

@media (max-width: 991px) {
    /* Header mobile adjustments */
    .alysum-header {
        padding: 12px 0 !important;
        position: relative !important;
    }
    .alysum-header .row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
    .alysum-header [class*="col-"]:first-child,
    .alysum-header .col-6:first-child {
        flex: 0 0 auto !important;
        max-width: none !important;
        width: auto !important;
    }
    .alysum-header [class*="col-"]:last-child,
    .alysum-header .col-6:last-child {
        flex: 0 0 auto !important;
        max-width: none !important;
        width: auto !important;
        margin-left: auto !important;
    }
    .alysum-brand {
        font-size: 24px !important;
        white-space: nowrap !important;
    }
    .alysum-header__actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 12px !important;
        position: relative !important;
    }
    .alysum-header__action-item {
        display: inline-flex !important;
        align-items: center !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    .alysum-header__action-item.d-none,
    .alysum-header__action-item.d-lg-flex {
        display: none !important;
    }
    .alysum-icon-badge {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        font-size: 15px !important;
        position: relative !important;
    }
    .humberger__open {
        position: static !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        margin: 0 0 0 16px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f0fdf4 !important;
        border: 1.5px solid #bbf7d0 !important;
        border-radius: 10px !important;
        color: #236557 !important;
        font-size: 18px !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 6px rgba(35, 101, 87, 0.08) !important;
        line-height: normal !important;
    }

    /* Hero section tablet */
    .alysum-hero {
        padding: 40px 24px !important;
        border-radius: 20px !important;
    }
    .alysum-hero__title {
        font-size: 32px !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 767px) {
    /* 1. Top Announcement Bar */
    .alysum-topbar {
        padding: 8px 12px;
        font-size: 11.5px;
        line-height: 1.4;
        text-align: center;
    }
    .alysum-topbar .container {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .alysum-topbar a {
        font-weight: 800;
        display: inline-block;
    }

    /* 2. Brand & Header Actions: Shift Cart & Wishlist left, keep Menu isolated on the right */
    .alysum-header {
        padding: 10px 0 !important;
    }
    .alysum-header .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
        max-width: 100% !important;
    }
    .alysum-header .row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .alysum-header [class*="col-"]:first-child,
    .alysum-header .col-6:first-child {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
    }
    .alysum-header [class*="col-"]:last-child,
    .alysum-header .col-6:last-child {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        margin-left: auto !important;
    }
    .alysum-brand {
        font-size: 20px !important;
        white-space: nowrap !important;
    }
    .alysum-header__actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        position: static !important;
        margin: 0 !important;
    }
    .alysum-header__action-item {
        display: inline-flex !important;
        align-items: center !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    .alysum-header__action-item.d-none,
    .alysum-header__action-item.d-lg-flex {
        display: none !important;
    }
    .alysum-icon-badge {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 14px !important;
    }
    .alysum-icon-badge .badge-count {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        line-height: 16px !important;
    }
    .humberger__open {
        position: static !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin: 0 0 0 10px !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        font-size: 16px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f0fdf4 !important;
        border: 1.5px solid #bbf7d0 !important;
        border-radius: 10px !important;
        color: #236557 !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 6px rgba(35, 101, 87, 0.08) !important;
        line-height: normal !important;
        z-index: 10 !important;
    }

    /* Breadcrumbs on Mobile */
    .breadcrumb-section {
        padding: 35px 0 !important;
    }
    .breadcrumb__text h2 {
        font-size: 22px !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }

    /* 3. Hero Section on Mobile (alysum-hero) */
    .alysum-hero {
        padding: 28px 16px !important;
        border-radius: 16px !important;
        margin: 14px 0 !important;
    }
    .alysum-hero__content {
        max-width: 100% !important;
    }
    .alysum-hero__title {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin: 10px 0 14px 0 !important;
        word-break: break-word !important;
    }
    .alysum-hero__desc {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    .alysum-hero__buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    .alysum-hero__buttons a {
        width: 100% !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 12px !important;
        font-size: 14px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .alysum-hero__features {
        gap: 8px !important;
    }
    .alysum-hero__features li {
        font-size: 12.5px !important;
    }

    /* Category Banners on Mobile */
    .mf-promo-card,
    .alysum-diet-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }
    .mf-promo-card__title,
    .alysum-diet-card__title {
        font-size: 20px !important;
    }
    .mf-promo-card__img,
    .alysum-diet-card__img {
        width: 65px !important;
        height: 65px !important;
    }

    /* Healthy Recovery Kit & Mission Section on Mobile */
    .alysum-healthy-section h2,
    .alysum-sustainability__title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .alysum-bag-sticker {
        width: 80px !important;
        height: 80px !important;
        font-size: 13px !important;
        bottom: 10px !important;
        right: 15px !important;
    }

    /* 4. Product Details Page: Completely non-overlapping, user-friendly mobile actions */
    .product__details__pic__item {
        margin-bottom: 12px;
    }
    .product__details__pic__item--large {
        height: 280px;
        border-radius: 14px;
    }
    .product__details__gallery-row {
        gap: 8px;
        margin-top: 10px;
    }
    .product__details__thumb {
        flex: 1;
        height: 70px;
        border-radius: 8px;
    }

    .product__details__title {
        font-size: 22px;
        line-height: 1.3;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .product__details__price {
        font-size: 24px;
        margin-bottom: 14px;
    }
    .product__details__desc {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    /* Mobile Variant Groups (Touch-Friendly List) */
    .product__variant-group {
        background: #f8faf9;
        border: 1px solid #e2ece7;
        border-radius: 14px;
        padding: 12px 14px;
        margin-bottom: 14px;
    }
    .product__variant-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }
    .product__variant-label {
        font-size: 12px;
        color: #64748b;
    }
    .product__variant-selected {
        font-size: 12px;
        color: #236557;
        font-weight: 700;
    }
    .product__variant-options {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .product__variant-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
        margin: 0;
        text-align: left;
        line-height: 1.3;
    }
    .product__variant-btn i {
        margin-left: auto;
    }

    /* Mobile Actions Row: No Overlapping! */
    .product__details__actions-row {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        margin-top: 18px !important;
        margin-bottom: 24px !important;
    }
    .product__details__qty-wishlist-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .product__details__quantity {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        margin: 0 !important;
    }
    .pro-qty-custom {
        width: 100% !important;
        height: 48px !important;
        border-radius: 12px !important;
        padding: 0 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .pro-qty-custom .qty-btn {
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
        font-size: 14px !important;
    }
    .pro-qty-custom input {
        width: 44px !important;
        font-size: 16px !important;
    }
    .product__details__wishlist-btn {
        flex: 0 0 48px !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        max-width: 48px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        box-sizing: border-box !important;
    }

    .product__details__btn-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .product__details__add-btn {
        width: 100% !important;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        margin: 0 !important;
        box-shadow: 0 4px 14px rgba(35, 101, 87, 0.25);
    }
    .buy-now-btn {
        width: 100% !important;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 800;
        margin: 0 !important;
        box-shadow: 0 4px 14px rgba(245, 166, 35, 0.25);
    }

    /* Specs List on Mobile */
    .product__details__specs-list {
        margin-top: 20px;
        padding-top: 10px;
        border-top: 1px solid #e2ece7;
    }
    .product__details__specs-list li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 13px;
    }
    .product__details__specs-list li b {
        width: auto !important;
        margin-bottom: 2px;
        color: #1e293b;
    }
    .product__details__specs-list li span {
        color: #475569;
        line-height: 1.4;
    }

    /* Tabs on Details Page: Swipeable Chip Bar */
    .product__details__tab {
        padding-top: 30px;
    }
    .product__details__tab .nav-tabs:before,
    .product__details__tab .nav-tabs:after {
        display: none !important;
        content: none !important;
        width: 0 !important;
    }

    .product__details__tab .nav-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 8px !important;
        border-bottom: 1px solid #e2ece7 !important;
        padding-bottom: 10px !important;
        margin-bottom: 20px !important;
    }
    .product__details__tab .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    .product__details__tab .nav-tabs .nav-item {
        flex-shrink: 0 !important;
        margin: 0 !important;
    }
    .product__details__tab .nav-tabs .nav-link {
        white-space: nowrap !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
        border: 1.5px solid #e2ece7 !important;
        background: #f8faf9 !important;
        color: #475569 !important;
    }
    .product__details__tab .nav-tabs .nav-link.active {
        background: #236557 !important;
        border-color: #236557 !important;
        color: #ffffff !important;
    }

    /* 5. Mobile Shopping Cart: Card-Based Responsive View */
    .shoping__cart__table table,
    .shoping__cart__table thead,
    .shoping__cart__table tbody,
    .shoping__cart__table tr,
    .shoping__cart__table td {
        display: block !important;
        width: 100% !important;
    }
    .shoping__cart__table thead {
        display: none !important;
    }
    .shoping__cart__table tbody tr {
        position: relative !important;
        background: #ffffff !important;
        border: 1px solid #e2ece7 !important;
        border-radius: 16px !important;
        padding: 16px !important;
        margin-bottom: 16px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    }
    .shoping__cart__table td.shoping__cart__item {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        border: none !important;
        padding: 0 0 12px 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .shoping__cart__table td.shoping__cart__item img {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        border-radius: 10px !important;
        object-fit: cover !important;
    }
    .shoping__cart__table td.shoping__cart__item h5 {
        font-size: 14px !important;
        font-weight: 700 !important;
        margin: 0 !important;
        line-height: 1.3 !important;
        padding-right: 32px !important;
    }
    .shoping__cart__table td.shoping__cart__price {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border: none !important;
        padding: 8px 0 !important;
        font-size: 14px !important;
        color: #64748b !important;
    }
    .shoping__cart__table td.shoping__cart__price::before {
        content: "Unit Price:" !important;
        font-weight: 600 !important;
        color: #64748b !important;
    }
    .shoping__cart__table td.shoping__cart__quantity {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border: none !important;
        padding: 8px 0 !important;
    }
    .shoping__cart__table td.shoping__cart__quantity::before {
        content: "Quantity:" !important;
        font-weight: 600 !important;
        color: #64748b !important;
    }
    .shoping__cart__table td.shoping__cart__quantity .quantity {
        width: auto !important;
    }
    .shoping__cart__table td.shoping__cart__quantity .pro-qty {
        width: 100px !important;
        height: 38px !important;
        border-radius: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        border: 1px solid #cbd5e1 !important;
        padding: 0 8px !important;
    }
    .shoping__cart__table td.shoping__cart__quantity .pro-qty input {
        width: 35px !important;
        height: 36px !important;
        font-size: 14px !important;
        text-align: center !important;
        border: none !important;
        font-weight: 700 !important;
    }
    .shoping__cart__table td.shoping__cart__quantity .pro-qty .qtybtn {
        font-size: 16px !important;
        cursor: pointer !important;
        color: #64748b !important;
        user-select: none !important;
    }
    .shoping__cart__table td.shoping__cart__total {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border: none !important;
        padding: 10px 0 0 0 !important;
        border-top: 1px dashed #e2ece7 !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        color: #236557 !important;
    }
    .shoping__cart__table td.shoping__cart__total::before {
        content: "Subtotal:" !important;
        font-weight: 700 !important;
        color: #1e293b !important;
    }
    .shoping__cart__table td.shoping__cart__item__close {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        border: none !important;
        padding: 0 !important;
        width: auto !important;
    }
    .shoping__cart__table td.shoping__cart__item__close span {
        width: 28px !important;
        height: 28px !important;
        background: #fee2e2 !important;
        color: #ef4444 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 12px !important;
        cursor: pointer !important;
    }

    /* Cart Action Buttons Stacked */
    .shoping__cart__btns {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    .shoping__cart__btns a.cart-btn {
        display: block !important;
        width: 100% !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        border-radius: 12px !important;
        padding: 14px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
    }
    .shoping__continue {
        margin-top: 0 !important;
        margin-bottom: 24px !important;
    }
    .shoping__discount form {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        position: static !important;
    }
    .shoping__discount form input {
        width: 100% !important;
        border-radius: 12px !important;
        height: 48px !important;
        padding-left: 16px !important;
    }
    .shoping__discount form button {
        position: static !important;
        width: 100% !important;
        height: 48px !important;
        border-radius: 12px !important;
    }
    .shoping__checkout {
        border-radius: 16px !important;
        padding: 24px 20px !important;
        margin-top: 0 !important;
    }
    .shoping__checkout .primary-btn {
        width: 100% !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px !important;
        font-size: 15px !important;
    }

    /* 6. Mobile Wishlist: Card-Based Responsive View */
    .wishlist__table table,
    .wishlist__table thead,
    .wishlist__table tbody,
    .wishlist__table tr,
    .wishlist__table td {
        display: block !important;
        width: 100% !important;
    }
    .wishlist__table thead {
        display: none !important;
    }
    .wishlist__table tbody tr {
        position: relative !important;
        background: #ffffff !important;
        border: 1px solid #e2ece7 !important;
        border-radius: 16px !important;
        padding: 16px !important;
        margin-bottom: 16px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    }
    .wishlist__table td.shoping__cart__item {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        border: none !important;
        padding: 0 0 12px 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .wishlist__table td.shoping__cart__item img {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        border-radius: 10px !important;
        object-fit: cover !important;
    }
    .wishlist__table td.shoping__cart__item h5 {
        font-size: 14px !important;
        font-weight: 700 !important;
        margin: 0 !important;
        line-height: 1.3 !important;
        padding-right: 32px !important;
    }
    .wishlist__table td.shoping__cart__price {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border: none !important;
        padding: 8px 0 !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }
    .wishlist__table td.shoping__cart__price::before {
        content: "Price:" !important;
        font-weight: 600 !important;
        color: #64748b !important;
    }
    .wishlist__table td.shoping__cart__total {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border: none !important;
        padding: 8px 0 !important;
    }
    .wishlist__table td.shoping__cart__total::before {
        content: "Status:" !important;
        font-weight: 600 !important;
        color: #64748b !important;
    }
    .wishlist__table td:nth-child(4) {
        border: none !important;
        padding: 10px 0 0 0 !important;
    }
    .wishlist__table td:nth-child(4) button.wishlist__add-btn {
        width: 100% !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px !important;
        font-size: 14px !important;
    }
    .wishlist__table td.shoping__cart__item__close {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        border: none !important;
        padding: 0 !important;
        width: auto !important;
    }
    .wishlist__table td.shoping__cart__item__close span {
        width: 28px !important;
        height: 28px !important;
        background: #fee2e2 !important;
        color: #ef4444 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 12px !important;
        cursor: pointer !important;
    }

    /* 7. Catalog & Homepage Product Cards on Mobile */
    .alysum-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .alysum-card {
        padding: 12px !important;
        border-radius: 14px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    .alysum-card__pic {
        height: 150px !important;
    }
    .alysum-card__title a {
        font-size: 13px !important;
        height: 34px !important;
        line-height: 1.3 !important;
    }
    .alysum-card__footer {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-top: auto !important;
        padding-top: 8px !important;
        border-top: 1px solid #f3eee6 !important;
    }
    .alysum-card__price {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
    }
    .alysum-card__price-current {
        font-size: 16px !important;
    }
    .alysum-card__price-old {
        font-size: 11.5px !important;
    }
    /* Compact, elegant Add to Cart button on mobile tiles */
    .alysum-card__add-btn {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #236557 !important;
        color: #ffffff !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 6px rgba(35, 101, 87, 0.2) !important;
    }
    .alysum-card__add-btn:hover {
        background: #18473d !important;
        transform: scale(1.05) !important;
    }
}

@media (max-width: 480px) {
    .alysum-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    .alysum-card {
        padding: 8px !important;
        border-radius: 12px !important;
    }
    .alysum-card__pic {
        height: 125px !important;
    }
    .alysum-card__title a {
        font-size: 12px !important;
        height: 30px !important;
        line-height: 1.25 !important;
    }
    .alysum-card__price-current {
        font-size: 14px !important;
    }
    .alysum-card__price-old {
        font-size: 10.5px !important;
    }
    .alysum-card__add-btn {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }
}

/* ==========================================================================
   AgilityShare Orthopedic: High-Contrast Typography, Crisp UI & Clinical Hero Styles
   WCAG AAA Compliant Legibility for Headings, Buttons, Badges, and Hero Sections
   ========================================================================== */

/* 1. Breadcrumb Hero & Blog Hero Clinical Overlay */
.breadcrumb-section,
.blog-details-hero {
    position: relative !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    padding: 65px 0 60px !important;
}

.breadcrumb-section::before,
.blog-details-hero::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(15, 23, 21, 0.84) 0%, rgba(24, 33, 30, 0.78) 55%, rgba(35, 101, 87, 0.72) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.breadcrumb-section .container,
.blog-details-hero .container {
    position: relative !important;
    z-index: 2 !important;
}

.breadcrumb__text h2,
.blog__details__hero__text h2 {
    color: #ffffff !important;
    font-size: 40px !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 12px !important;
}

.breadcrumb__option a {
    color: #f1f5f9 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) !important;
    transition: color 0.2s ease !important;
}

.breadcrumb__option a:hover {
    color: #5eead4 !important;
}

.breadcrumb__option a:after {
    background: #e2e8f0 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.breadcrumb__option span {
    color: #cbd5e1 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) !important;
}

.blog__details__hero__text ul li {
    color: #e2e8f0 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) !important;
}

/* 2. Universal High-Contrast Buttons */
.primary-btn,
.site-btn,
.alysum-btn-primary,
.shoping__cart__btns .primary-btn,
.cart-btn {
    background-color: #236557 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.28) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
}

.primary-btn:hover,
.site-btn:hover,
.alysum-btn-primary:hover,
.shoping__cart__btns .primary-btn:hover,
.cart-btn:hover {
    background-color: #174a3f !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(35, 101, 87, 0.4) !important;
    transform: translateY(-2px) !important;
}

.primary-btn:active,
.site-btn:active,
.alysum-btn-primary:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(35, 101, 87, 0.3) !important;
}

/* Secondary & Outline Buttons */
.alysum-btn-outline,
.cart-btn.cart-btn-right {
    background-color: transparent !important;
    color: #236557 !important;
    font-weight: 700 !important;
    border: 2px solid #236557 !important;
    border-radius: 50px !important;
    transition: all 0.25s ease !important;
}

.alysum-btn-outline:hover,
.cart-btn.cart-btn-right:hover {
    background-color: #236557 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(35, 101, 87, 0.25) !important;
}

/* 3. Universal High-Contrast Headings & Section Titles */
h1, h2, h3, h4, h5, h6,
.section-title h2,
.alysum-section-header__title,
.product__details__text h3,
.shoping__checkout h4,
.checkout__order h4 {
    color: #0f172a !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
}

/* Body Copy & Explanatory Text Crispness */
p, 
.product__details__text p,
.blog__item__text p,
.blog__details__text p,
.contact__widget p,
.checkout__input p {
    color: #334155 !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

/* ==========================================================================
   Modern, User-Friendly Contact Cards Grid (Google Ads Compliant)
   ========================================================================== */

.mf-contact-info {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    background: #f8fafc !important;
}

.mf-contact-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 30px 18px 24px !important;
    text-align: center !important;
    height: 100% !important;
    min-height: 250px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04) !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease !important;
    position: relative !important;
}

.mf-contact-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 28px rgba(35, 101, 87, 0.12) !important;
    border-color: #236557 !important;
}

.mf-contact-card__icon {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    background: #e6f4f1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 16px !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.mf-contact-card:hover .mf-contact-card__icon {
    background: #236557 !important;
    transform: scale(1.08) !important;
}

.mf-contact-card__icon span {
    font-size: 26px !important;
    color: #236557 !important;
    display: inline-block !important;
    line-height: 1 !important;
    margin: 0 !important;
    transition: color 0.2s ease !important;
}

.mf-contact-card:hover .mf-contact-card__icon span {
    color: #ffffff !important;
}

.mf-contact-card__title {
    font-size: 16.5px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.2px !important;
}

.mf-contact-card__body {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
    width: 100% !important;
}

.mf-contact-card__val {
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
    display: block !important;
    word-break: break-word !important;
    transition: color 0.2s ease !important;
}

a.mf-contact-card__val:hover {
    color: #236557 !important;
    text-decoration: underline !important;
}

.mf-contact-card__val-sub {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    display: block !important;
    margin-top: 4px !important;
    line-height: 1.45 !important;
}

.mf-contact-card__sub {
    margin-top: auto !important;
    padding-top: 10px !important;
    width: 100% !important;
    border-top: 1px dashed #e2e8f0 !important;
}

.mf-contact-card__sub span {
    display: inline-block !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    letter-spacing: 0.2px !important;
    text-transform: uppercase !important;
}

/* 4. Product Card Typography & Controls */
.product__item__text h6 a,
.alysum-card__title a {
    color: #1e293b !important;
    font-weight: 700 !important;
    transition: color 0.2s ease !important;
}

.product__item__text h6 a:hover,
.alysum-card__title a:hover {
    color: #236557 !important;
}

.product__item__text h5,
.alysum-card__price-current {
    color: #236557 !important;
    font-weight: 800 !important;
}

.filter__found h6 {
    color: #1e293b !important;
    font-weight: 700 !important;
}

.filter__found h6 span {
    color: #236557 !important;
    font-weight: 800 !important;
}

/* 5. Filter Sidebar Contrast */
.sidebar__item h4 {
    color: #0f172a !important;
    font-weight: 800 !important;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.sidebar__categories-list a {
    color: #334155 !important;
    font-weight: 600 !important;
    font-size: 14.5px !important;
    transition: all 0.2s ease !important;
}

.sidebar__categories-list a:hover {
    color: #236557 !important;
    transform: translateX(4px);
}

.sidebar__categories-list a.active {
    color: #236557 !important;
    font-weight: 800 !important;
}

.sidebar__item__size label {
    color: #1e293b !important;
    font-weight: 600 !important;
}

.sidebar__item__size label.active {
    color: #236557 !important;
    font-weight: 700 !important;
}

/* 6. Navigation Link Contrast */
.alysum-nav-list a,
.header__menu ul li a {
    color: #1e293b !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
}

.alysum-nav-list li.active > a,
.header__menu ul li.active > a,
.alysum-nav-list a:hover,
.header__menu ul li a:hover {
    color: #236557 !important;
}

/* 7. Tables & Checkout Contrast */
.shoping__cart__table th,
.checkout__order table th {
    color: #0f172a !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    border-bottom: 2px solid #cbd5e1 !important;
}

.shoping__cart__table td.shoping__cart__item h5 {
    color: #1e293b !important;
    font-weight: 700 !important;
}

.shoping__cart__table td.shoping__cart__price,
.shoping__cart__table td.shoping__cart__total {
    color: #236557 !important;
    font-weight: 800 !important;
}

.shoping__checkout li {
    color: #1e293b !important;
    font-weight: 600 !important;
}

.shoping__checkout li span {
    color: #236557 !important;
    font-weight: 800 !important;
}

/* 8. Mobile Breadcrumb Responsiveness */
@media (max-width: 767px) {
    .breadcrumb-section,
    .blog-details-hero {
        padding: 40px 0 35px !important;
    }
    .breadcrumb__text h2,
    .blog__details__hero__text h2 {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }
    .breadcrumb__option a,
    .breadcrumb__option span {
        font-size: 13.5px !important;
    }
}

/* ==========================================================================
   Featured Recovery Sidebar Widget & Catalog Pagination Styling
   Concise, perfectly fitted within sidebar space, and modern pagination
   ========================================================================== */

/* Featured Recovery Widget - Expanded Modern Clinical Design */
.sidebar__item.mf-featured-recovery-widget,
.sidebar__item .latest-product__text {
    position: relative !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 18px !important;
    padding: 18px 16px 14px !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05) !important;
    box-sizing: border-box !important;
}

.latest-product__header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 14px !important;
    padding-bottom: 10px !important;
    border-bottom: 1.5px solid #f1f5f9 !important;
}

.sidebar__item .latest-product__text h4,
.latest-product__header h4 {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

/* Slider Navigation - Dedicated Header Placement */
#featured-recovery-nav,
.latest-product__nav {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    position: static !important;
    z-index: 1 !important;
}

/* Ensure buttons are properly styled in either container */
#featured-recovery-nav button,
#featured-recovery-nav .owl-prev,
#featured-recovery-nav .owl-next,
.sidebar__item .latest-product__text .owl-carousel .owl-nav button {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    border-radius: 50% !important;
    background: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    line-height: 1 !important;
    outline: none !important;
}

#featured-recovery-nav button:hover,
#featured-recovery-nav .owl-prev:hover,
#featured-recovery-nav .owl-next:hover,
.sidebar__item .latest-product__text .owl-carousel .owl-nav button:hover {
    background: #236557 !important;
    border-color: #236557 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(35, 101, 87, 0.25) !important;
    transform: scale(1.05) !important;
}

#featured-recovery-nav button:active,
#featured-recovery-nav .owl-prev:active,
#featured-recovery-nav .owl-next:active {
    transform: scale(0.96) !important;
}

/* Fallback: Ensure owl-nav inside owl-carousel NEVER overlaps product cards */
.sidebar__item .latest-product__text .owl-carousel .owl-nav {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    margin: 10px 0 0 !important;
    z-index: 2 !important;
}

/* Featured Recovery Product Cards - Enlarged and Clinical */
.sidebar__item .latest-product__item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    text-decoration: none !important;
    overflow: hidden !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.sidebar__item .latest-product__item:last-child {
    margin-bottom: 0 !important;
}

.sidebar__item .latest-product__item:hover {
    background: #ffffff !important;
    border-color: #236557 !important;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.08) !important;
    transform: translateY(-2px) !important;
}

.sidebar__item .latest-product__item__pic {
    float: none !important;
    margin: 0 !important;
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    padding: 3px !important;
    transition: border-color 0.2s ease !important;
}

.sidebar__item .latest-product__item:hover .latest-product__item__pic {
    border-color: #cbd5e1 !important;
}

.sidebar__item .latest-product__item__pic img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.sidebar__item .latest-product__item__text {
    float: none !important;
    padding: 0 !important;
    overflow: hidden !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.sidebar__item .latest-product__item__text h6 {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    line-height: 1.35 !important;
    margin: 0 0 5px 0 !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: break-word !important;
    transition: color 0.2s ease !important;
}

.sidebar__item .latest-product__item:hover .latest-product__item__text h6 {
    color: #236557 !important;
}

.sidebar__item .latest-product__item__text span {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #236557 !important;
    display: block !important;
    line-height: 1 !important;
}

/* Modern Catalog Pagination */
.product__pagination {
    padding-top: 25px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.product__pagination a,
.product__pagination .mf-pagination-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    background: #ffffff !important;
    margin: 0 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) !important;
    cursor: pointer !important;
}

.product__pagination a:hover,
.product__pagination .mf-pagination-btn:hover {
    background: #236557 !important;
    border-color: #236557 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(35, 101, 87, 0.25) !important;
}

.product__pagination a.active,
.product__pagination .mf-pagination-btn.active {
    background: #236557 !important;
    border-color: #236557 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(35, 101, 87, 0.3) !important;
    pointer-events: none !important;
}

/* ==========================================================================
   12. Clinical Information Pages (Size Guide, Shipping, Fit Guarantee)
   ========================================================================== */

.mf-content-section {
    background-color: #f8fafc;
    padding: 60px 0 80px 0;
}

.mf-clinical-quote {
    background: #ffffff;
    border-left: 4px solid #236557;
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    margin-bottom: 40px;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mf-clinical-quote p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #334155;
    font-style: italic;
    margin-bottom: 16px;
}

.mf-clinical-quote .mf-quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mf-clinical-quote .mf-quote-author .author-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e6f4f1;
    color: #236557;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.mf-clinical-quote .mf-quote-author .author-meta h6 {
    margin: 0;
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
}

.mf-clinical-quote .mf-quote-author .author-meta span {
    font-size: 12.5px;
    color: #64748b;
    display: block;
}

.mf-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 30px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    margin-bottom: 35px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mf-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.mf-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mf-card h3 i {
    color: #236557;
    font-size: 22px;
}

.mf-card p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.mf-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 18px 0;
}

.mf-clinical-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.mf-clinical-table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 800;
    font-size: 13.5px;
    padding: 14px 18px;
    border-bottom: 2px solid #cbd5e1;
    text-align: left;
    white-space: nowrap;
}

.mf-clinical-table td {
    padding: 14px 18px;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.mf-clinical-table tr:last-child td {
    border-bottom: none;
}

.mf-clinical-table tr:nth-child(even) td {
    background: #f8fafc;
}

.mf-clinical-table tr:hover td {
    background: #f0fdf4;
}

.mf-badge-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12.5px;
    font-weight: 700;
    background: #e6f4f1;
    color: #236557;
    border: 1px solid #c7e8e1;
}

.mf-step-box {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.mf-step-box .step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: #236557;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(35, 101, 87, 0.25);
    flex-shrink: 0;
}

.mf-step-box .step-content h5 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.35;
}

.mf-step-box .step-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

.mf-alert-tip {
    background: #f0fdf9;
    border: 1px solid #a7f3d0;
    border-left: 4px solid #10b981;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 14px;
    color: #065f46;
    line-height: 1.65;
}

.mf-alert-tip strong {
    color: #047857;
    font-weight: 700;
}

.mf-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 24px 0 32px;
}

@media (max-width: 991px) {
    .mf-tier-grid {
        grid-template-columns: 1fr;
    }
}

.mf-tier-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mf-tier-item:hover {
    border-color: #236557;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(35, 101, 87, 0.1);
}

.mf-tier-item.featured {
    border-color: #236557;
    border-width: 2px;
    box-shadow: 0 6px 20px rgba(35, 101, 87, 0.12);
    position: relative;
}

.mf-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #236557;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 9999px;
}

.mf-tier-item .tier-name {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.mf-tier-item .tier-time {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 16px;
}

.mf-tier-item .tier-price {
    font-size: 28px;
    font-weight: 800;
    color: #236557;
    margin-bottom: 16px;
    line-height: 1;
}

.mf-tier-item .tier-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Checkout Form Solid Black Text & High-Contrast Form Inputs
   ========================================================================== */
.checkout__input input,
.checkout__input textarea,
.checkout__input select,
.checkout__form input,
.checkout__form textarea,
.checkout__form select {
    color: #000000 !important;
    background-color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15.5px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    height: 48px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

.checkout__input textarea {
    height: auto !important;
    padding-top: 12px !important;
}

.checkout__input input:focus,
.checkout__input textarea:focus,
.checkout__form input:focus,
.checkout__form textarea:focus,
.checkout__input select:focus,
.checkout__form select:focus {
    color: #000000 !important;
    background-color: #ffffff !important;
    border-color: #236557 !important;
    box-shadow: 0 0 0 3.5px rgba(35, 101, 87, 0.16) !important;
    outline: none !important;
}

.checkout__input input::placeholder,
.checkout__input textarea::placeholder {
    color: #94a3b8 !important;
    font-weight: 400 !important;
}

.checkout__input p {
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    margin-bottom: 8px !important;
}

.checkout__input p span {
    color: #dc2626 !important;
    font-weight: 800 !important;
}

/* Delivery Method Selection Cards */
.mf-checkout-subtitle {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-top: 24px !important;
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid #e2e8f0 !important;
    display: flex;
    align-items: center;
}

.mf-shipping-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mf-shipping-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 0;
}

.mf-shipping-card:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.mf-shipping-card.selected {
    border-color: #236557 !important;
    background: #f0fdf4 !important;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.1) !important;
}

.mf-shipping-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mf-shipping-radio-circle {
    width: 22px;
    height: 22px;
    border: 2px solid #94a3b8;
    border-radius: 50%;
    margin-right: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mf-shipping-card.selected .mf-shipping-radio-circle {
    border-color: #236557;
    background: #236557;
}

.mf-shipping-card.selected .mf-shipping-radio-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.mf-shipping-details {
    flex-grow: 1;
}

.mf-shipping-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.mf-shipping-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.mf-shipping-price {
    font-size: 15px;
    font-weight: 800;
    color: #236557;
}

.mf-shipping-price.free {
    color: #16a34a;
    background: #dcfce7;
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 12.5px;
}

.mf-shipping-meta {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

/* Payment Method Cards in Order Summary */
.mf-order-subtitle {
    font-size: 15.5px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-top: 18px !important;
    margin-bottom: 12px !important;
    display: flex;
    align-items: center;
}

.mf-payment-option {
    margin-bottom: 10px;
}

.mf-payment-card-label {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 14px 16px;
    border: 2px solid #236557 !important;
    border-radius: 14px;
    background: #f0fdf4 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0;
    width: 100%;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.08) !important;
    box-sizing: border-box;
}

.mf-payment-card-label:hover {
    border-color: #1b5347 !important;
    background: #ecfdf5 !important;
}

.mf-payment-option.selected .mf-payment-card-label {
    border-color: #236557 !important;
    background: #f0fdf4 !important;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.08) !important;
}

.mf-payment-card-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mf-payment-content {
    flex-grow: 1;
    width: 100%;
}

.mf-payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px !important;
}

.mf-payment-title-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.mf-payment-custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #236557;
    background: #236557;
    border-radius: 50%;
    margin: 0 !important;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(35, 101, 87, 0.2);
    transition: all 0.2s ease;
}

.mf-payment-custom-radio::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 50%;
}

.mf-payment-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
    letter-spacing: 0.2px !important;
    white-space: nowrap !important;
}

.mf-badge-popular {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #236557 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px !important;
    line-height: 1 !important;
    padding: 5px 11px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 6px rgba(35, 101, 87, 0.15) !important;
}

.mf-badge-popular i {
    margin-right: 5px !important;
    font-size: 11.5px !important;
}

.mf-payment-desc-box {
    background: #ffffff !important;
    border: 1px solid #d1fae5 !important;
    border-radius: 10px !important;
    padding: 11px 13px !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03) !important;
}

.mf-payment-desc {
    font-size: 12.5px !important;
    color: #334155 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

.mf-payment-desc strong {
    color: #0f172a !important;
    font-weight: 700 !important;
}

/* Shipping row in order summary */
.checkout__order__shipping-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #334155;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.checkout__order__shipping-row #checkout-shipping-cost {
    font-weight: 800;
    color: #236557;
}

/* ==========================================================================
   Checkout Coupon Banner & Collapsible Promo Drawer
   ========================================================================== */
.checkout h6,
.checkout__coupon-banner {
    display: flex !important;
    align-items: center !important;
    background: #f0fdf4 !important;
    border: 1.5px solid #86efac !important;
    border-left: 5px solid #236557 !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
    margin-bottom: 22px !important;
    box-shadow: 0 2px 12px rgba(35, 101, 87, 0.08) !important;
    font-size: 15px !important;
    color: #0f172a !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.checkout h6 span,
.checkout__coupon-icon {
    font-size: 19px !important;
    color: #236557 !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
}

.checkout h6 a,
.checkout__coupon-link {
    color: #236557 !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.checkout h6 a:hover,
.checkout__coupon-link:hover {
    color: #14532d !important;
    text-decoration: none !important;
}

.checkout__coupon-title {
    color: #0f172a !important;
    line-height: 1.5 !important;
}

.checkout__coupon-badge {
    display: inline-block !important;
    background: #236557 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    letter-spacing: 0.75px !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
    margin-left: 6px !important;
    box-shadow: 0 2px 6px rgba(35, 101, 87, 0.2) !important;
    vertical-align: middle !important;
}

/* Collapsible Coupon Drawer */
.checkout__coupon-drawer {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06) !important;
}

.checkout__coupon-instruction {
    font-size: 14px !important;
    color: #475569 !important;
    margin-bottom: 14px !important;
    font-weight: 500 !important;
}

.checkout__coupon-form-row {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.checkout__coupon-field {
    height: 48px !important;
    width: 320px !important;
    max-width: 100% !important;
    border: 1.5px solid #94a3b8 !important;
    border-radius: 8px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    background: #ffffff !important;
}

.checkout__coupon-field:focus {
    border-color: #236557 !important;
    box-shadow: 0 0 0 3px rgba(35, 101, 87, 0.16) !important;
    outline: none !important;
}

.checkout__coupon-field::placeholder {
    color: #94a3b8 !important;
    text-transform: none !important;
    font-weight: 400 !important;
}

.checkout__coupon-btn {
    height: 48px !important;
    background: #236557 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0 24px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.checkout__coupon-btn:hover {
    background: #194e43 !important;
    transform: translateY(-1px) !important;
}

.checkout__coupon-status,
.mf-order-coupon-status {
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    margin-top: 12px !important;
    display: none;
    align-items: center;
    gap: 8px !important;
}

.checkout__coupon-status.active,
.mf-order-coupon-status.active {
    display: flex !important;
}

.status-success {
    background: #dcfce7 !important;
    color: #15803d !important;
    border: 1.5px solid #86efac !important;
}

.status-error {
    background: #fee2e2 !important;
    color: #b91c1c !important;
    border: 1.5px solid #fca5a5 !important;
}

/* ==========================================================================
   Modern Symmetrical Order Summary Card & Controls
   ========================================================================== */
.checkout__order {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06) !important;
    padding: 30px 24px !important;
    position: relative !important;
}

.checkout__order .mf-order-title,
.checkout__order h4 {
    color: #0f172a !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    border-bottom: 1.5px solid #f1f5f9 !important;
    padding-bottom: 16px !important;
    margin-bottom: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.checkout__order .checkout__order__products {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 12.5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    color: #64748b !important;
    font-weight: 700 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px dashed #e2e8f0 !important;
    margin-bottom: 12px !important;
}

.checkout__order .checkout__order__products span {
    float: none !important;
    color: #64748b !important;
}

.checkout__order ul {
    margin-bottom: 12px !important;
    padding: 0 !important;
}

.checkout__order ul li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 14px !important;
    color: #1e293b !important;
    line-height: 1.5 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #f8fafc !important;
    list-style: none !important;
}

.checkout__order ul li span {
    float: none !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 14px !important;
}

.checkout__order .checkout__order__subtotal {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 14.5px !important;
    color: #334155 !important;
    font-weight: 600 !important;
    border-top: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 12px 0 !important;
    margin: 0 !important;
}

.checkout__order .checkout__order__subtotal span {
    float: none !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    font-size: 15px !important;
}

/* Applied Discount Row */
.checkout__order__discount-row {
    display: none;
    justify-content: space-between !important;
    align-items: center !important;
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    margin: 10px 0 !important;
}

.checkout__order__discount-row.active {
    display: flex !important;
}

.discount-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    font-size: 13.5px !important;
    color: #15803d !important;
    line-height: 1 !important;
}

.mf-discount-text {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    color: #15803d !important;
    font-weight: 700 !important;
}

#applied-discount-code {
    font-weight: 800 !important;
    color: #14532d !important;
    letter-spacing: 0.3px !important;
}

.mf-discount-rate {
    color: #16a34a !important;
    font-weight: 600 !important;
}

.discount-val {
    font-weight: 800 !important;
    color: #16a34a !important;
    font-size: 15px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.mf-coupon-remove-btn {
    background: #fee2e2 !important;
    border: 1px solid #fca5a5 !important;
    color: #dc2626 !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 12px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    margin-left: 2px !important;
    flex-shrink: 0 !important;
}

.mf-coupon-remove-btn:hover {
    background: #ef4444 !important;
    color: #ffffff !important;
    border-color: #ef4444 !important;
}

.checkout__order__shipping-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 14px !important;
    color: #475569 !important;
    font-weight: 600 !important;
    padding: 11px 0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.checkout__order__shipping-row #checkout-shipping-cost {
    font-weight: 800 !important;
    color: #236557 !important;
    font-size: 14.5px !important;
}

.checkout__order .checkout__order__total {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 16px !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    border-bottom: 2px solid #e2e8f0 !important;
    padding: 14px 0 !important;
    margin-bottom: 18px !important;
}

.checkout__order .checkout__order__total span {
    float: none !important;
    color: #236557 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

/* Order Summary Promo Code Box */
.checkout__order__coupon-box {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    margin-bottom: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: left !important;
}

.mf-coupon-box-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
}

.mf-coupon-box-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.mf-coupon-box-badge {
    font-size: 11px !important;
    background: #ecfdf5 !important;
    color: #059669 !important;
    border: 1px solid #a7f3d0 !important;
    padding: 1px 6px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
}

.mf-order-coupon-group {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.mf-order-coupon-group input {
    height: 42px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    background: #ffffff !important;
    text-align: left !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.mf-order-coupon-group input:focus {
    border-color: #236557 !important;
    box-shadow: 0 0 0 2px rgba(35, 101, 87, 0.15) !important;
    outline: none !important;
}

.mf-order-coupon-group input::placeholder {
    color: #94a3b8 !important;
    text-transform: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    text-align: left !important;
}

.checkout__order #order-coupon-btn,
.mf-order-coupon-group button {
    height: 42px !important;
    line-height: 42px !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 80px !important;
    margin: 0 !important;
    margin-top: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #236557 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0 16px !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(35, 101, 87, 0.2) !important;
    box-sizing: border-box !important;
}

.checkout__order #order-coupon-btn:hover,
.mf-order-coupon-group button:hover {
    background: #194e43 !important;
    transform: translateY(-1px) !important;
}

.mf-order-coupon-status {
    width: 100% !important;
    text-align: center !important;
    margin-top: 8px !important;
    font-size: 12.5px !important;
    align-items: center;
    justify-content: center !important;
    gap: 6px !important;
}

.mf-order-coupon-status.active {
    display: flex !important;
}

/* 30-Day Guarantee Micro-Card */
.mf-order-guarantee-card {
    background: #f0fdfa !important;
    border: 1px solid #ccfbf1 !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    margin-bottom: 18px !important;
}

.mf-order-guarantee-card .checkout__input__checkbox {
    margin: 0 !important;
}

.mf-order-guarantee-card .checkout__input__checkbox label {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 4px !important;
    padding-left: 26px !important;
    display: block !important;
    cursor: pointer !important;
}

.mf-order-guarantee-card p {
    font-size: 12px !important;
    color: #475569 !important;
    line-height: 1.45 !important;
    margin: 4px 0 0 26px !important;
}

/* Payment Method Card in Order Summary */
.checkout__order .checkout__payment-methods {
    margin-bottom: 20px !important;
}

.checkout__order .mf-order-subtitle {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
}

/* Submit Button & Trust Note */
.checkout__order #checkout-submit-btn,
.checkout__order button[type="submit"] {
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    background: linear-gradient(135deg, #236557 0%, #1a4d42 100%) !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.5px !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.3) !important;
    transition: all 0.25s ease !important;
    padding: 0 20px !important;
    margin-top: 0 !important;
}

.checkout__order #checkout-submit-btn:hover,
.checkout__order button[type="submit"]:hover {
    background: linear-gradient(135deg, #1a4d42 0%, #12372f 100%) !important;
    box-shadow: 0 6px 18px rgba(35, 101, 87, 0.4) !important;
    transform: translateY(-1px) !important;
}

.mf-order-trust-badge {
    text-align: center !important;
    font-size: 11.5px !important;
    color: #64748b !important;
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
}

/* ==========================================================================
   Order Success Page Styles
   ========================================================================== */
.order-success-section {
    padding-top: 50px;
    padding-bottom: 70px;
    background: #f8fafc;
}

.mf-success-hero {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

.mf-success-icon-wrap {
    width: 72px;
    height: 72px;
    background: #ecfdf5;
    border: 3px solid #34d399;
    color: #059669;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
    box-shadow: 0 0 0 8px rgba(52, 211, 153, 0.15);
    animation: mfPulseCheck 2s infinite;
}

@keyframes mfPulseCheck {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(52, 211, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

.mf-success-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.mf-success-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
}

.mf-success-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mf-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13.5px;
    color: #334155;
}

.mf-meta-code {
    color: #236557;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.mf-status-badge {
    background: #059669 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
}

/* Manager Notification Alert Banner */
.mf-manager-alert {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-left: 6px solid #236557;
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 18px rgba(35, 101, 87, 0.09);
}

.mf-manager-alert__icon {
    font-size: 38px;
    color: #236557;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.mf-manager-alert__body {
    flex: 1;
}

.mf-manager-alert__title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mf-manager-alert__text {
    font-size: 14.5px;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Success Card Containers */
.mf-success-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}

.mf-success-card__title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

/* Items Table */
.mf-success-items-table {
    margin-bottom: 0;
}

.mf-success-items-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    font-weight: 700;
    border-top: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0 12px 0;
}

.mf-success-product-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0 !important;
    border-top: 1px solid #f1f5f9;
}

.mf-success-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.mf-success-item-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 3px;
}

.mf-success-item-qty {
    font-size: 13px;
    color: #64748b;
}

.mf-success-item-total {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    vertical-align: middle !important;
    padding: 12px 0 !important;
    border-top: 1px solid #f1f5f9;
    white-space: nowrap;
}

/* Totals Box */
.mf-success-totals {
    border-top: 1.5px solid #e2e8f0;
    padding-top: 14px;
    margin-top: 10px;
}

.mf-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14.5px;
    color: #475569;
    padding: 6px 0;
}

.mf-totals-row strong {
    color: #0f172a;
    font-weight: 700;
}

.mf-discount-row {
    background: #f0fdf4;
    padding: 6px 10px;
    border-radius: 6px;
    margin: 4px 0;
}

.mf-grand-total-row {
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.mf-grand-price {
    font-size: 22px;
    color: #236557;
    font-weight: 900;
}

/* Payment Badge Box */
.mf-payment-badge-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 18px;
}

.mf-payment-type-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.mf-payment-type-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Customer Details List */
.mf-customer-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mf-customer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.mf-customer-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mf-cust-label {
    color: #64748b;
    font-weight: 600;
    flex-shrink: 0;
}

.mf-cust-val {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.mf-customer-notes-row {
    flex-direction: column;
    align-items: stretch;
}

.mf-cust-notes-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #334155;
    font-style: italic;
    margin-top: 4px;
    line-height: 1.45;
}

.mf-guarantee-highlight {
    background: #f0fdfa !important;
    border-color: #99f6e4 !important;
}

/* Action Buttons */
.mf-action-btn {
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    padding: 13px 26px !important;
    letter-spacing: 0.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
}

.mf-btn-secondary {
    background: #ffffff !important;
    border: 2px solid #cbd5e1 !important;
    color: #334155 !important;
}

.mf-btn-secondary:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border-color: #94a3b8 !important;
}

.mf-btn-outline {
    background: transparent !important;
    border: 2px solid #236557 !important;
    color: #236557 !important;
}

.mf-btn-outline:hover {
    background: #236557 !important;
    color: #ffffff !important;
}

/* ==========================================================================
   Order Tracking Page Styles (track-order.html)
   ========================================================================== */
.track-order-section {
    padding-top: 48px;
    padding-bottom: 75px;
    background: #f8fafc;
}

/* Quick Order Lookup Card */
.mf-track-search-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 28px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.mf-track-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mf-track-heading {
    font-size: 23px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.mf-track-subheading {
    font-size: 14.5px;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.55;
}

.mf-track-form {
    max-width: 640px;
    margin: 20px auto 0 auto;
}

.mf-track-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mf-track-field-wrap {
    position: relative;
    flex: 1;
}

.mf-track-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 17px;
}

.mf-track-input {
    width: 100%;
    height: 52px;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 16px 0 46px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.mf-track-input:focus {
    border-color: #236557;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(35, 101, 87, 0.15);
    outline: none;
}

.mf-track-submit-btn {
    height: 52px;
    padding: 0 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: #236557;
    color: #ffffff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.25);
    transition: all 0.2s ease;
}

.mf-track-submit-btn:hover {
    background: #184e43;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(35, 101, 87, 0.35);
}

.mf-track-feedback {
    margin-top: 14px;
    font-size: 13.5px;
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
}

/* Quick Orders Chips Bar */
.mf-track-chips-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
}

.mf-chips-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mf-order-chip {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mf-order-chip:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    color: #0f172a;
}

.mf-order-chip.active {
    background: #ecfdf5;
    border-color: #10b981;
    color: #047857;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.18);
}

/* 4-Step Progress Card */
.mf-track-progress-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 26px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.mf-progress-header {
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 18px;
    margin-bottom: 26px;
}

.mf-order-num-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 10px;
}

.mf-order-num-text {
    font-size: 18px;
    font-weight: 900;
    color: #236557;
    letter-spacing: 0.5px;
}

.mf-copy-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #64748b;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
}

.mf-copy-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.mf-copy-btn.copied {
    background: #ecfdf5;
    color: #059669;
    border-color: #10b981;
}

.mf-status-capsule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1.5px solid #86efac;
    color: #047857;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 800;
}

.mf-pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: mfPulseDot 1.6s infinite;
}

@keyframes mfPulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Stepper Layout */
.mf-stepper-container {
    position: relative;
    padding: 10px 0 5px 0;
}

.mf-stepper-track-bg {
    position: absolute;
    top: 34px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    z-index: 1;
}

.mf-stepper-track-fill {
    position: absolute;
    top: 34px;
    left: 12.5%;
    height: 4px;
    background: #10b981;
    border-radius: 2px;
    z-index: 1;
    transition: width 0.5s ease;
    width: 33.33%;
}

.mf-stepper-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.mf-track-step {
    flex: 1 1 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

.mf-step-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.mf-track-step.completed .mf-step-node {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.mf-track-step.active .mf-step-node {
    background: #236557;
    border-color: #34d399;
    color: #ffffff;
    box-shadow: 0 0 0 6px rgba(35, 101, 87, 0.2);
    animation: mfPulseCheck 2s infinite;
}

.mf-step-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #334155;
    margin-bottom: 3px;
    line-height: 1.35;
}

.mf-track-step.completed .mf-step-title {
    color: #047857;
}

.mf-track-step.active .mf-step-title {
    color: #0f172a;
    font-weight: 900;
}

.mf-step-sub {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.mf-step-pill-badge {
    margin-top: 6px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.mf-step-pill-badge.active {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.mf-step-pill-badge.completed {
    background: #f1f5f9;
    color: #059669;
    border: 1px solid #e2e8f0;
}

/* Manager Notification Alert Banner Details */
.mf-contact-highlight {
    color: #236557;
    background: #e6f4f1;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.mf-manager-alert__features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    padding-top: 12px;
    margin-top: 10px;
    border-top: 1px dashed #bbf7d0;
}

.mf-alert-feat-item {
    font-size: 13px;
    color: #15803d;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Empty / Not Found Card */
.mf-not-found-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.mf-not-found-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fef2f2;
    color: #dc2626;
    border: 2px solid #fecaca;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.mf-not-found-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.mf-not-found-text {
    font-size: 14.5px;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
}

.mf-not-found-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Mobile Stepper Responsiveness */
@media (max-width: 768px) {
    .mf-track-input-group {
        flex-direction: column;
    }
    .mf-track-submit-btn {
        width: 100%;
    }
    .mf-stepper-track-bg,
    .mf-stepper-track-fill {
        display: none;
    }
    .mf-stepper-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        position: relative;
        padding-left: 20px;
    }
    .mf-stepper-grid::before {
        content: '';
        position: absolute;
        left: 43px;
        top: 24px;
        bottom: 24px;
        width: 3px;
        background: #e2e8f0;
        z-index: 1;
    }
    .mf-track-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
        max-width: 100%;
        flex: 1 1 100%;
        padding: 0;
        position: relative;
        z-index: 2;
    }
    .mf-step-node {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .mf-manager-alert {
        flex-direction: column;
        gap: 12px;
    }
    .mf-manager-alert__features {
        flex-direction: column;
        gap: 8px;
    }
}

/* Print Styles */
@media print {
    .alysum-header,
    .alysum-navbar,
    .breadcrumb-section,
    .alysum-footer,
    .mf-success-actions,
    .humberger__menu__wrapper,
    #preloder,
    .mf-track-search-card {
        display: none !important;
    }

    .order-success-section,
    .track-order-section {
        padding: 0 !important;
        background: #ffffff !important;
    }

    .mf-success-hero,
    .mf-manager-alert,
    .mf-success-card,
    .mf-track-progress-card {
        box-shadow: none !important;
        border: 1px solid #cbd5e1 !important;
        page-break-inside: avoid;
    }
}

/* ==========================================================================
   Clinical Consultation & Inquiry Confirmation Modal
   ========================================================================== */

body.mf-modal-locked {
    overflow: hidden !important;
}

.mf-inquiry-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.mf-inquiry-modal.is-active {
    display: flex !important;
}

.mf-inquiry-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.mf-inquiry-modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
    margin: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.mf-inquiry-modal__content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 36px 32px 30px;
    text-align: center;
    position: relative;
    overflow-y: auto;
    animation: mfModalPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mfModalPopIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(16px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.mf-inquiry-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.mf-inquiry-modal__close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.08);
}

.mf-inquiry-modal__icon-wrap {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
}

.mf-inquiry-modal__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #236557 0%, #174239 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 24px rgba(35, 101, 87, 0.35);
    position: relative;
    z-index: 2;
}

.mf-inquiry-modal__icon-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 3px solid rgba(35, 101, 87, 0.35);
    animation: mfModalPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 1;
}

@keyframes mfModalPulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.mf-inquiry-modal__title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
}

.mf-inquiry-modal__subtitle {
    font-size: 15px;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 24px;
}

.mf-inquiry-meta-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    text-align: left;
    margin-bottom: 18px;
}

.mf-inquiry-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 13.5px;
}

.mf-inquiry-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 2px;
}

.mf-inquiry-meta-label {
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mf-inquiry-meta-label i {
    color: #236557;
    width: 16px;
    text-align: center;
}

.mf-inquiry-meta-val {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.mf-inquiry-highlight {
    color: #236557 !important;
    background: #eaf3f0;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12.5px;
}

.mf-inquiry-notice-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fefce8;
    border: 1px solid #fef08a;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 24px;
    text-align: left;
    font-size: 12px;
    color: #854d0e;
    line-height: 1.5;
}

.mf-inquiry-notice-box i {
    font-size: 16px;
    margin-top: 2px;
    color: #ca8a04;
    flex-shrink: 0;
}

.mf-inquiry-notice-box p {
    margin: 0;
    font-size: 12px;
    color: #854d0e;
    line-height: 1.5;
}

.mf-inquiry-modal__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.mf-inquiry-modal__action-btn {
    width: 100%;
    border-radius: 50px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    background: #236557;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.25);
    transition: all 0.25s ease;
}

.mf-inquiry-modal__action-btn:hover {
    background: #1b4f44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 101, 87, 0.35);
}

.mf-inquiry-modal__phone-link {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mf-inquiry-modal__phone-link:hover {
    color: #236557;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .mf-inquiry-modal {
        padding: 14px;
    }
    .mf-inquiry-modal__content {
        padding: 28px 18px 22px;
    }
    .mf-inquiry-modal__title {
        font-size: 19px;
    }
    .mf-inquiry-modal__subtitle {
        font-size: 14px;
        margin-bottom: 18px;
    }
    .mf-inquiry-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .mf-inquiry-meta-val {
        text-align: left;
    }
}

/* ==========================================================================
   Newsletter Subscription Confirmation Modal
   ========================================================================== */

.mf-newsletter-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.mf-newsletter-modal.is-active {
    display: flex !important;
}

.mf-newsletter-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.mf-newsletter-modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 530px;
    margin: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.mf-newsletter-modal__content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 34px 32px 28px;
    text-align: center;
    position: relative;
    overflow-y: auto;
    animation: mfModalPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mf-newsletter-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.mf-newsletter-modal__close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.08);
}

.mf-newsletter-modal__icon-wrap {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
}

.mf-newsletter-modal__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #236557 0%, #174239 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 24px rgba(35, 101, 87, 0.35);
    position: relative;
    z-index: 2;
}

.mf-newsletter-modal__icon-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 3px solid rgba(35, 101, 87, 0.35);
    animation: mfModalPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 1;
}

.mf-newsletter-modal__title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
}

.mf-newsletter-modal__subtitle {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 22px;
}

.mf-newsletter-meta-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 18px;
    text-align: left;
    margin-bottom: 16px;
}

.mf-newsletter-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 13.5px;
}

.mf-newsletter-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 2px;
}

.mf-newsletter-meta-label {
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mf-newsletter-meta-label i {
    color: #236557;
    width: 16px;
    text-align: center;
}

.mf-newsletter-meta-val {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.mf-newsletter-email-val {
    color: #236557 !important;
    background: #eaf3f0;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12.5px;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Subscriber Promo Code Gift Box */
.mf-newsletter-promo-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #e6f4ea 100%);
    border: 1.5px dashed #22c55e;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    text-align: center;
}

.mf-newsletter-promo-header {
    margin-bottom: 10px;
}

.mf-newsletter-promo-badge {
    display: inline-block;
    background: #15803d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.mf-newsletter-promo-text {
    display: block;
    font-size: 13px;
    color: #166534;
}

.mf-newsletter-promo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 8px 12px;
    max-width: 280px;
    margin: 0 auto;
}

.mf-newsletter-promo-code {
    font-family: monospace;
    font-size: 18px;
    font-weight: 800;
    color: #15803d;
    letter-spacing: 1.5px;
    background: transparent;
    padding: 0;
    border: none;
}

.mf-newsletter-copy-btn {
    background: #236557;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.mf-newsletter-copy-btn:hover {
    background: #1b4f44;
}

.mf-newsletter-copy-btn.copied {
    background: #16a34a;
}

.mf-newsletter-notice-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 22px;
    text-align: left;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.mf-newsletter-notice-box i {
    font-size: 15px;
    margin-top: 2px;
    color: #236557;
    flex-shrink: 0;
}

.mf-newsletter-notice-box p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.mf-newsletter-modal__footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.mf-newsletter-modal__action-btn {
    width: 100%;
    border-radius: 50px;
    padding: 13px 24px;
    font-weight: 700;
    font-size: 14.5px;
    border: none;
    cursor: pointer;
    background: #236557;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.25);
    transition: all 0.25s ease;
}

.mf-newsletter-modal__action-btn:hover {
    background: #1b4f44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 101, 87, 0.35);
}

@media (max-width: 576px) {
    .mf-newsletter-modal {
        padding: 14px;
    }
    .mf-newsletter-modal__content {
        padding: 26px 18px 20px;
    }
    .mf-newsletter-modal__title {
        font-size: 19px;
    }
    .mf-newsletter-modal__subtitle {
        font-size: 13.5px;
        margin-bottom: 16px;
    }
    .mf-newsletter-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .mf-newsletter-meta-val {
        text-align: left;
    }
    .mf-newsletter-promo-box {
        max-width: 100%;
    }
}

/* ==========================================================================
   Clinical Recovery Highlights Carousel & Product Cards Interactive Cursor
   ========================================================================== */

.product__discount__slider .owl-stage {
    cursor: default !important;
}

.product__discount__slider.owl-grab,
.product__discount__slider.owl-grab .owl-stage,
.product__discount__slider.owl-grab .owl-item {
    cursor: default !important;
}

.product__discount__item,
.product__discount__item__pic,
.product__item__pic {
    cursor: pointer !important;
}

.product__discount__item {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product__discount__item:hover {
    transform: translateY(-4px);
}

.product__discount__item__text h5 a {
    cursor: pointer !important;
    transition: color 0.2s ease;
}

.product__discount__item__text h5 a:hover {
    color: var(--alysum-primary, #236557) !important;
}

.product__item__pic__hover li a {
    cursor: pointer !important;
}

/* ==========================================================================
   Specialized Topics - Professional Clinical Descriptions & Cards
   ========================================================================== */

/* ==========================================================================
   Article Details Page - Proportional & User-Friendly Reading Experience
   ========================================================================== */

/* Hero Banner Refinements - Compact & Proportional */
.blog-details-hero {
    padding: 44px 0 38px !important;
    text-align: center;
}

@media (max-width: 767px) {
    .blog-details-hero {
        padding: 28px 0 22px !important;
    }
}

/* Reduced Top Space for Blog & Article Views */
.blog-details.spad,
.blog.spad,
.mf-article-view,
.mf-blog-view {
    padding-top: 28px !important;
    padding-bottom: 50px !important;
}

@media (max-width: 767px) {
    .blog-details.spad,
    .blog.spad,
    .mf-article-view,
    .mf-blog-view {
        padding-top: 16px !important;
        padding-bottom: 35px !important;
    }
}

.breadcrumb-section {
    padding: 38px 0 34px !important;
}

.mf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #236557;
    background: #e6f4f1;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.blog__details__hero__text h2 {
    font-size: clamp(22px, 3vw, 32px) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    max-width: 860px;
    margin: 0 auto 14px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
}

.blog__details__hero__text ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog__details__hero__text ul li {
    font-size: 13px !important;
    color: #e2e8f0 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.blog__details__hero__text ul li i {
    color: #38bdf8;
}

/* Sidebar Sticky & Proportions (Pinned tightly with small elegant top gap) */
@media (min-width: 992px) {
    .mf-article-sidebar .blog__sidebar,
    .mf-blog-sidebar .blog__sidebar {
        position: sticky;
        top: 20px !important;
        padding-top: 0 !important;
    }
    .mf-article-sidebar,
    .mf-blog-sidebar {
        padding-left: 20px;
    }
}

/* Hide Search Bar Completely as requested */
.blog__sidebar__search {
    display: none !important;
}

.blog__sidebar {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.mf-article-sidebar .blog__sidebar__item,
.mf-blog-sidebar .blog__sidebar__item {
    margin-bottom: 24px !important;
}

.blog__sidebar__item:first-child,
.mf-specialized-topics-widget {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.mf-specialized-topics-widget h4 {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 12px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.3px !important;
}

#mf-article-dynamic-content {
    transition: opacity 0.22s ease;
}

@media (max-width: 991px) {
    .mf-article-sidebar {
        margin-top: 30px;
        padding-top: 24px;
        border-top: 1px solid #e2e8f0;
    }
}

.mf-specialized-topics-widget .mf-topics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.mf-topic-card,
a.mf-topic-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 13px 15px;
    transition: all 0.22s ease;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
    color: inherit !important;
}

.mf-topic-card:hover,
a.mf-topic-card:hover {
    background: #ffffff;
    border-color: #236557;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.08);
    transform: translateY(-2px);
    text-decoration: none !important;
    color: inherit !important;
}

.mf-topic-card.active,
a.mf-topic-card.active {
    background: #ffffff !important;
    border-color: #236557 !important;
    box-shadow: 0 4px 16px rgba(35, 101, 87, 0.12) !important;
    position: relative;
}

.mf-topic-card.active::before,
a.mf-topic-card.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: #236557;
    border-radius: 0 4px 4px 0;
}

.mf-topic-card__header {
    margin-bottom: 4px;
}

.mf-topic-card__title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
    display: block;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.mf-topic-card:hover .mf-topic-card__title,
.mf-topic-card.active .mf-topic-card__title,
a.mf-topic-card:hover .mf-topic-card__title,
a.mf-topic-card.active .mf-topic-card__title {
    color: #236557 !important;
}

.mf-topic-card__text {
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: #64748b !important;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mf-topic-card--all,
a.mf-topic-card--all {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

/* Article Body Typography & Reading Comfort */
.blog__details__text {
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 25px;
}

.blog__details__text p {
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    color: #334155 !important;
    margin-bottom: 20px !important;
}

.blog__details__text h3 {
    font-size: 21px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-top: 32px !important;
    margin-bottom: 16px !important;
    padding-left: 14px;
    border-left: 4px solid #236557;
    line-height: 1.35 !important;
}

.blog__details__text h4 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-top: 28px !important;
    margin-bottom: 16px !important;
}

/* Featured Image in Article (target only the article hero image, never avatar or widget images) */
#mf-article-dynamic-content > img,
.blog__details__text > img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    margin-bottom: 26px;
}

/* Structured Step Cards for Clinical Protocols */
.mf-protocol-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 24px;
}

.mf-step-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mf-step-card:hover {
    border-color: #236557;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.06);
}

.mf-step-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #e6f4f1;
    color: #236557;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.mf-step-content {
    flex: 1;
}

.mf-step-content h6 {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.mf-step-content p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin: 0 !important;
}

/* Clinical Callout Box */
.mf-clinical-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #16a34a;
    border-radius: 10px;
    padding: 16px 18px;
    margin: 22px 0 26px;
}

.mf-callout-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}

.mf-callout-body h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #15803d;
    margin-bottom: 4px;
}

.mf-callout-body p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    color: #166534 !important;
    margin: 0 !important;
}

/* Author Signature & Bio Card */
.mf-article-author-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 35px 0 35px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.mf-author-header {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 18px;
}

.mf-author-avatar-wrap {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #e6f4f1 !important;
    box-shadow: 0 3px 12px rgba(35, 101, 87, 0.12) !important;
    background: #f8fafc !important;
    position: relative !important;
}

.mf-author-header img.mf-author-pic,
.mf-author-avatar-wrap img.mf-author-pic,
.mf-article-author-card img.mf-author-pic,
img.mf-author-pic {
    width: 76px !important;
    min-width: 76px !important;
    max-width: 76px !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    flex-shrink: 0 !important;
}

.mf-author-info {
    flex: 1;
    min-width: 0;
}

.mf-author-name-row {
    display: flex;
    align-items: center;
    gap: 10px 14px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.mf-author-name {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 !important;
    line-height: 1.35 !important;
}

.mf-verified-badge {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #15803d !important;
    background: #dcfce7 !important;
    border: 1px solid #bbf7d0 !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    white-space: nowrap !important;
}

.mf-author-role {
    font-size: 13px !important;
    color: #236557 !important;
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 6px !important;
}

.mf-author-bio {
    font-size: 13.5px !important;
    color: #475569 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.mf-article-tags-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.mf-tags-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mf-tags-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mf-tag-pill {
    font-size: 11.5px;
    font-weight: 600;
    color: #236557;
    background: #e6f4f1;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.15s ease;
    display: inline-block;
}

.mf-tag-pill:hover {
    background: #236557;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .mf-author-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }
    .mf-author-name-row {
        justify-content: center;
    }
    .mf-article-tags-row {
        justify-content: center;
    }
}

/* Explore Other Topics Section */
.mf-article-specialized-overview {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.mf-overview-header {
    text-align: center;
    margin-bottom: 22px;
}

.mf-overview-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #236557;
    background: #e6f4f1;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.mf-overview-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.mf-overview-header p {
    font-size: 13.5px;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.55;
}

.mf-overview-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mf-overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(35, 101, 87, 0.08);
    border-color: #236557;
}

.mf-overview-card.active-guide {
    border-color: #236557;
    box-shadow: 0 4px 16px rgba(35, 101, 87, 0.12);
}

.mf-overview-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e6f4f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mf-overview-card__icon i {
    font-size: 18px;
    color: #236557;
}

.mf-overview-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.mf-overview-card p {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    color: #475569 !important;
    margin-bottom: 12px !important;
    flex-grow: 1;
}

.mf-overview-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.mf-key-point {
    font-size: 11px;
    font-weight: 600;
    color: #15803d;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-read-guide {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #236557;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.btn-read-guide:hover {
    color: #1a4d42;
    gap: 9px;
    text-decoration: none;
}

@media (max-width: 767px) {
    .mf-article-specialized-overview {
        padding: 22px 14px;
    }
    .mf-overview-header h3 {
        font-size: 18px;
    }
    .blog__details__hero__text h2 {
        font-size: 22px !important;
    }
}

/* ==========================================================================
   Clinical Biomechanics & Joint Rehabilitation Library (blog.html)
   ========================================================================== */

/* Specialty Filter Bar */
.mf-blog-filter-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.mf-filter-label {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 4px;
}

.mf-filter-label i {
    color: #0d9488;
}

.mf-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mf-filter-pill {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    line-height: 1.4;
}

.mf-filter-pill:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.mf-filter-pill.active {
    background: #0d9488;
    border-color: #0d9488;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(13, 148, 136, 0.25);
}

/* Clinical Article Cards */
.mf-article-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
}

.mf-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.mf-article-card .blog__item__pic {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    height: 230px;
}

.mf-article-card .blog__item__pic-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mf-article-card .blog__item__pic-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mf-article-card:hover .blog__item__pic-link img {
    transform: scale(1.05);
}

.mf-card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    backdrop-filter: blur(4px);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    pointer-events: none;
}

.mf-article-card .blog__item__text {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mf-article-card .blog__item__text ul {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0;
    list-style: none;
}

.mf-article-card .blog__item__text ul li {
    font-size: 12px;
    color: #64748b;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mf-article-card .blog__item__text h5 {
    margin-bottom: 12px;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.45;
}

.mf-article-card .blog__item__text h5 a {
    color: #0f172a;
    transition: color 0.2s ease;
    text-decoration: none;
}

.mf-article-card .blog__item__text h5 a:hover {
    color: #0d9488;
}

.mf-article-card .blog__item__text p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 16px;
    flex-grow: 1;
}

.mf-article-card-author {
    font-size: 12px;
    font-weight: 600;
    color: #0d9488;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mf-read-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #0d9488 !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    align-self: flex-start;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.mf-read-btn:hover {
    background: #0d9488 !important;
    color: #ffffff !important;
    border-color: #0d9488 !important;
}

.mf-read-btn span.arrow_right {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.mf-read-btn:hover span.arrow_right {
    transform: translateX(4px);
}

/* Clinical Advisory Banner */
.mf-blog-advisory-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
    border: 1px solid #cbd5e1;
    border-left: 4px solid #0d9488;
    border-radius: 12px;
    padding: 22px 24px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.mf-blog-advisory-banner h5 {
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mf-blog-advisory-banner p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 14px;
}

.mf-blog-advisory-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mf-advisory-btn-primary {
    background: #0d9488;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mf-advisory-btn-primary:hover {
    background: #0f766e;
}

.mf-advisory-btn-secondary {
    background: #ffffff;
    color: #0f172a !important;
    border: 1px solid #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mf-advisory-btn-secondary:hover {
    background: #f1f5f9;
}

/* Sidebar Tag Pills on blog.html */
.blog__sidebar__item__tags a {
    display: inline-block;
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 50px;
    margin-right: 6px;
    margin-bottom: 9px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    border: 1px solid #e2e8f0;
}

.blog__sidebar__item__tags a:hover {
    background: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
}

/* Recent Guides */
.blog__sidebar__recent__item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none !important;
    transition: transform 0.2s ease;
}

.blog__sidebar__recent__item:hover {
    transform: translateX(4px);
}

.blog__sidebar__recent__item:hover h6 {
    color: #0d9488;
}

.blog__sidebar__recent__item__pic img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.blog__sidebar__recent__item__text {
    padding-left: 14px;
}

.blog__sidebar__recent__item__text h6 {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.blog__sidebar__recent__item__text span {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   User-Friendly Typography & Button Refinements (German Localization & Modern UX)
   ========================================================================== */

/* 1. Global German Typography & Natural Flow */
body,
p,
.product__details__tab__desc p,
.mf-card p,
.mf-clinical-quote p,
.mf-contact-card__body,
.blog__item__text p,
.checkout__order p {
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: normal;
}

/* 2. Universal Reset of Aggressive ALL-CAPS on Interactive Buttons */
.primary-btn,
.site-btn,
.alysum-btn,
.alysum-btn-primary,
.alysum-btn-outline,
.cart-btn,
.cart-btn.cart-btn-right,
.checkout__coupon-btn,
.checkout__order .site-btn,
.checkout__order button,
.mf-action-btn,
.mf-track-submit-btn,
.mf-read-btn,
.btn-read-guide,
.mf-advisory-btn-primary,
.mf-advisory-btn-secondary,
.wishlist__add-btn,
.buy-now-btn,
.product__details__add-btn,
.mf-inquiry-modal__action-btn,
.mf-newsletter-modal__action-btn,
.mf-newsletter-copy-btn,
.product__details__text .primary-btn,
.shoping__cart__btns .primary-btn,
.shoping__checkout .primary-btn {
    text-transform: none !important;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.15px !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
}

/* 3. Button Hover & Interactive Depth */
.primary-btn:hover,
.site-btn:hover,
.alysum-btn-primary:hover,
.cart-btn:hover,
.wishlist__add-btn:hover,
.product__details__add-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(35, 101, 87, 0.32) !important;
    color: #ffffff !important;
}

.primary-btn:active,
.site-btn:active,
.alysum-btn-primary:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(35, 101, 87, 0.24) !important;
}

/* 4. Checkout Order Confirmation Button - Clean, Prominent & User-Friendly */
.checkout__order #btn-place-order,
.checkout__order .site-btn {
    width: 100% !important;
    padding: 15px 22px !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    background: #236557 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.28) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-shadow: none !important;
}

.checkout__order #btn-place-order:hover,
.checkout__order .site-btn:hover {
    background: #174a3f !important;
    box-shadow: 0 6px 20px rgba(35, 101, 87, 0.38) !important;
}

/* 5. Product Card Titles - Legible Mixed Casing */
.product__item__text h6,
.product__item__text h6 a,
.alysum-product-card__title,
.alysum-card__title a,
.filter__found h6 {
    text-transform: none !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    letter-spacing: normal !important;
    color: #1e293b !important;
}

.product__item__text h6 a:hover,
.alysum-card__title a:hover {
    color: #236557 !important;
}

/* 6. Section Titles & Headings - Humanized Styling */
.section-title h2,
.checkout__order h4,
.checkout__order .mf-order-title,
.mf-topic-card h5,
.mf-step-box h5,
.mf-step-card h5,
.mf-contact-card h5,
.mf-article-specialized-overview h4,
.alysum-footer h4,
.blog__sidebar__item h4 {
    text-transform: none !important;
    letter-spacing: -0.2px !important;
}

.alysum-footer h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 18px !important;
}

/* 7. Badges, Chips, Pills & Steppers - Clean Title Case */
.mf-badge-pill,
.mf-tier-badge,
.mf-card-category-badge,
.mf-hero-badge,
.mf-order-chip,
.mf-step-pill-badge,
.mf-filter-pill,
.checkout__order__products {
    text-transform: none !important;
    letter-spacing: normal !important;
}

.mf-order-chip {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    padding: 7px 16px !important;
    border-radius: 50px !important;
}

.mf-filter-pill {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
}

/* 8. Table Headers - Clear & Professional */
table thead th,
.shoping__cart__table table thead th,
.mf-clinical-table th {
    text-transform: none !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    color: #0f172a !important;
    padding: 14px 18px !important;
}

/* 9. Toast Notifications - Polished & Legible */
.mf-toast {
    text-transform: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: normal !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12) !important;
}

/* 10. Modals - Clean Header Hierarchy */
.mf-inquiry-modal__title,
.mf-newsletter-modal__title {
    text-transform: none !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #0f172a !important;
}

.mf-inquiry-modal__subtitle,
.mf-newsletter-modal__subtitle {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    color: #475569 !important;
}

/* ==========================================================================
   11. Laconic & User-Friendly Photo Badges & Product Tabs
   ========================================================================== */
/* Photo Badges: Modern Rounded Pill Style */
.alysum-card__badge,
.product__discount__percent,
.product__discount__item__pic .product__discount__percent {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-width: unset !important;
    line-height: 1.2 !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    background: #236557 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    z-index: 3 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Photo Action Buttons Hover State */
.product__item__pic__hover li a {
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.12) !important;
    transition: all 0.25s ease !important;
}

.product__item__pic__hover li a:hover {
    background: #236557 !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.06) !important;
}

/* Product Details Tabs: Clean, Laconic Segmented Pill Navigation */
.product__details__tab {
    padding-top: 45px !important;
}

.product__details__tab .nav-tabs:before,
.product__details__tab .nav-tabs:after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.product__details__tab .nav-tabs {
    border-bottom: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 32px !important;
    position: relative !important;
}

.product__details__tab .nav-tabs li {
    margin: 0 !important;
}

.product__details__tab .nav-tabs li a,
.product__details__tab .nav-tabs .nav-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50px !important;
    border: 1.5px solid #e2ece7 !important;
    background: #f8faf9 !important;
    color: #475569 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04) !important;
}

.product__details__tab .nav-tabs li a:hover,
.product__details__tab .nav-tabs .nav-link:hover {
    background: #eaf3f0 !important;
    border-color: #236557 !important;
    color: #236557 !important;
    transform: translateY(-1px) !important;
}

.product__details__tab .nav-tabs li a.active,
.product__details__tab .nav-tabs .nav-link.active {
    background: #236557 !important;
    border-color: #236557 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(35, 101, 87, 0.28) !important;
    transform: translateY(-1px) !important;
}

/* ==========================================================================
   12. Global Smooth Scrolling Architecture & Back-to-Top Button
   ========================================================================== */
html {
    scroll-padding-top: 85px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Smooth Horizontal Scrolling for Overflow Containers */
.product__details__tab .nav-tabs,
.mf-scrollable-container,
.table-responsive,
.shoping__cart__table,
.alysum-category-pills,
.mf-topic-grid,
.mf-protocol-steps,
.hero__categories ul {
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch;
}

/* Offset for anchored sections so sticky navigation does not clip headers */
section[id],
main[id],
div[id],
article[id] {
    scroll-margin-top: 85px;
}

/* Floating Back to Top Button */
.mf-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #236557;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.22);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.9);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    border: none;
    outline: none;
}

.mf-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mf-back-to-top:hover {
    background: #194b40;
    color: #ffffff;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 6px 20px rgba(35, 101, 87, 0.35);
}

.mf-back-to-top:active {
    transform: translateY(-1px) scale(1);
}

@media (max-width: 576px) {
    .mf-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}










/* ==========================================================================
   Cookie Consent Management (DSGVO / TDDDG / Google Consent Mode v2)
   ========================================================================== */

.alysum-cookie-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.alysum-cookie-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

/* Floating Banner */
.alysum-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    width: calc(100% - 48px);
    max-width: 960px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    padding: 28px 32px;
    z-index: 999995;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
}

.alysum-cookie-banner.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.alysum-cookie-banner__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.alysum-cookie-banner__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eaf3f0;
    color: #236557;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.alysum-cookie-banner__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.alysum-cookie-banner__text {
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 20px;
}

.alysum-cookie-banner__text a {
    color: #236557;
    font-weight: 600;
    text-decoration: underline;
}

.alysum-cookie-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

/* Buttons */
.alysum-cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    line-height: 1.2;
    text-decoration: none !important;
}

.alysum-cookie-btn--primary {
    background: #236557;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(35, 101, 87, 0.25);
}

.alysum-cookie-btn--primary:hover {
    background: #194b40;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(35, 101, 87, 0.35);
}

.alysum-cookie-btn--secondary {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #cbd5e1;
}

.alysum-cookie-btn--secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.alysum-cookie-btn--ghost {
    background: transparent;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.alysum-cookie-btn--ghost:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
}

/* Modal for Customizing Settings */
.alysum-cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.96);
    width: calc(100% - 32px);
    max-width: 680px;
    max-height: 85vh;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.28);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.alysum-cookie-modal.is-visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.alysum-cookie-modal__header {
    padding: 22px 28px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
}

.alysum-cookie-modal__title-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alysum-cookie-modal__close {
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alysum-cookie-modal__close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.alysum-cookie-modal__body {
    padding: 24px 28px;
    overflow-y: auto;
    max-height: calc(85vh - 150px);
}

.alysum-cookie-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: border-color 0.2s ease;
}

.alysum-cookie-category:hover {
    border-color: #cbd5e1;
}

.alysum-cookie-category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.alysum-cookie-category__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alysum-cookie-category__badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: #e2e8f0;
    color: #475569;
}

.alysum-cookie-category__badge--required {
    background: #eaf3f0;
    color: #236557;
}

.alysum-cookie-category__desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 8px 0 0 0;
}

/* Custom Switch Toggle */
.alysum-cookie-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.alysum-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.alysum-cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 34px;
}

.alysum-cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.alysum-cookie-switch input:checked + .alysum-cookie-slider {
    background-color: #236557;
}

.alysum-cookie-switch input:checked + .alysum-cookie-slider:before {
    transform: translateX(20px);
}

.alysum-cookie-switch input:disabled + .alysum-cookie-slider {
    background-color: #236557;
    opacity: 0.7;
    cursor: not-allowed;
}

.alysum-cookie-modal__footer {
    padding: 16px 28px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: #ffffff;
}

/* Floating trigger button in corner */
.alysum-cookie-trigger {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #236557;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 99990;
    transition: all 0.25s ease;
}

.alysum-cookie-trigger:hover {
    transform: scale(1.1);
    background: #236557;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(35, 101, 87, 0.3);
}

@media (max-width: 768px) {
    .alysum-cookie-banner {
        bottom: 16px;
        width: calc(100% - 24px);
        padding: 20px 20px;
    }
    .alysum-cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }
    .alysum-cookie-btn {
        width: 100%;
    }
    .alysum-cookie-modal {
        width: calc(100% - 20px);
        max-height: 90vh;
    }
    .alysum-cookie-modal__header,
    .alysum-cookie-modal__body,
    .alysum-cookie-modal__footer {
        padding: 18px 20px;
    }
    .alysum-cookie-modal__footer {
        flex-direction: column;
    }
    .alysum-cookie-trigger {
        bottom: 16px;
        left: 16px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
