/**
 * Mana Elementor Widgets - Styles
 */

/* ===================================
   Font Aliases
   Elementor Custom Fonts registers "Gotham Book", "Gotham Bold",
   and "Gotham Rounded Medium", but some CSS references plain
   "Gotham" or "Gotham Rounded". These aliases prevent fallback
   to Arial/sans-serif.
   =================================== */
@font-face {
    font-family: 'Gotham';
    src: url('/wp-content/uploads/2025/12/Gotham-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Rounded';
    src: url('/wp-content/uploads/2025/12/Gotham-Rounded-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   Hero Section Widget
   =================================== */
.mana-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    overflow: hidden;
}

.mana-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.mana-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mana-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
    color: #ffffff;
}

.mana-hero-subtitle {
    font-size: 20px;
    margin: 0 0 30px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

.mana-hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: #0073aa;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.mana-hero-button:hover {
    background: #005a87;
}

/* Responsive */
@media (max-width: 768px) {
    .mana-hero-title {
        font-size: 32px;
    }

    .mana-hero-subtitle {
        font-size: 16px;
    }

    .mana-hero-section {
        min-height: 400px;
        padding: 60px 20px;
    }
}

/* ===================================
   Feature Box Widget
   =================================== */
.mana-feature-box {
    display: block;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.mana-feature-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mana-feature-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 115, 170, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.mana-feature-icon i,
.mana-feature-icon svg {
    color: #0073aa;
    font-size: 48px;
}

.mana-feature-content {
    text-align: center;
}

.mana-feature-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #333333;
    line-height: 1.3;
}

.mana-feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.mana-feature-description p {
    margin: 0 0 10px;
}

.mana-feature-description p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mana-feature-box {
        padding: 20px;
    }

    .mana-feature-title {
        font-size: 20px;
    }

    .mana-feature-description {
        font-size: 14px;
    }

    .mana-feature-icon {
        width: 60px;
        height: 60px;
    }

    .mana-feature-icon i,
    .mana-feature-icon svg {
        font-size: 32px;
    }
}

/* ===================================
   CTA Box Widget
   =================================== */
.mana-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0073aa;
    padding: 40px;
    border-radius: 8px;
    gap: 30px;
}

.mana-cta-box.layout-vertical {
    flex-direction: column;
    text-align: center;
}

.mana-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.mana-cta-box.layout-vertical .mana-cta-content {
    flex-direction: column;
}

.mana-cta-icon {
    flex-shrink: 0;
}

.mana-cta-icon i,
.mana-cta-icon svg {
    font-size: 48px;
    color: #ffffff;
}

.mana-cta-text {
    flex: 1;
}

.mana-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #ffffff;
    line-height: 1.3;
}

.mana-cta-description {
    font-size: 16px;
    margin: 0;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.5;
}

.mana-cta-button-wrapper {
    flex-shrink: 0;
}

.mana-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #ffffff;
    color: #0073aa;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.mana-cta-button:hover {
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .mana-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .mana-cta-content {
        flex-direction: column;
    }

    .mana-cta-title {
        font-size: 22px;
    }

    .mana-cta-description {
        font-size: 14px;
    }

    .mana-cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ===================================
   Hero Carousel Widget
   =================================== */
.mana-hero-carousel {
    position: relative;
    overflow: hidden;
}

.mana-hero-slides {
    position: relative;
    width: 100%;
}

.mana-hero-slide {
    position: relative;
    min-height: 533px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.mana-hero-slide.active {
    display: block;
}

.mana-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 153px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.mana-hero-title {
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 46px;
    line-height: 1em;
    color: #FFFFFF;
    margin: 0 0 15px;
    text-align: center;
}

.mana-hero-subtitle {
    font-family: 'Gotham', sans-serif;
    font-weight: 325;
    font-size: 14px;
    line-height: 3.29em;
    color: #FFFFFF;
    margin: 0 0 30px;
    text-align: center;
}

.mana-hero-button {
    display: inline-block;
    padding: 14px 50px;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 13px;
    line-height: 1.2em;
    text-align: center;
    transition: background-color 0.3s ease;
}

.mana-hero-button:hover {
    background: #FFFFFF;
    color: #0D4F43;
}

.mana-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 3;
}

.mana-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #0D4F43;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mana-hero-dot.active {
    background: #0D4F43;
}

/* Responsive */
@media (max-width: 768px) {
    .mana-hero-slide {
        min-height: 400px;
    }

    .mana-hero-content {
        padding: 100px 20px;
    }

    .mana-hero-title {
        font-size: 32px;
    }

    .mana-hero-subtitle {
        font-size: 12px;
    }
}

/* ===================================
   Location Card Widget
   =================================== */
.mana-location-card {
    background: #FFFFFF;
    border-radius: 0;
}

.mana-location-image {
    width: 100%;
    height: 225px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.mana-location-content {
    padding: 30px 0 0;
}

.mana-location-name {
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 26px;
    line-height: 1.2em;
    color: #272626;
    margin: 0 0 15px;
}

.mana-location-address {
    font-family: 'Gotham', sans-serif;
    font-weight: 325;
    font-size: 20px;
    line-height: 1.2em;
    color: #272626;
    margin: 0 0 30px;
}

.mana-location-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mana-location-button {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 16px;
    line-height: 1.2em;
    transition: background-color 0.3s ease;
}

.mana-location-button.online {
    background: #0D4F43;
    color: #FFFFFF;
}

.mana-location-button.online:hover {
    background: #0a3d33;
}

.mana-location-button.visit {
    background: #67AC56 !important;
    color: #FFFFFF !important;
}

.mana-location-button.visit:hover {
    background: #5a9a4a !important;
}

/* Responsive */
@media (min-width: 769px) {
    .mana-location-buttons {
        flex-direction: row;
    }

    .mana-location-button {
        flex: 1;
    }
}

/* ===================================
   Locations Section Widget
   =================================== */
.mana-locations-section {
    padding: 60px 0;
}

.mana-locations-title {
    /* Typography controlled by Elementor */
    margin: 0 0 40px;
}

.mana-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    justify-content: center;
}

.mana-locations-grid[data-count="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc(66.666% - 65px);
}

.mana-locations-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mana-locations-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.mana-locations-card-image.mana-locations-placeholder {
    background-color: #8A67FF;
}

