/* =========================================================
   DESKTOP SUPPRESSION: Mobile header & elements MUST NEVER display on Desktop
   ========================================================= */
.amh-mobile-header,
.amh-mobile-drawer,
.amh-drawer-backdrop,
.arambha-mobile-home {
    display: none !important;
}

@media (max-width: 767px) {
    /* Show mobile header on mobile viewports */
    .amh-mobile-header {
        display: block !important;
        background: #ffffff;
        border-bottom: 1px solid #f1f5f9;
        padding: 12px 16px;
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .amh-mobile-drawer {
        display: flex !important;
    }

    .amh-drawer-backdrop {
        display: block !important;
    }

    /* Show mobile homepage on mobile viewports */
    body.amh-mobile-active .arambha-mobile-home {
        display: block !important;
    }

    /* Hide desktop homepage wrappers on mobile viewports when mobile homepage is active */
    body.amh-mobile-active .site-header,
    .site-header {
        display: none !important;
    }

    body.amh-mobile-active .arambha-homepage-section,
    body.amh-mobile-active .afc-section,
    body.amh-mobile-active .stp-section,
    body.amh-mobile-active .stc-section,
    body.amh-mobile-active .why-choose-us-section,
    body.amh-mobile-active .sbg-section,
    body.amh-mobile-active .acr-section,
    body.amh-mobile-active .subscribe-plugin-wrapper,
    body.amh-mobile-active .scf-section,
    body.amh-mobile-active .shb-section,
    body.amh-mobile-active .shs-stats-bar-wrapper {
        display: none !important;
    }
}

/* Base Mobile Section Styles */
.arambha-mobile-home * {
    box-sizing: border-box;
}

.arambha-mobile-section {
    padding: 0 16px;
    margin-bottom: 24px;
    width: 100%;
}

/* 1. Mobile Header Inner Styles */
.amh-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amh-header-left,
.amh-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amh-icon-btn {
    background: none;
    border: none;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    transition: background 0.15s, color 0.15s;
}

.amh-icon-btn:active {
    background: #f1f5f9;
}

.amh-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.amh-logo-img {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.amh-mobile-search-bar {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.amh-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 14px;
    border-radius: 999px;
}

.amh-search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 13px;
    color: #0f172a;
    outline: none;
}

/* Mobile Slide-out Navigation Drawer */
body.amh-no-scroll {
    overflow: hidden !important;
    touch-action: none;
}

.amh-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.amh-drawer-backdrop.amh-open {
    opacity: 1;
    visibility: visible;
}

.amh-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.amh-mobile-drawer.amh-open {
    transform: translateX(0);
}

.amh-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    flex-shrink: 0;
}

.amh-drawer-logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.amh-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    padding: 0;
}

.amh-drawer-close:active {
    background: #e2e8f0;
    color: #0f172a;
}

.amh-drawer-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
}

.amh-drawer-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.amh-menu-item,
.amh-drawer-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #f1f5f9;
}

.amh-menu-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.amh-menu-link,
.amh-drawer-menu > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #1e293b;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    flex: 1;
    transition: background 0.15s, color 0.15s;
}

.amh-menu-link:hover,
.amh-menu-link:active,
.amh-drawer-menu > li > a:hover,
.amh-drawer-menu > li > a:active {
    background: #f8fafc;
    color: #2563eb;
}