.mana-locations-card-content {
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mana-locations-card-name {
    /* Typography controlled by Elementor */
    margin: 0 0 14px;
}

.mana-locations-card-address {
    /* Typography controlled by Elementor */
    margin: 0 0 24px;
}

.mana-locations-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.mana-locations-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 16px;
    line-height: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.mana-locations-btn.online {
    background-color: #0D4F43;
    color: #FFFFFF;
}

.mana-locations-btn.online:hover {
    background-color: #0B3D34;
    color: #FFFFFF;
}

.mana-locations-btn.visit {
    background-color: #67AC56 !important;
    color: #FFFFFF !important;
}

.mana-locations-btn.visit:hover {
    background-color: #5a9a4a !important;
    color: #FFFFFF !important;
}

/* Navigation dots - hidden on desktop */
.mana-locations-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.mana-locations-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #0D4F43;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mana-locations-dot.active {
    background-color: #0D4F43;
}

/* Mobile Slider Styles */
@media (max-width: 768px) {
    .mana-locations-section {
        padding: 40px 0;
    }

    /* Typography controlled by Elementor - removed hardcoded font-sizes */

    .mana-locations-grid {
        display: block;
        position: relative;
        overflow: hidden;
        max-width: 100%;
    }

    .mana-locations-card {
        display: none;
    }

    .mana-locations-card.active {
        display: flex;
    }

    .mana-locations-card-image {
        height: 220px;
    }

    .mana-locations-dots {
        display: flex;
    }
}

/* ===================================
   Culture Section Widget
   =================================== */
.mana-culture-section {
    background: #FFFFFF;
}

.mana-culture-content {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
}

.mana-culture-media {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #8A67FF; /* Placeholder color */
    border-radius: 25px;
    flex-shrink: 0;
}

.mana-culture-media video,
.mana-culture-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mana-culture-media .mana-culture-video-embed {
    width: 100%;
    height: 100%;
}

.mana-culture-media .mana-culture-video-embed iframe {
    width: 100%;
    height: 100%;
}

.mana-culture-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0 0;
}

.mana-culture-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 32px;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 10px 0;
}

.mana-culture-description {
    /* Typography controlled by Elementor */
    text-align: left;
    margin: 0;
}

.mana-culture-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 109px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
}

.mana-culture-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.mana-culture-cta:hover::before {
    background-color: rgba(0, 0, 0, 0.5);
}

.mana-culture-cta-title {
    /* Typography controlled by Elementor */
    color: #FFFFFF;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 0 8px;
}

.mana-culture-cta-text {
    /* Typography controlled by Elementor */
    color: #FFFFFF;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Desktop Layout */
@media (min-width: 769px) {
    .mana-culture-content {
        flex-direction: row;
        align-items: center;
        gap: 120px;
        padding: 40px 120px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .mana-culture-media {
        width: 480px;
        height: 480px;
        min-width: 480px;
    }

    .mana-culture-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }

    .mana-culture-description {
        /* Typography controlled by Elementor */
        max-width: 369px;
    }

    .mana-culture-cta {
        width: 728px;
        max-width: 100%;
        height: 90px;
        margin: 0 auto;
    }

    /* Typography controlled by Elementor - removed hardcoded font-sizes */
}

/* ===================================
   Learn Section Widget
   =================================== */
.mana-learn-section {
    background: #FFFFFF;
    padding: 37px 0 42px;
}

.mana-learn-header {
    padding: 0 28px;
    margin-bottom: 30px;
}

.mana-learn-title {
    /* Typography controlled by Elementor */
    margin: 0 0 18px;
    text-align: left;
}

.mana-learn-description {
    /* Typography controlled by Elementor */
    margin: 0;
    text-align: left;
}

.mana-learn-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 22px;
    margin-bottom: 40px;
}

.mana-learn-article-card {
    display: flex;
    flex-direction: column;
}

.mana-learn-article-image {
    width: 100%;
    height: 225px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #8A67FF; /* Placeholder color */
    border-radius: 15px;
    margin-bottom: 30px;
}

.mana-learn-article-content {
    text-align: center;
}

.mana-learn-article-title {
    /* Typography controlled by Elementor */
    margin: 0 0 8px;
}

.mana-learn-article-description {
    /* Typography controlled by Elementor */
    margin: 0 0 17px;
}

.mana-learn-read-more {
    /* Typography controlled by Elementor */
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mana-learn-read-more:hover {
    opacity: 0.7;
}

.mana-learn-cta {
    /* Typography controlled by Elementor */
    display: block;
    width: calc(100% - 26px);
    max-width: 415px;
    height: 57px;
    margin: 0 13px;
    background: #0D4F43;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    line-height: 57px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.mana-learn-cta:hover {
    background-color: #0B3D34;
}

/* Responsive */
@media (min-width: 769px) {
    .mana-learn-section {
        padding: 40px 63px 50px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .mana-learn-header {
        padding: 0;
        margin-bottom: 40px;
        text-align: left;
    }

    .mana-learn-title {
        /* Typography controlled by Elementor */
        text-align: left;
    }

    .mana-learn-description {
        /* Typography controlled by Elementor */
        text-align: left;
        max-width: none;
        margin: 0;
    }

    .mana-learn-articles {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 30px;
        padding: 0;
        margin-bottom: 50px;
    }

    .mana-learn-article-card {
        flex: 1;
        max-width: 299px;
    }

    .mana-learn-article-image {
        height: 169px;
        margin-bottom: 20px;
    }

    .mana-learn-cta {
        /* Typography controlled by Elementor */
        margin: 0 auto;
        width: 279px;
        max-width: 279px;
        height: 42px;
        line-height: 42px;
    }
}

/* ===================================
   Rewards Hero Widget
   =================================== */
.mana-rewards-hero {
    position: relative;
    min-height: 533px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mana-rewards-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}

.mana-rewards-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 22px;
    width: 100%;
}

.mana-rewards-hero-title {
    font-family: 'Botch', sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 1.02em;
    color: #FFFFFF;
    margin: 0 0 -25px;
    text-align: center;
}

.mana-rewards-hero-subtitle {
    font-family: 'Gotham', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 3.29em;
    color: #FFFFFF;
    margin: 0 0 85px;
    text-align: center;
}

.mana-rewards-hero-button {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    border-radius: 5px;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 13px;
    line-height: 1.2em;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-bottom: 52px;
}

.mana-rewards-hero-button:hover {
    background: #FFFFFF;
    color: #0D4F43;
}

.mana-rewards-hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.mana-rewards-hero-badge {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.mana-rewards-hero-badge:hover {
    opacity: 0.8;
}

.mana-rewards-hero-badge img {
    width: 148px;
    height: auto;
    display: block;
}

/* Responsive */
@media (min-width: 769px) {
    .mana-rewards-hero {
        min-height: 600px;
    }

    .mana-rewards-hero-content {
        padding: 150px 60px;
    }

    .mana-rewards-hero-title {
        font-size: 70px;
    }

    .mana-rewards-hero-subtitle {
        font-size: 18px;
    }

    .mana-rewards-hero-button {
        font-size: 16px;
        padding: 18px 60px;
    }

    .mana-rewards-hero-badge img {
        width: 180px;
    }
}

/* ===================================
   Mana Ticker Widget (Standalone)
   =================================== */
.mana-ticker {
    background-color: #0C4F43 !important;
    color: #FFFFFF !important;
    overflow: hidden !important;
    position: relative !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    padding: 12px 0 !important;
    width: 100% !important;
}

.mana-ticker .mana-ticker-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    animation: mana-ticker-scroll var(--ticker-speed, 20s) linear infinite !important;
}

.mana-ticker.mana-ticker--reverse .mana-ticker-track {
    animation-name: mana-ticker-scroll-reverse !important;
}

.mana-ticker .mana-ticker-track:hover {
    animation-play-state: paused !important;
}

.mana-ticker .mana-ticker-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 20px !important;
    white-space: nowrap !important;
}