.amh-menu-icon {
    font-size: 16px;
    width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.amh-submenu-toggle {
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, color 0.15s;
}

.amh-submenu-toggle:active {
    color: #2563eb;
}

/* Submenu Accordion Panel (Hidden by default, reveals on click) */
.amh-sub-menu,
.amh-drawer-menu .sub-menu {
    display: none;
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 0 8px 0 !important;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.amh-has-children.amh-sub-open > .amh-sub-menu,
.menu-item-has-children.amh-sub-open > .sub-menu {
    display: block !important;
    animation: amhSubmenuFadeIn 0.2s ease-out;
}

@keyframes amhSubmenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.amh-has-children.amh-sub-open > .amh-menu-item-row .amh-submenu-toggle,
.menu-item-has-children.amh-sub-open > .amh-menu-item-row .amh-submenu-toggle,
.menu-item-has-children.amh-sub-open > .amh-submenu-toggle {
    transform: rotate(180deg);
    color: #2563eb;
}

.amh-sub-item,
.amh-drawer-menu .sub-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #edf2f7;
}

.amh-sub-link,
.amh-drawer-menu .sub-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px 11px 38px !important;
    color: #475569 !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    text-decoration: none;
    position: relative;
    transition: background 0.15s, color 0.15s;
}

.amh-sub-link:hover,
.amh-sub-link:active,
.amh-drawer-menu .sub-menu li a:hover,
.amh-drawer-menu .sub-menu li a:active {
    background: #eff6ff !important;
    color: #2563eb !important;
}

.amh-sub-bullet {
    color: #94a3b8;
    font-size: 13px;
    font-weight: bold;
}

.amh-drawer-footer {
    padding: 14px 18px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
    font-size: 11.5px;
    color: #94a3b8;
    flex-shrink: 0;
}

.amh-drawer-copyright {
    margin: 0;
}

/* 2. Hero Banner */
.amh-section-hero {
    margin-top: 12px;
}

.amh-hero-card {
    border-radius: 20px;
    padding: 24px 20px 20px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.amh-hero-pill-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(147, 197, 253, 0.6);
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.amh-hero-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.4px;
}

.amh-highlight {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amh-hero-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: #475569;
    margin: 0 0 16px 0;
}

.amh-hero-btn {
    display: inline-flex;
    align-items: center;
    background: #2563eb;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
    transition: transform 0.15s ease;
}

.amh-hero-btn:active {
    transform: scale(0.97);
}

.amh-hero-visual {
    margin-top: 14px;
    text-align: center;
}

.amh-hero-img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 12px;
}

.amh-hero-dots,
.amh-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.amh-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.2s ease;
}

.amh-dot.active {
    width: 18px;
    border-radius: 4px;
    background: #2563eb;
}