.mana-ticker .mana-ticker-message {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: inherit !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease !important;
    white-space: nowrap !important;
}

.mana-ticker .mana-ticker-message:hover {
    opacity: 0.85 !important;
}

.mana-ticker a.mana-ticker-message:hover {
    text-decoration: underline !important;
}

.mana-ticker .mana-ticker-icon {
    flex-shrink: 0 !important;
    width: 16px !important;
    height: 16px !important;
    color: #F2AD2D !important;
}

.mana-ticker .mana-ticker-icon svg {
    width: 100% !important;
    height: 100% !important;
}

.mana-ticker .mana-ticker-separator {
    margin: 0 20px !important;
    opacity: 0.6 !important;
}

.mana-ticker .mana-ticker-text {
    line-height: 1.4 !important;
}

/* Pause animation when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mana-ticker .mana-ticker-track {
        animation: none !important;
    }

    .mana-ticker .mana-ticker-content:not(:first-child) {
        display: none !important;
    }
}

/* ===================================
   Mana Header Widget
   =================================== */

/* Announcement Ticker */
.mana-header-ticker {
    background-color: #0C4F43;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mana-ticker-track {
    display: flex;
    width: max-content;
    animation: mana-ticker-scroll var(--ticker-speed, 20s) linear infinite;
}

.mana-ticker-track:hover {
    animation-play-state: paused;
}

.mana-ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 20px;
    white-space: nowrap;
}

.mana-ticker-message {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mana-ticker-message:hover {
    opacity: 0.85;
}

a.mana-ticker-message:hover {
    text-decoration: underline;
}

.mana-ticker-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #F2AD2D;
}

.mana-ticker-icon svg {
    width: 100%;
    height: 100%;
}

.mana-ticker-separator {
    margin: 0 20px;
    opacity: 0.6;
}

.mana-ticker-text {
    line-height: 1.4;
}

@keyframes mana-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

@keyframes mana-ticker-scroll-reverse {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mana-ticker-track {
        animation: none;
    }

    .mana-ticker-content:not(:first-child) {
        display: none;
    }
}

.mana-header {
    background-color: #FFFFFF;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.mana-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.mana-header-logo a {
    display: inline-block;
    line-height: 0;
}

.mana-header-logo img {
    width: 101px;
    height: auto;
    display: block;
}

/* Right side container */
.mana-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Location Selector */
.mana-header-location {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mana-header-location-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none !important;
    background-color: transparent !important;
    border: 1.5px solid #0D4F43;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 14px;
    font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: #0D4F43;
    transition: all 0.3s ease;
}

.mana-header-location-trigger:hover,
.mana-header-location-trigger:focus,
.mana-header-location-trigger:active {
    background: none !important;
    background-color: rgba(13, 79, 67, 0.05) !important;
    color: #0D4F43;
    border-color: #0D4F43;
}

.mana-header-location-pin {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #0D4F43;
}

.mana-header-hours {
    white-space: nowrap;
}

.mana-header-dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mana-header-location-trigger[aria-expanded="true"] .mana-header-dropdown-arrow {
    transform: rotate(180deg);
}

.mana-header-location-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mana-header-location-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.mana-header-location-option {
    display: block;
    padding: 12px 16px;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 14px;
    color: #272626;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mana-header-location-option:hover {
    background-color: #f5f5f5;
}

.mana-header-location-option.active {
    background-color: #0D4F43;
    color: #FFFFFF;
}



/* Navigation Row (nav buttons + icons) */
.mana-header-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation */
.mana-header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-start;
}

/* Icons */
.mana-header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.mana-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #272626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mana-header-icon:hover {
    color: #0D4F43;
}

.mana-header-icon svg {
    width: 22px;
    height: 22px;
}

.mana-header-nav-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #0D4F43;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.mana-header-nav-btn:hover {
    background-color: #0a3d33;
    color: #FFFFFF;
}

/* Two-Row Nav — Mobile: flatten both navs into a single scroll strip */
@media (max-width: 768px) {
    .mana-header--two-row .mana-header-nav-group,
    .mana-header--two-row .mana-header-nav--primary,
    .mana-header--two-row .mana-header-nav--category {
        display: contents;
    }

    .mana-header--two-row .mana-header-nav-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 5px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
        gap: 7px;
    }

    .mana-header--two-row .mana-header-nav-row::-webkit-scrollbar {
        display: none;
    }
}

/* Mobile Navigation - Horizontal Scroll */
@media (max-width: 768px) {
    .mana-header {
        padding: 15px;
    }

    .mana-header-logo img {
        width: 63px;
    }

    .mana-header-right {
        gap: 15px;
    }

    .mana-header-nav-row {
        margin-top: 10px;
    }

    .mana-header-icons {
        display: none; /* Hide icons on mobile - typically in bottom nav */
    }

    .mana-header-location-trigger {
        font-size: 12px;
        padding: 6px 10px;
    }

    .mana-header-hours {
        display: none;
    }

    .mana-header-dropdown-arrow {
        width: 20px;
    }

    .mana-header-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-bottom: 5px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .mana-header-nav::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .mana-header-nav-btn {
        flex-shrink: 0;
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Two-Row Nav — Tablet: flatten both navs, let buttons wrap normally */
@media (min-width: 769px) and (max-width: 1024px) {
    .mana-header--two-row .mana-header-nav-group,
    .mana-header--two-row .mana-header-nav--primary,
    .mana-header--two-row .mana-header-nav--category {
        display: contents;
    }

    .mana-header--two-row .mana-header-nav-row {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .mana-header-logo img {
        width: 80px;
    }

    .mana-header-nav-btn {
        padding: 7px 15px;
        font-size: 10px;
    }

    .mana-header-nav {
        gap: 5px;
    }
}

/* Desktop: Logo inline with nav buttons (revert by removing this block) */
@media (min-width: 1025px) {
    .mana-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .mana-header-ticker {
        flex-basis: 100%;
        order: -1;
    }

    .mana-header-top {
        display: contents;
    }

    .mana-header-nav-row {
        display: contents;
    }

    .mana-header-logo {
        order: 1;
        margin-right: 5px;
    }

    .mana-header-nav {
        order: 2;
        flex: 1;
    }

    .mana-header-right {
        order: 3;
        margin-left: 10px;
    }

    .mana-header-icons {
        order: 4;
        margin-left: 5px;
    }

    /* Two-Row Nav: group wraps both navs in a column */
    .mana-header-nav-group {
        order: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-width: 0;
    }

    .mana-header-nav-group > .mana-header-nav {
        flex: none;
        order: unset;
    }

    .mana-header-nav--category {
        justify-content: flex-start;
    }
}

/* Desktop Large */
@media (min-width: 1200px) {
    .mana-header {
        padding: 20px 40px;
    }

    .mana-header-nav {
        justify-content: flex-start;
    }
}



/* =====================================================
   MANA LOCATION MODAL STYLES
   ===================================================== */

/* Body lock when modal is open */
body.mana-modal-open {
    overflow: hidden;
}

/* Modal Container */
.mana-location-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mana-location-modal.active {
    opacity: 1;
    visibility: visible;
}

.mana-location-modal.closing {
    opacity: 0.5;
}

/* Overlay - transparent to show background image, just for click handling */
.mana-location-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

/* Container */
.mana-location-modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 20px;
}

/* Close Button */
.mana-location-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    color: #FFFFFF;
    padding: 10px;
    z-index: 10;
    transition: opacity 0.2s ease;
}

.mana-location-modal-close:hover,
.mana-location-modal-close:focus {
    opacity: 0.7;
    background: transparent !important;
}

.mana-location-modal-close svg {
    display: block;
}

/* Content */
.mana-location-modal-content {
    text-align: center;
}

/* Logo */
.mana-location-modal-logo {
    margin-bottom: 20px;
}

.mana-location-modal-logo img {
    max-width: 120px;
    height: auto;
}

/* Header */
.mana-location-modal-header {
    margin-bottom: 20px;
}

.mana-location-modal-heading {
    font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 350;
    font-size: 30px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.mana-location-modal-subheading {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 325;
    font-size: 16px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

/* Cards Container */
.mana-location-modal-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

/* Individual Card - Mobile styles (default) */
.mana-location-modal-card {
    background: var(--modal-mobile-card-bg, #FFFFFF);
    border: 1px solid var(--modal-mobile-card-border, transparent);
    border-radius: var(--modal-mobile-card-radius, 10px);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: left;
}

.mana-location-modal-card--coming-soon {
    opacity: 0.7;
}

/* Card Image (hidden on mobile by default) */
.mana-location-modal-card-image-link {
    display: none;
}

.mana-location-modal-card-image,
.elementor .mana-location-modal-card-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--modal-desktop-image-radius, 8px) !important;
}

/* Card Content */
.mana-location-modal-card-content {
    flex: 1;
}

.mana-location-modal-card-name {
    font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 350;
    font-size: 22px;
    line-height: 1.2;
    color: var(--modal-mobile-card-text, #0D4F43);
    margin: 0 0 5px 0;
}

.mana-location-modal-card-address {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 325;
    font-size: 13px;
    line-height: 1.2;
    color: var(--modal-mobile-card-text, #0D4F43);
}

.mana-location-modal-card-address span {
    display: block;
}

/* Card Actions */
.mana-location-modal-card-actions {
    flex-shrink: 0;
}

.mana-location-modal-card-actions-desktop {
    display: none;
}

.mana-location-modal-card-actions-mobile {
    display: block;
}

.mana-location-modal-card-actions-mobile .mana-location-modal-btn {
    width: 100%;
}

/* Buttons */
.mana-location-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--modal-btn-radius, 5px);
    font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 350;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 130px;
}

.mana-location-modal-btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.mana-location-modal-btn-shop,
.mana-location-modal-btn-select {
    background-color: var(--modal-shop-btn-bg, #0D4F43);
    color: var(--modal-shop-btn-text, #FFFFFF);
}

.mana-location-modal-btn-shop:hover,
.mana-location-modal-btn-select:hover {
    background-color: var(--modal-shop-btn-hover-bg, #0B3D34);
    color: #FFFFFF;
}

.mana-location-modal-btn-visit {
    background-color: var(--modal-visit-btn-bg, #67AC56);
    color: var(--modal-visit-btn-text, #FFFFFF);
}

.mana-location-modal-btn-visit:hover {
    background-color: var(--modal-visit-btn-hover-bg, #5a9a4a);
    color: #FFFFFF;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .mana-location-modal-container {
        padding: 40px 40px;
    }

    .mana-location-modal-heading {
        font-size: 40px;
    }

    .mana-location-modal-subheading {
        font-size: 18px;
    }

    .mana-location-modal-cards {
        flex-direction: row;
        justify-content: center;
        max-width: none;
        gap: 30px;
    }

    .mana-location-modal-card {
        flex-direction: column;
        align-items: flex-start;
        width: 280px;
        padding: 0;
        border: 1px solid var(--modal-desktop-card-border, transparent);
        background: var(--modal-desktop-card-bg, transparent);
    }

    .mana-location-modal-card-image-link {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .mana-location-modal-card-image-link:hover {
        opacity: 0.9;
    }

    .mana-location-modal-card-name {
        font-size: 24px;
        color: var(--modal-desktop-card-text, #FFFFFF);
    }

    .mana-location-modal-card-address {
        font-size: 18px;
        color: var(--modal-desktop-card-text, #FFFFFF);
    }

    .mana-location-modal-card-actions {
        width: 100%;
        margin-top: 10px;
    }

    .mana-location-modal-card-actions-desktop {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mana-location-modal-card-actions-mobile {
        display: none;
    }

    .mana-location-modal-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 15px;
        min-width: auto;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .mana-location-modal-cards {
        gap: 50px;
    }

    .mana-location-modal-card {
        width: 320px;
    }
}



/* Card Hours */
.mana-location-modal-card-hours {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 325;
    font-size: 13px;
    line-height: 1.2;
    color: var(--modal-mobile-card-text, #0D4F43);
    margin-bottom: 4px;
}

/* Card Pickup Text */
.mana-location-modal-card-pickup {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 325;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--modal-mobile-card-text, #0D4F43);
    margin-top: 6px;
}

@media (min-width: 769px) {
    .mana-location-modal-card-hours {
        font-size: 18px;
        color: var(--modal-desktop-card-text, #FFFFFF);
    }

    .mana-location-modal-card-pickup {
        font-size: 18px;
        color: var(--modal-desktop-card-text, #FFFFFF);
    }
}

/* =====================================================
   LOCATION GATE MODE (header popup as location gate)
   ===================================================== */

/* Prevent closing when in gate mode */
.mana-location-modal--gate-mode .mana-location-modal-close {
    display: none !important;
}

.mana-location-modal--gate-mode .mana-location-modal-overlay {
    cursor: not-allowed;
}

/* Warning banner when user tries to dismiss */
.mana-location-gate-required {
    background: rgba(242, 173, 45, 0.95);
    color: #272626;
    font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 350;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    margin-bottom: 16px;
    display: inline-block;
}

.mana-location-gate-required.shake {
    animation: mana-gate-shake 0.4s ease-in-out;
}

@keyframes mana-gate-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}


/* =====================================================
   MANA FOOTER WIDGET STYLES
   ===================================================== */

.mana-footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 54px 54px 40px;
    position: relative;
    min-height: 615px;
}

.mana-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.mana-footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
}

/* Top Section: Columns + Social */
.mana-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mana-footer-columns {
    display: flex;
    gap: 100px;
}

.mana-footer-column {
    min-width: 120px;
}

.mana-footer-column-title {
    font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 350;
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.mana-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.mana-footer-links a {
    font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 350;
    font-size: 15px;
    line-height: 2.13;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: capitalize;
    transition: opacity 0.2s ease;
}

.mana-footer-links a:hover {
    opacity: 0.8;
}

/* Social Icons */
.mana-footer-social {
    display: flex;
    gap: 12px;
}

.mana-footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #FFFFFF;
    transition: opacity 0.2s ease;
}

.mana-footer-social-icon:hover {
    opacity: 0.8;
}

.mana-footer-social-icon svg {
    width: 24px;
    height: 24px;
}

/* Mobile Accordions - Hidden on Desktop */
.mana-footer-mobile-accordions {
    display: none;
}

/* Logo */
.mana-footer-logo {
    position: absolute;
    bottom: 40px;
    right: 0;
}

.mana-footer-logo img {
    width: 200px;
    height: auto;
}

/* Bottom Section */
.mana-footer-bottom {
    margin-top: 200px;
    max-width: 565px;
}

.mana-footer-disclaimer {
    color: #FFFFFF;
}

.mana-footer-age-notice {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 325;
    font-size: 13px;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.mana-footer-warning {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 325;
    font-size: 13px;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.mana-footer-copyright {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 325;
    font-size: 13px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

/* Mobile Social - Hidden on Desktop */
.mana-footer-mobile-social {
    display: none;
}

/* =====================================================
   MANA FOOTER - MOBILE STYLES
   ===================================================== */
@media (max-width: 768px) {
    .mana-footer {
        padding: 20px;
        min-height: auto;
    }

    /* Hide desktop columns */
    .mana-footer-top {
        display: none;
    }

    /* Show mobile accordions */
    .mana-footer-mobile-accordions {
        display: block;
        margin-bottom: 30px;
    }

    .mana-footer-accordion {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mana-footer-accordion-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 20px 0;
        background: none !important;
        background-color: transparent !important;
        border: none;
        cursor: pointer;
        color: #FFFFFF;
        font-family: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, sans-serif;
        font-weight: 350;
        font-size: 18px;
        line-height: 1.2;
        text-align: left;
    }

    .mana-footer-accordion-trigger:hover,
    .mana-footer-accordion-trigger:focus,
    .mana-footer-accordion-trigger:active {
        background: none !important;
        background-color: transparent !important;
        outline: none;
    }

    .mana-footer-accordion-arrow {
        transition: transform 0.3s ease;
        transform: rotate(180deg); /* Point up when closed */
    }

    .mana-footer-accordion-trigger[aria-expanded="true"] .mana-footer-accordion-arrow {
        transform: rotate(0deg); /* Point down when open */
    }

    .mana-footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mana-footer-accordion-content .mana-footer-links {
        padding-bottom: 20px;
    }

    /* Logo - Centered on Mobile */
    .mana-footer-logo {
        position: static;
        text-align: center;
        margin-bottom: 30px;
    }

    .mana-footer-logo img {
        width: 150px;
    }

    /* Bottom Section */
    .mana-footer-bottom {
        margin-top: 0;
        max-width: 100%;
        text-align: left;
    }

    /* Mobile Social - Show on Mobile */
    .mana-footer-mobile-social {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
    }

    .mana-footer-mobile-social .mana-footer-social-icon {
        width: 50px;
        height: 50px;
    }

    .mana-footer-copyright {
        text-align: center;
        margin-top: 20px;
    }
}


/* ===================================
   Mana Rewards Made Simple Widget
   =================================== */
.mana-rewards-simple {
    display: flex;
    flex-direction: row;
    min-height: 800px;
}

.mana-rewards-simple-left {
    flex: 0 0 57%;
    width: 57%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    box-sizing: border-box;
}

.mana-rewards-simple-left-content {
    max-width: 700px;
    width: 100%;
}

.mana-rewards-simple-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 45px;
    font-weight: 350;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 50px 0;
}

.mana-rewards-simple-benefits {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mana-rewards-simple-benefit-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 30px;
    align-items: start;
}

.mana-rewards-simple-benefit-title {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 19px;
    font-weight: 350;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0;
    text-align: left;
}

.mana-rewards-simple-benefit-desc {
    font-family: 'Gotham', sans-serif;
    font-size: 19px;
    font-weight: 325;
    line-height: 1.4;
    color: #0D4F43;
    margin: 0;
}

.mana-rewards-simple-right {
    flex: 0 0 43%;
    width: 43%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    box-sizing: border-box;
    position: relative;
}

.mana-rewards-simple-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.mana-rewards-simple-right-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.mana-rewards-simple-right-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 36px;
    font-weight: 350;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.mana-rewards-simple-subtitle {
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-weight: 325;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}

/* Benefits Grid */
.mana-rewards-content {
    display: none;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.mana-rewards-content.active {
    display: flex;
}

.mana-rewards-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    justify-content: center;
}

.mana-rewards-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    height: auto !important;
}

.mana-rewards-grid-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.mana-rewards-grid-label {
    margin-top: 8px;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-weight: 325;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Perks List */
.mana-rewards-perks-list {
    text-align: center;
}

.mana-rewards-perk-item {
    margin-bottom: 20px;
}

.mana-rewards-perk-item:last-child {
    margin-bottom: 0;
}

.mana-rewards-perk-title {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.mana-rewards-perk-desc {
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    font-weight: 325;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.85;
}

/* Tabs */
.mana-rewards-tabs {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.mana-rewards-tab {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 20px;
    font-weight: 350;
    line-height: 1.2;
    color: #FFFFFF;
    background: none;
    border: none;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.mana-rewards-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.mana-rewards-tab:hover,
.mana-rewards-tab:focus,
.mana-rewards-tab:active {
    background: none !important;
    background-color: transparent !important;
    outline: none;
}

.mana-rewards-tab.active {
    color: #B2BAA6;
    background: none !important;
    background-color: transparent !important;
}

.mana-rewards-tab.active::after {
    background-color: #B2BAA6;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .mana-rewards-simple {
        flex-direction: column;
    }

    .mana-rewards-simple-left,
    .mana-rewards-simple-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .mana-rewards-simple-left {
        padding: 50px 30px;
        min-height: auto;
    }

    .mana-rewards-simple-right {
        padding: 50px 30px;
        min-height: 500px;
    }

    .mana-rewards-simple-heading {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: center;
    }

    .mana-rewards-simple-benefit-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .mana-rewards-simple-benefit-title {
        text-align: center;
    }

    .mana-rewards-simple-right-heading {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .mana-rewards-simple-left {
        padding: 40px 20px;
    }

    .mana-rewards-simple-right {
        padding: 40px 20px;
        min-height: 450px;
    }

    .mana-rewards-simple-heading {
        font-size: 26px;
    }

    .mana-rewards-simple-benefit-title,
    .mana-rewards-simple-benefit-desc {
        font-size: 16px;
    }

    .mana-rewards-grid {
        gap: 15px;
        max-width: 280px;
    }

    .mana-rewards-tabs {
        gap: 30px;
    }

    .mana-rewards-tab {
        font-size: 18px;
    }
}

/* ===================================
   Mana Giveaways Widget
   =================================== */
.mana-giveaways {
    display: flex;
    flex-direction: row;
    min-height: 564px;
    background-color: #B2BAA6;
}

.mana-giveaways-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 60px 60px 180px;
    box-sizing: border-box;
}

.mana-giveaways-left-content {
    max-width: 400px;
}

.mana-giveaways-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 45px;
    font-weight: 350;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 35px 0;
}

.mana-giveaways-desc {
    font-family: 'Gotham', sans-serif;
    font-size: 19px;
    font-weight: 325;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 35px 0;
}

.mana-giveaways-status {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 22px;
    font-weight: 350;
    line-height: 1.2;
    color: #FFFFFF;
    display: inline-block;
}

.mana-giveaways-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0;
}

.mana-giveaways-card {
    position: relative;
    width: 514px;
    max-width: 100%;
    overflow: hidden;
}

.mana-giveaways-image {
    width: 100%;
    height: auto;
    aspect-ratio: 514 / 511;
    object-fit: cover;
    display: block;
}

.mana-giveaways-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    display: flex;
    align-items: flex-end;
}

.mana-giveaways-overlay-content {
    padding: 20px 25px 25px 25px;
    width: 100%;
    box-sizing: border-box;
}

.mana-giveaways-overlay-title {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 22px;
    font-weight: 350;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.mana-giveaways-overlay-date {
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    font-weight: 325;
    line-height: 1.2;
    color: #FFFFFF;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .mana-giveaways {
        flex-direction: column;
    }

    .mana-giveaways-left {
        padding: 50px 30px;
        justify-content: center;
        text-align: center;
    }

    .mana-giveaways-left-content {
        max-width: 100%;
    }

    .mana-giveaways-heading {
        font-size: 36px;
    }

    .mana-giveaways-right {
        width: 100%;
        justify-content: center;
        padding: 20px 30px 40px;
    }

    .mana-giveaways-card {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 575px) {
    .mana-giveaways-left {
        padding: 40px 20px;
    }

    .mana-giveaways-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .mana-giveaways-desc {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mana-giveaways-status {
        font-size: 18px;
    }

    .mana-giveaways-right {
        padding: 20px 20px 30px;
    }

    .mana-giveaways-overlay-title {
        font-size: 18px;
    }
}


/* ===================================
   Mana Why Join Widget
   =================================== */
.mana-why-join {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 563px;
    background-color: #FFFFFF;
    padding: 40px 60px 40px 160px;
    gap: 80px;
    box-sizing: border-box;
}

.mana-why-join-left {
    flex: 0 0 auto;
}

.mana-why-join-image {
    width: 480px;
    height: 480px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.mana-why-join-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mana-why-join-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 45px;
    font-weight: 350;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 40px 0;
}

.mana-why-join-benefits {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mana-why-join-benefit {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}

.mana-why-join-benefit-title {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 19px;
    font-weight: 350;
    line-height: 1.2;
    color: #0D4F43;
    flex: 0 0 165px;
    width: 165px;
}

.mana-why-join-benefit-desc {
    font-family: 'Gotham', sans-serif;
    font-size: 19px;
    font-weight: 325;
    line-height: 1.2;
    color: #0D4F43;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .mana-why-join {
        flex-direction: column;
        padding: 40px 30px;
        gap: 0;
    }

    .mana-why-join-left {
        display: none;
    }

    .mana-why-join-image {
        display: none;
    }

    .mana-why-join-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .mana-why-join-benefit {
        flex-direction: column;
        gap: 4px;
    }

    .mana-why-join-benefit-title {
        flex: none;
        width: auto;
    }

    .mana-why-join-benefits {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .mana-why-join {
        padding: 30px 20px;
    }

    .mana-why-join-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .mana-why-join-benefit-title {
        font-size: 16px;
    }

    .mana-why-join-benefit-desc {
        font-size: 16px;
    }

    .mana-why-join-benefits {
        gap: 18px;
    }
}

/* ===================================
   Mana Location Detail Widget
   =================================== */
.mana-location-detail {
    background-color: #FFFFFF;
    padding: 40px 60px 40px 160px;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Top Section: Slider + Info */
.mana-ld-top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Slider Wrapper - breakout to left viewport edge */
.mana-ld-slider-wrapper {
    flex: 0 0 auto;
    position: relative;
    /* Break out to left viewport edge */
    margin-left: calc(-160px - max(0px, (100vw - 1440px) / 2));
    /* Width: extends from left edge to ~700px into the content area */
    width: calc(700px + 160px + max(0px, (100vw - 1440px) / 2));
    overflow: hidden;
}

.mana-ld-slider {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease;
}

.mana-ld-slide {
    flex: 0 0 480px;
    width: 480px;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
}

/* Location Info */
.mana-ld-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mana-ld-location-name {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 26px;
    font-weight: 350;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 20px 0;
}

.mana-ld-info {
    margin-bottom: 30px;
}

.mana-ld-info p {
    font-family: 'Gotham', sans-serif;
    font-size: 20px;
    font-weight: 325;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.mana-ld-business {
    font-weight: 350 !important;
}

.mana-ld-pickup-note {
    font-style: italic;
    margin-top: 15px !important;
}

/* Buttons */
.mana-ld-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    max-width: 377px;
}

.mana-ld-btn {
    display: block;
    width: 100%;
    height: 57px;
    line-height: 57px;
    text-align: center;
    text-decoration: none;
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 16px;
    font-weight: 350;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: #FFFFFF;
}

.mana-ld-btn.shop {
    background-color: #0D4F43;
}

.mana-ld-btn.shop:hover {
    background-color: #0a3d33;
    color: #FFFFFF;
}

.mana-ld-btn.deals {
    background-color: #B2BAA6;
}

.mana-ld-btn.deals:hover {
    background-color: #9da598;
    color: #FFFFFF;
}

.mana-ld-visit-link {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 16px;
    font-weight: 350;
    color: #0D4F43;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.mana-ld-visit-link:hover {
    opacity: 0.7;
}

/* Navigation Dots */
.mana-ld-dots {
    display: flex;
    justify-content: flex-start;
    gap: 21px;
    margin-bottom: 40px;
    padding-left: 160px;
}

.mana-ld-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #0D4F43;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mana-ld-dot.active {
    background-color: #0D4F43;
}

.mana-ld-dot:hover {
    background-color: rgba(13, 79, 67, 0.5);
}

/* CTA Section */
.mana-ld-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 728px;
    height: 90px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.mana-ld-cta:hover {
    transform: scale(1.02);
}

.mana-ld-cta-title {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 28px;
    font-weight: 350;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 5px 0;
}

.mana-ld-cta-subtitle {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.2;
    color: #FFFFFF;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .mana-location-detail {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
    }

    .mana-ld-top {
        display: contents; /* Allow children to participate in parent flex */
    }

    .mana-ld-slider-wrapper {
        order: 1;
        /* Reset breakout on mobile - full width edge to edge */
        width: 100vw;
        max-width: none;
        margin-left: -20px;
        margin-right: 0;
        overflow: hidden;
        scroll-snap-type: none;
    }

    .mana-ld-slider {
        display: flex;
        flex-wrap: nowrap !important;
        padding-left: 0;
        padding-right: 0;
        gap: 0 !important;
        transition: transform 0.5s ease;
    }

    .mana-ld-slide {
        flex: 0 0 100vw !important;
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        aspect-ratio: 1 / 1;
        height: auto !important;
        border-radius: 0 !important;
        scroll-snap-align: none;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding: 0 !important;
    }

    .mana-ld-slide:last-child {
        margin-right: 0 !important;
    }

    .mana-ld-info-wrapper {
        order: 3;
        width: 100%;
        text-align: center;
        align-items: center;
        margin-top: 10px;
    }

    .mana-ld-location-name {
        font-size: 24px;
    }

    .mana-ld-info p {
        font-size: 18px;
    }

    .mana-ld-buttons {
        width: 100%;
        max-width: 100%;
    }

    .mana-ld-dots {
        order: 2;
        justify-content: center;
        padding-left: 0;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .mana-ld-cta {
        order: 4;
        width: 100%;
        max-width: 100%;
        height: 80px;
    }

    .mana-ld-cta-title {
        font-size: 22px;
    }

    .mana-ld-cta-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .mana-location-detail {
        padding: 20px 15px;
    }

    .mana-ld-slider-wrapper {
        /* Adjust for smaller padding at this breakpoint */
        width: 100vw;
        margin-left: -15px;
    }

    .mana-ld-slide {
        /* Keep square, full viewport width */
        flex: 0 0 100vw !important;
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
    }

    .mana-ld-location-name {
        font-size: 22px;
    }

    .mana-ld-info p {
        font-size: 16px;
    }

    .mana-ld-btn {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }

    .mana-ld-cta {
        height: 70px;
    }

    .mana-ld-cta-title {
        font-size: 18px;
    }

    .mana-ld-cta-subtitle {
        font-size: 12px;
    }
}

/* ===================================
   Brand Values Widget
   =================================== */
.mana-brand-values {
    position: relative;
    width: 100%;
}

.mana-brand-values-inner {
    margin: 0 auto;
    width: 100%;
}

/* Top Section: Content + Image */
.mana-brand-values-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.mana-brand-values-content {
    flex: 1;
    max-width: 50%;
}

.mana-brand-values-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 45px;
    font-weight: 350;
    line-height: 1.2;
    margin: 0 0 20px;
}

.mana-brand-values-description {
    font-family: 'Gotham', sans-serif;
    font-size: 19px;
    font-weight: 325;
    line-height: 1.2;
    margin: 0;
}

/* Featured Image */
.mana-brand-values-image {
    flex-shrink: 0;
    overflow: hidden;
}

.mana-brand-values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Values List - Shown on both desktop and mobile */
.mana-brand-values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.mana-brand-value-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.mana-brand-value-title {
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    flex-shrink: 0;
    min-width: 100px;
    color: #004851;
}

.mana-brand-value-description {
    font-family: 'Gotham', sans-serif;
    font-size: 14px;
    font-weight: 325;
    line-height: 1.5;
    margin: 0;
    color: #004851;
}

/* Mobile Responsive (768px and below) */
@media (max-width: 768px) {
    .mana-brand-values-top {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .mana-brand-values-content {
        max-width: 100%;
    }

    .mana-brand-values-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 0.6;
    }

    .mana-brand-values-heading {
        font-size: 32px;
    }

    .mana-brand-values-description {
        font-size: 16px;
    }

    /* Values list adjustments for mobile */
    .mana-brand-values-list {
        margin-top: 30px;
        gap: 20px;
    }

    .mana-brand-value-item {
        gap: 20px;
    }

    .mana-brand-value-title {
        min-width: 90px;
        font-size: 15px;
    }

    .mana-brand-value-description {
        font-size: 13px;
    }

}

/* ========================================
   Mana Journal Widget
   ======================================== */

.mana-journal {
    width: 100%;
    padding: 60px 0;
}

.mana-journal-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.mana-journal-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 45px;
    font-weight: 350;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 20px;
}

.mana-journal-description {
    font-family: 'Gotham', sans-serif;
    font-size: 20px;
    font-weight: 325;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 50px;
    max-width: 1320px;
}

/* Grid */
.mana-journal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Article Card */
.mana-journal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mana-journal-card-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 22px;
    display: block;
    transition: transform 0.3s ease;
}

.mana-journal-card-image:hover {
    transform: scale(1.02);
}

.mana-journal-card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9.5;
    object-fit: cover;
    display: block;
}

.mana-journal-card-title {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 26px;
    font-weight: 350;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 12px;
}

.mana-journal-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mana-journal-card-title a:hover {
    color: #004851;
}

.mana-journal-card-excerpt {
    font-family: 'Gotham', sans-serif;
    font-size: 20px;
    font-weight: 325;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 12px;
}

.mana-journal-card-link {
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.2;
    color: #0D4F43;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.mana-journal-card-link:hover {
    color: #004851;
}

/* Bottom Button */
.mana-journal-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.mana-journal-button {
    background-color: #0D4F43;
    color: #FFFFFF;
    font-family: 'Gotham Rounded', sans-serif;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 40px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.mana-journal-button:hover {
    background-color: #004851;
    color: #FFFFFF;
}

.mana-journal-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mana-journal-inner {
        padding: 0 20px;
    }

    .mana-journal-heading {
        font-size: 30px;
    }

    .mana-journal-description {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .mana-journal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .mana-journal-button-wrapper {
        margin-top: 40px;
    }

    .mana-journal-button {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   Mana Accessibility Statement Widget
   =================================== */
.mana-accessibility {
    background-color: #FFFFFF;
    padding: 60px 20px;
}

.mana-accessibility-inner {
    max-width: 900px;
    margin: 0 auto;
}

.mana-accessibility-section {
    margin-bottom: 50px;
}

.mana-accessibility-section:last-child {
    margin-bottom: 0;
}

.mana-accessibility-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 45px;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 20px 0;
}

.mana-accessibility-subheading {
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 32px;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 20px 0;
}

.mana-accessibility-text {
    font-family: 'Gotham', sans-serif;
    font-weight: 325;
    font-size: 20px;
    line-height: 1.5;
    color: #0D4F43;
    margin: 0;
}

.mana-accessibility-list {
    list-style: disc;
    margin: 0;
    padding-left: 30px;
}

.mana-accessibility-list li {
    font-family: 'Gotham', sans-serif;
    font-weight: 325;
    font-size: 20px;
    line-height: 1.6;
    color: #0D4F43;
    margin-bottom: 12px;
}

.mana-accessibility-list li:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mana-accessibility {
        padding: 40px 20px;
    }

    .mana-accessibility-heading {
        font-size: 32px;
    }

    .mana-accessibility-subheading {
        font-size: 26px;
    }

    .mana-accessibility-text,
    .mana-accessibility-list li {
        font-size: 18px;
    }

    .mana-accessibility-section {
        margin-bottom: 40px;
    }
}

/* ===================================
   Mana FAQ Widget
   =================================== */
.mana-faq {
    background-color: #FFFFFF;
    padding: 60px 20px;
}

.mana-faq-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.mana-faq-header {
    margin-bottom: 40px;
}

.mana-faq-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 45px;
    line-height: 1.2;
    color: #0D4F43;
    margin: 0 0 15px 0;
}

.mana-faq-description {
    font-family: 'Gotham', sans-serif;
    font-weight: 325;
    font-size: 20px;
    line-height: 1.5;
    color: #0D4F43;
    margin: 0;
}

.mana-faq-list {
    display: flex;
    flex-direction: column;
}

.mana-faq-item {
    border-bottom: 1px solid #D9D9D9;
    overflow: hidden;
}

.mana-faq-item:last-child {
    border-bottom: none;
}

.mana-faq-question {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    background: none !important;
    background-color: transparent !important;
    border: none;
    cursor: pointer;
    text-align: left;
    white-space: normal;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 20px;
    line-height: 1.2;
    color: #0D4F43 !important;
    transition: color 0.2s ease;
}

.mana-faq-question:hover,
.mana-faq-question:focus,
.mana-faq-question:active {
    background: none !important;
    background-color: transparent !important;
    color: #0D4F43 !important;
    outline: none;
}

.mana-faq-item.active .mana-faq-question {
    color: #0D4F43 !important;
}

.mana-faq-question span {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    padding-right: 20px;
}

.mana-faq-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #0D4F43;
    transition: transform 0.3s ease;
}

.mana-faq-question[aria-expanded="true"] .mana-faq-arrow {
    transform: rotate(180deg);
}

.mana-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mana-faq-item.active .mana-faq-answer {
    max-height: 1000px;
}

.mana-faq-answer-content {
    padding: 0 0 25px 0;
    font-family: 'Gotham', sans-serif;
    font-weight: 325;
    font-size: 18px;
    line-height: 1.6;
    color: #0D4F43;
}

.mana-faq-answer-content p {
    margin: 0 0 15px 0;
}

.mana-faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mana-faq {
        padding: 40px 20px;
    }

    .mana-faq-heading {
        font-size: 32px;
    }

    .mana-faq-description {
        font-size: 18px;
    }

    .mana-faq-question {
        font-size: 18px;
        padding: 20px 0;
    }

    .mana-faq-answer-content {
        font-size: 16px;
        padding: 0 0 20px 0;
    }
}

/* ===================================
   Legacy Rewards Widget
   =================================== */

.mana-legacy-rewards {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    color: #FFFFFF;
    text-align: center;
}

.mana-legacy-rewards-heading {
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 24px 0;
    color: inherit;
}

.mana-legacy-rewards-subtitle {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: inherit;
}

.mana-legacy-rewards-tiers {
    margin-bottom: 16px;
}

.mana-legacy-rewards-tier {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 6px 0;
    color: inherit;
}

.mana-legacy-rewards-disclaimer {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
    font-style: italic;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 30px 0;
    opacity: 0.85;
    color: inherit;
}

.mana-legacy-rewards-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #0D4F43;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: 350;
    font-size: 16px;
    line-height: 1.2;
    transition: background-color 0.3s ease;
}

.mana-legacy-rewards-btn:hover {
    background-color: #0B3D34;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .mana-legacy-rewards-heading {
        font-size: 28px;
    }

    .mana-legacy-rewards-subtitle {
        font-size: 20px;
    }

    .mana-legacy-rewards-tier {
        font-size: 16px;
    }

    .mana-legacy-rewards-disclaimer {
        font-size: 11px;
    }
}