/* 3. Statistics / Key Metrics */
.amh-stats-scroll-wrapper {
    overflow-x: auto;
    margin: 0 -16px;
    padding: 4px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.amh-stats-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.amh-stats-track {
    display: flex;
    gap: 10px;
    width: max-content;
}

.amh-stat-pill {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.amh-stat-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.amh-stat-text {
    display: flex;
    flex-direction: column;
}

.amh-stat-num {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.amh-stat-label {
    font-size: 10.5px;
    color: #64748b;
    white-space: nowrap;
}

/* 4. Section Headers */
.amh-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.amh-section-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}

.amh-section-subtitle {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.amh-view-all {
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    white-space: nowrap;
}

/* 5. Categories Grid */
.amh-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.amh-cat-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.amh-cat-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
}

.amh-cat-title {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

/* 6. Why Choose Us (2x2 Grid) */
.amh-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.amh-why-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 14px 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.amh-why-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.amh-why-card-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.amh-why-card-desc {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    line-height: 1.35;
}

/* 7. Carousel Track & Horizontal Scroll */
.amh-carousel-container {
    position: relative;
}

.amh-carousel-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin: 0 -16px;
    padding: 4px 16px 10px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.amh-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Featured Categories Cards */
.amh-feat-card {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.amh-feat-img-wrap {
    width: 100%;
    height: 100%;
}

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

.amh-feat-pill {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amh-feat-title {
    font-size: 11.5px;
    font-weight: 700;
    color: #0f172a;
}

.amh-feat-arrow {
    width: 18px;
    height: 18px;
    background: #f97316;
    color: #ffffff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Trending Products Cards */
.amh-products-track .amh-prod-card {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 295px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.amh-prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    z-index: 2;
}

.amh-prod-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
}

.amh-prod-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.amh-prod-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.amh-prod-title {
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 32px !important;
}

.amh-prod-title a {
    color: #0f172a;
    text-decoration: none;
}

.amh-prod-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    margin-bottom: 4px;
}

.amh-stars {
    color: #f59e0b;
    letter-spacing: -1px;
}

.amh-rating-val {
    font-weight: 800;
    color: #0f172a;
}

.amh-reviews-count {
    color: #64748b;
    font-size: 10px;
}

.amh-prod-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.amh-prod-price {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.amh-prod-orig-price {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
}

.amh-prod-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #2563eb;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
    transition: all 0.15s ease;
}

.amh-prod-btn:active {
    background: #2563eb;
    color: #ffffff;
}

/* Buying Guides */
.amh-guides-track .amh-guide-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.amh-guide-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

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

.amh-guide-title {
    font-size: 11.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 32px !important;
}

/* 8. Customer Testimonials */
.amh-testi-card {
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.06);
}

.amh-testi-header-title {
    font-size: 14px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 6px 0;
}

.amh-testi-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 8px;
}

.amh-testi-quote {
    font-size: 12.5px;
    line-height: 1.5;
    color: #334155;
    margin: 0 0 16px 0;
    font-style: italic;
}

.amh-testi-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amh-testi-author-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amh-testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.amh-testi-name {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    display: block;
}

.amh-testi-loc {
    font-size: 10.5px;
    color: #64748b;
    display: block;
}

.amh-testi-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* 9. Mobile Newsletter CTA */
.amh-section-newsletter {
    margin-bottom: 24px;
}

.amh-newsletter-card {
    border-radius: 20px;
    padding: 22px 18px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    position: relative;
}

.amh-news-top-row {
    margin-bottom: 12px;
}

.amh-news-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.amh-news-title {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.amh-news-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.45;
}

.amh-newsletter-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 4px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 14px;
}

.amh-news-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    font-size: 12.5px;
    color: #0f172a;
    outline: none;
    border-radius: 999px;
    min-width: 0;
}

.amh-news-submit {
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.amh-news-submit:active {
    opacity: 0.85;
}

/* Sticky Bottom Floating Banner Option */
.amh-section-newsletter.amh-newsletter-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 9998;
    background: transparent;
    pointer-events: none;
}

.amh-section-newsletter.amh-newsletter-sticky .amh-newsletter-card {
    pointer-events: auto;
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15);
    animation: amhSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes amhSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.amh-section-newsletter.amh-newsletter-sticky.amh-is-closed {
    display: none !important;
}

.amh-sticky-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    transition: background 0.15s;
}

.amh-sticky-close:active {
    background: rgba(0, 0, 0, 0.5);
}

.amh-section-newsletter.amh-newsletter-sticky .amh-news-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-right: 24px;
}

.amh-section-newsletter.amh-newsletter-sticky .amh-news-icon-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 16px;
    margin-bottom: 0;
    border-radius: 8px;
}

.amh-section-newsletter.amh-newsletter-sticky .amh-news-title {
    font-size: 13.5px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amh-section-newsletter.amh-newsletter-sticky .amh-news-desc {
    display: none;
}

.amh-section-newsletter.amh-newsletter-sticky .amh-newsletter-form {
    margin-top: 0;
    padding: 3px;
}

.amh-section-newsletter.amh-newsletter-sticky .amh-news-input {
    padding: 7px 10px;
    font-size: 11.5px;
}

.amh-section-newsletter.amh-newsletter-sticky .amh-news-submit {
    padding: 7px 14px;
    font-size: 11.5px;
}

/* Add bottom padding to page root when sticky banner is active */
.arambha-mobile-home:has(.amh-newsletter-sticky:not(.amh-is-closed)) {
    padding-bottom: 120px;
}
