/* ===================================================================
   Magizh Gold — frontend jewellery theme
   Palette taken from the brand crown logo (deep maroon + gold gradient)
   =================================================================== */
:root {
    --mg-maroon-950: #1d0408;
    --mg-maroon-900: #2c0710;
    --mg-maroon-800: #3f0b18;
    --mg-maroon-700: #5a1023;
    --mg-maroon-600: #7a1830;
    --mg-gold-100: #fbeec2;
    --mg-gold-200: #f6dd96;
    --mg-gold-400: #eec25e;
    --mg-gold-500: #dfa83b;
    --mg-gold-600: #c08a26;
    --mg-gold-700: #9c6c1c;
    --mg-cream: #fff8ec;
    --mg-ink: #2b1810;
    --mg-radius: 16px;
    --mg-shadow: 0 10px 30px rgba(29, 4, 8, 0.12);
    --mg-font: 'Nunito', sans-serif;
    --mg-font-display: 'Nunito', sans-serif;
}

body {
    font-family: var(--mg-font);
    font-size: 0.92rem;
    color: var(--mg-ink);
    background: #ffffff;
}

/* Scale every rem-based font size down on mobile for a tighter, less oversized look */
@media (max-width: 767.98px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }
}

h1, h2, h3, h4, h5,
.mg-font-display {
    font-family: var(--mg-font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
}

.mg-gold-text {
    background: linear-gradient(90deg, var(--mg-gold-600), var(--mg-gold-200), var(--mg-gold-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Rate ticker bar ---------- */
.mg-rate-bar {
    background: linear-gradient(90deg, var(--mg-maroon-950), var(--mg-maroon-800) 55%, var(--mg-maroon-700));
    color: var(--mg-gold-100);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(238, 194, 94, 0.25);
}

.mg-rate-bar .mg-rate-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.mg-rate-live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.68rem;
    color: var(--mg-gold-200);
    padding-right: 0.85rem;
    border-right: 1px solid rgba(238, 194, 94, 0.25);
}

.mg-rate-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: mg-rate-pulse 1.8s infinite;
}

@keyframes mg-rate-pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
    70% { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.mg-rate-bar .mg-rate-scroll {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    flex: 1 1 auto;
}

.mg-rate-bar .mg-rate-scroll::-webkit-scrollbar {
    display: none;
}

.mg-rate-bar .mg-rate-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 248, 236, 0.08);
    border: 1px solid rgba(238, 194, 94, 0.22);
    border-radius: 999px;
    padding: 0.28rem 0.75rem;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mg-rate-bar .mg-rate-item:hover {
    background: rgba(255, 248, 236, 0.14);
    border-color: rgba(238, 194, 94, 0.4);
}

.mg-rate-bar .mg-rate-item i {
    color: var(--mg-gold-400);
    font-size: 0.85rem;
}

.mg-rate-icon {
    width: 18px;
    height: 14px;
    flex-shrink: 0;
    object-fit: contain;
}

.mg-rate-bar .mg-rate-item-silver i {
    color: #d6d9dd;
}

.mg-rate-bar .mg-rate-label {
    color: var(--mg-gold-200);
    font-weight: 600;
}

.mg-rate-bar .mg-rate-value {
    font-weight: 700;
    color: #fff;
}

.mg-rate-bar .mg-rate-value small {
    font-weight: 500;
    opacity: 0.7;
    margin-left: 0.1rem;
}

.mg-rate-bar .mg-rate-date {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 248, 236, 0.65);
    flex-shrink: 0;
    padding-left: 0.85rem;
    border-left: 1px solid rgba(238, 194, 94, 0.25);
}

@media (max-width: 575px) {
    .mg-rate-bar .mg-rate-live,
    .mg-rate-bar .mg-rate-date {
        display: none;
    }

    .mg-rate-bar .mg-rate-inner {
        gap: 0;
    }
}

/* ---------- Main navbar ---------- */
.mg-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
    border-bottom: 1px solid rgba(60, 12, 24, 0.08);
    padding: 0.45rem 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.mg-navbar.mg-navbar-scrolled {
    padding: 0.35rem 0;
    box-shadow: 0 4px 16px rgba(29, 4, 8, 0.08);
}

.mg-logo-img {
    height: 48px;
    width: 48px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 50%;
    background: var(--mg-maroon-900);
    padding: 4px;
    transition: height 0.25s ease, width 0.25s ease;
}

.mg-navbar-scrolled .mg-logo-img {
    height: 34px;
    width: 34px;
}

.mg-navbar .mg-brand-name {
    font-family: var(--mg-font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--mg-maroon-900);
    line-height: 1.1;
    white-space: nowrap;
}

.mg-navbar .mg-brand-tagline {
    font-family: var(--mg-font-display);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mg-gold-700);
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .mg-navbar > .container > a.d-flex {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }

    .mg-navbar > .container > a.d-flex > span {
        min-width: 0;
        overflow: hidden;
    }

    .mg-navbar .mg-logo-img {
        height: 42px;
        width: 42px;
    }

    .mg-navbar .mg-brand-name {
        font-size: 1rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mg-navbar .mg-brand-tagline {
        font-size: 0.56rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mg-navbar .navbar-toggler {
        flex-shrink: 0;
    }
}

.mg-navbar .nav-link {
    font-family: var(--mg-font-display);
    color: var(--mg-maroon-900) !important;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    margin: 0 0.6rem;
}

.mg-navbar .nav-link:hover,
.mg-navbar .nav-link.active {
    color: var(--mg-gold-600) !important;
}

.mg-shop-menu {
    position: relative;
}

.mg-shop-menu-caret {
    font-size: 0.6rem;
    margin-left: 0.2rem;
    vertical-align: middle;
}

.mg-shop-megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    z-index: 1040;
    display: none;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 880px;
    max-width: 95vw;
    background: #fff;
    border: 1px solid var(--mg-gold-200);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(60, 12, 24, 0.18);
    padding: 1.5rem;
}

.mg-shop-menu:hover .mg-shop-megamenu,
.mg-shop-megamenu:hover {
    display: flex;
}

.mg-shop-megamenu-col {
    flex: 0 0 auto;
    width: 180px;
}

.mg-shop-megamenu-title {
    display: block;
    font-family: var(--mg-font-display);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--mg-maroon-900);
    text-decoration: none;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--mg-gold-200);
}

.mg-shop-megamenu-title:hover {
    color: var(--mg-gold-600);
}

.mg-shop-megamenu-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mg-shop-megamenu-col li {
    margin-bottom: 0.45rem;
}

.mg-shop-megamenu-col a {
    font-size: 0.8rem;
    color: var(--mg-maroon-800);
    text-decoration: none;
}

.mg-shop-megamenu-col a:hover {
    color: var(--mg-gold-600);
}

@media (max-width: 991.98px) {
    .mg-shop-megamenu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1rem;
        display: none;
    }

    .mg-shop-menu:hover .mg-shop-megamenu {
        display: flex;
    }
}

.mg-icon-btn {
    color: var(--mg-maroon-900);
    font-size: 1.1rem;
    position: relative;
    margin-left: 1rem;
}

.mg-icon-btn:hover {
    color: var(--mg-gold-600);
}

.mg-icon-btn .mg-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--mg-gold-500);
    color: var(--mg-maroon-950);
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Header icon-over-label nav actions ---------- */
.mg-nav-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--mg-maroon-900);
    text-align: center;
    min-width: 52px;
}

.mg-nav-action:hover {
    color: var(--mg-gold-600);
}

.mg-nav-action-icon {
    position: relative;
    font-size: 1.2rem;
    line-height: 1;
}

.mg-nav-action-label {
    font-family: var(--mg-font-display);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: 0.2rem;
    white-space: nowrap;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mg-nav-action-icon .mg-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--mg-gold-500);
    color: var(--mg-maroon-950);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mg-nav-action-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--mg-gold-500);
}

.mg-nav-action-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-btn-gold {
    background: linear-gradient(135deg, var(--mg-gold-400), var(--mg-gold-600));
    border: none;
    color: var(--mg-maroon-950);
    font-family: var(--mg-font-display);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 999px;
    padding: 0.55rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mg-btn-gold:hover {
    color: var(--mg-maroon-950);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 22px rgba(192, 138, 38, 0.4);
}

.mg-btn-outline-gold {
    border: 1.5px solid var(--mg-gold-600);
    color: var(--mg-maroon-900);
    font-family: var(--mg-font-display);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 999px;
    padding: 0.5rem 1.4rem;
    background: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mg-btn-outline-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(192, 138, 38, 0.25);
}

.mg-btn-request-price {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--mg-gold-400), var(--mg-gold-600));
    border: none;
    color: var(--mg-maroon-950);
    font-family: var(--mg-font-display);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 999px;
    padding: 0.45rem 1.25rem;
    font-size: 0.95rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mg-btn-request-price:hover {
    color: var(--mg-maroon-950);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(192, 138, 38, 0.35);
}

.mg-badge-request-price {
    display: inline-flex;
    align-items: center;
    background: rgba(192, 138, 38, 0.12);
    color: var(--mg-gold-600);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
}

.mg-btn-outline-gold:hover {
    background: var(--mg-gold-600);
    color: #fff;
}

/* ---------- Hero / banner ---------- */
.mg-hero {
    position: relative;
}

.mg-hero .swiper-slide {
    position: relative;
    background: var(--mg-maroon-900);
}

.mg-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/6;
}

.mg-hero-fallback {
    background: radial-gradient(circle at 20% 20%, var(--mg-maroon-700), var(--mg-maroon-950) 70%);
    aspect-ratio: 16/6;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .mg-hero img,
    .mg-hero-fallback {
        aspect-ratio: 16/9;
    }

    .mg-hero img {
        object-fit: contain;
    }
}

.mg-hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem;
    background: linear-gradient(90deg, rgba(29, 4, 8, 0.78) 0%, rgba(29, 4, 8, 0.45) 55%, rgba(29, 4, 8, 0.15) 100%);
}

.mg-hero-caption h1 {
    color: var(--mg-gold-100);
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.mg-hero-caption p {
    color: rgba(255, 248, 236, 0.9);
    max-width: 420px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .mg-hero-caption {
        padding: 1.5rem;
    }
    .mg-hero-caption h1 {
        font-size: 1.6rem;
    }
}

.mg-hero .swiper-pagination-bullet {
    background: var(--mg-gold-200);
    opacity: 0.6;
}

.mg-hero .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--mg-gold-500);
}

/* ---------- Section headings ---------- */
.mg-section {
    padding: 3rem 0;
}

.mg-section-tint {
    background: var(--mg-gold-100);
}

.mg-section-flush {
    padding-top: 0;
    padding-bottom: 0;
}

.mg-section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--mg-gold-600);
    margin-bottom: 0.6rem;
}

.mg-section-eyebrow i {
    font-size: 0.8rem;
    color: var(--mg-gold-500);
}

.mg-section-eyebrow::before,
.mg-section-eyebrow::after {
    content: '';
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mg-gold-500));
}

.mg-section-eyebrow::after {
    background: linear-gradient(90deg, var(--mg-gold-500), transparent);
}

.mg-section-eyebrow-start {
    justify-content: flex-start;
}

.mg-section-eyebrow-start::before {
    display: none;
}

.mg-section-title {
    text-align: center;
    margin-bottom: 0.35rem;
    color: var(--mg-maroon-900);
    font-family: var(--mg-font-display);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.01em;
}

.mg-section-subtitle {
    text-align: center;
    color: #8a6b3f;
    margin-top: 1rem;
    margin-bottom: 2.25rem;
    font-size: 0.95rem;
}

.mg-divider {
    width: 70px;
    height: 3px;
    margin: 0.2rem auto 0;
    background: linear-gradient(90deg, var(--mg-gold-500), var(--mg-gold-200));
    border-radius: 999px;
    position: relative;
}

.mg-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    background: var(--mg-gold-500);
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.mg-section-head {
    margin-bottom: 0;
}

.mg-about-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- Category circles ---------- */
.mg-category-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1rem;
    scroll-snap-type: x proximate;
}

.mg-category-scroll::-webkit-scrollbar {
    height: 6px;
}

.mg-category-scroll::-webkit-scrollbar-thumb {
    background: var(--mg-gold-200);
    border-radius: 999px;
}

.mg-category-item {
    display: block;
    flex: 0 0 auto;
    width: 96px;
    text-align: center;
    scroll-snap-align: start;
    cursor: pointer;
}

.mg-category-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 0.6rem;
    background: var(--mg-cream);
    border: 3px solid var(--mg-gold-200);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(192, 138, 38, 0.12);
}

.mg-category-item:hover .mg-category-circle,
.mg-category-item.active .mg-category-circle {
    border-color: var(--mg-gold-600);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 26px rgba(192, 138, 38, 0.32);
}

.mg-category-item:hover .mg-category-circle img,
.mg-category-item.active .mg-category-circle img {
    transform: scale(1.08);
}

.mg-category-circle img {
    transition: transform 0.3s ease;
}

.mg-category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-category-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mg-maroon-800);
}

@media (max-width: 575.98px) {
    .mg-category-scroll {
        gap: 0.75rem;
    }

    .mg-category-item,
    .mg-category-item-trigger .mg-category-item {
        width: 72px;
    }

    .mg-category-circle {
        width: 60px;
        height: 60px;
        border-width: 2px;
        margin-bottom: 0.4rem;
    }

    .mg-category-item span {
        font-size: 0.9rem;
    }
}

.mg-category-wrap {
    position: relative;
    z-index: 20;
}

.mg-category-item-trigger {
    flex: 0 0 auto;
}

.mg-category-item-trigger .mg-category-item {
    width: 96px;
}

.mg-category-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    display: none;
    flex-direction: column;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--mg-gold-200);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(60, 12, 24, 0.15);
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.mg-category-dropdown.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mg-category-dropdown a {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--mg-maroon-800);
    text-decoration: none;
    white-space: nowrap;
}

.mg-category-dropdown a:hover {
    background: var(--mg-cream);
    color: var(--mg-gold-600);
}

/* ---------- Product cards ---------- */
.mg-product-card {
    background: #fff;
    border-radius: var(--mg-radius);
    overflow: hidden;
    box-shadow: var(--mg-shadow);
    border: 1px solid rgba(60, 12, 24, 0.06);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.mg-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(29, 4, 8, 0.16), 0 6px 18px rgba(192, 138, 38, 0.18);
    border-color: rgba(192, 138, 38, 0.35);
}

.mg-product-carousel {
    position: relative;
    padding: 0 2.6rem;
}

.mg-product-carousel .swiper {
    overflow: hidden;
}

.mg-product-carousel .swiper-slide {
    height: auto;
}

.mg-carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(60, 12, 24, 0.1);
    background: #fff;
    color: var(--mg-maroon-900);
    box-shadow: var(--mg-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.mg-carousel-arrow:hover {
    background: var(--mg-gold-500);
    color: #fff;
}

.mg-carousel-arrow.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.mg-carousel-prev {
    left: 0;
}

.mg-carousel-next {
    right: 0;
}

@media (max-width: 575px) {
    .mg-product-carousel {
        padding: 0 2.1rem;
    }

    .mg-carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

.mg-product-thumb {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--mg-gold-100);
    overflow: hidden;
}

.mg-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mg-product-card:hover .mg-product-thumb img {
    transform: scale(1.09);
}

.mg-product-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(29, 4, 8, 0) 60%, rgba(29, 4, 8, 0.28) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mg-product-card:hover .mg-product-thumb::after {
    opacity: 1;
}

.mg-wishlist-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mg-maroon-800);
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(29, 4, 8, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mg-wishlist-dot:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(29, 4, 8, 0.2);
}

.mg-wishlist-dot.active,
.mg-wishlist-dot.active i {
    color: var(--mg-maroon-700);
}

.mg-btn-outline-gold.active {
    background: var(--mg-gold-600);
    color: #fff;
}

.mg-product-card .mg-badge-purity {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: linear-gradient(135deg, var(--mg-maroon-800), var(--mg-maroon-950));
    color: var(--mg-gold-200);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(29, 4, 8, 0.2);
}

.mg-product-body {
    padding: 1rem 1.1rem 1.2rem;
}

.mg-product-cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mg-gold-700);
    font-weight: 700;
}

.mg-product-name {
    font-weight: 600;
    color: var(--mg-ink);
    margin: 0.25rem 0 0.4rem;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.mg-product-card:hover .mg-product-name {
    color: var(--mg-gold-700);
}

.mg-product-meta {
    font-size: 0.78rem;
    color: #8a766a;
    margin-bottom: 0.55rem;
}

.mg-product-price {
    font-weight: 700;
    color: var(--mg-maroon-900);
    font-size: 1.08rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(192, 138, 38, 0.3);
}

/* ---------- Trust badges ---------- */
.mg-trust-card {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.mg-trust-card:hover {
    transform: translateY(-5px);
}

.mg-trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mg-maroon-800), var(--mg-maroon-950));
    color: var(--mg-gold-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 0.85rem;
    box-shadow: 0 10px 22px rgba(29, 4, 8, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mg-trust-card:hover .mg-trust-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 14px 28px rgba(192, 138, 38, 0.3);
}

.mg-trust-card h6 {
    font-weight: 700;
    color: var(--mg-maroon-900);
}

.mg-trust-card p {
    font-size: 0.85rem;
    color: #8a766a;
    margin-bottom: 0;
}

/* ---------- Home gallery ---------- */
.mg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
    gap: 0.85rem;
}

.mg-gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--mg-radius);
    grid-row: span 1;
}

.mg-gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
}

.mg-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.mg-gallery-tile:hover img {
    transform: scale(1.06);
}

@media (min-width: 768px) {
    .mg-gallery-grid {
        grid-auto-rows: 180px;
    }
}

@media (max-width: 575.98px) {
    .mg-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }

    .mg-gallery-feature {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.mg-gallery-page-tile {
    display: block;
    overflow: hidden;
    border-radius: var(--mg-radius);
    aspect-ratio: 1 / 1;
}

.mg-gallery-page-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.mg-gallery-page-tile:hover img {
    transform: scale(1.06);
}

/* ---------- Testimonials ---------- */
.mg-testimonial-card {
    background: #fff;
    border-radius: var(--mg-radius);
    box-shadow: var(--mg-shadow);
    border: 1px solid rgba(60, 12, 24, 0.06);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mg-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(29, 4, 8, 0.12);
}

.mg-testimonial-rating {
    color: var(--mg-gold-500);
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
}

.mg-testimonial-quote {
    color: var(--mg-ink);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.mg-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mg-testimonial-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mg-maroon-900);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.mg-testimonial-name {
    font-weight: 700;
    color: var(--mg-maroon-900);
    font-size: 0.92rem;
}

.mg-testimonial-location {
    font-size: 0.78rem;
    color: #8a766a;
}

/* ---------- Footer ---------- */
.mg-footer {
    background: linear-gradient(180deg, var(--mg-maroon-900), var(--mg-maroon-950));
    color: rgba(255, 248, 236, 0.82);
    padding-top: 3rem;
    font-size: 0.85rem;
}

.mg-footer h6 {
    color: var(--mg-gold-200);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.mg-footer a {
    color: rgba(255, 248, 236, 0.75);
}

.mg-footer .list-unstyled li {
    font-size: 0.95rem;
    color: rgba(255, 248, 236, 0.75);
}

.mg-footer a:hover {
    color: var(--mg-gold-300);
}

.mg-footer .mg-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(238, 194, 94, 0.4);
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.mg-footer .mg-social a:hover {
    background: var(--mg-gold-600);
    border-color: var(--mg-gold-600);
    color: var(--mg-maroon-950);
}

.mg-footer-bottom {
    border-top: 1px solid rgba(238, 194, 94, 0.15);
    margin-top: 2rem;
    padding: 1rem 0;
    font-size: 0.78rem;
    text-align: center;
}

.mg-footer-bottom a {
    color: var(--mg-gold-300);
}

/* ---------- Shop banner ---------- */
.mg-shop-banner {
    background:
        radial-gradient(circle at 12% 25%, rgba(238, 194, 94, 0.14), transparent 45%),
        radial-gradient(circle at 88% 75%, rgba(238, 194, 94, 0.1), transparent 50%),
        linear-gradient(135deg, var(--mg-maroon-900), var(--mg-maroon-950));
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(238, 194, 94, 0.2);
}

.mg-shop-banner h1 {
    color: var(--mg-gold-100);
    font-size: 2rem;
    margin-bottom: 0.4rem;
    position: relative;
}

.mg-shop-banner p {
    color: rgba(255, 248, 236, 0.75);
    margin-bottom: 0;
    position: relative;
}

.mg-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 248, 236, 0.65);
}

.mg-banner-breadcrumb a {
    color: var(--mg-gold-200);
    font-weight: 600;
}

.mg-banner-breadcrumb a:hover {
    color: var(--mg-gold-100);
}

.mg-banner-breadcrumb i {
    font-size: 0.65rem;
    color: var(--mg-gold-500);
}

.mg-product-link {
    display: block;
    color: inherit;
}

/* ---------- Filter sidebar ---------- */
.mg-filter-box {
    background: #fff;
    border-radius: var(--mg-radius);
    border: 1px solid rgba(60, 12, 24, 0.06);
    box-shadow: var(--mg-shadow);
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.25rem;
}

.mg-filter-title {
    font-weight: 700;
    color: var(--mg-maroon-900);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.mg-filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 220px;
    overflow-y: auto;
}

.mg-filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--mg-ink);
    cursor: pointer;
}

.mg-filter-option input {
    accent-color: var(--mg-gold-600);
}

.mg-result-count {
    font-size: 0.9rem;
    color: #8a766a;
}

.mg-sort-select {
    width: auto;
    height: 42px;
}

/* ---------- Product details page ---------- */
.mg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #8a766a;
}

.mg-breadcrumb a {
    color: var(--mg-maroon-800);
    font-weight: 600;
}

.mg-breadcrumb a:hover {
    color: var(--mg-gold-600);
}

.mg-breadcrumb i {
    font-size: 0.65rem;
    color: var(--mg-gold-500);
}

.mg-breadcrumb span:last-child {
    color: var(--mg-ink);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 240px;
}

.mg-pd-gallery-card {
    background: #fff;
    border-radius: var(--mg-radius);
    padding: 1.1rem;
    box-shadow: var(--mg-shadow);
    border: 1px solid rgba(60, 12, 24, 0.06);
}

@media (min-width: 992px) {
    .mg-pd-gallery {
        position: sticky;
        top: 110px;
    }
}

.mg-pd-main-image {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--mg-gold-100);
    border-radius: 12px;
    overflow: hidden;
}

.mg-pd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mg-pd-main-image:hover img {
    transform: scale(1.07);
}

.mg-pd-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 2px;
}

.mg-pd-thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(60, 12, 24, 0.08);
    cursor: pointer;
    background: var(--mg-gold-100);
    transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.mg-pd-thumb:hover {
    transform: translateY(-2px);
}

.mg-pd-thumb.active {
    border-color: var(--mg-gold-600);
    box-shadow: 0 4px 10px rgba(192, 138, 38, 0.3);
}

.mg-pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-pd-cat {
    display: inline-flex;
    align-items: center;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mg-maroon-800);
    background: var(--mg-gold-100);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-weight: 700;
}

.mg-pd-cat-sep {
    font-size: 0.6rem;
    margin: 0 0.35rem;
}

.mg-pd-share {
    margin-left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--mg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(60, 12, 24, 0.1);
    font-size: 1rem;
    flex-shrink: 0;
}

.mg-pd-title {
    color: var(--mg-maroon-900);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.5rem 0 0.35rem;
    line-height: 1.2;
}

.mg-pd-code {
    font-size: 0.85rem;
    color: #8a766a;
    margin-bottom: 1.1rem;
}

.mg-pd-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 0.3rem;
}

.mg-pd-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mg-maroon-900);
}

.mg-pd-tax-note {
    font-size: 0.78rem;
    color: #8a766a;
    margin-bottom: 1.4rem;
}

.mg-pd-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.mg-pd-stock.in-stock {
    background: rgba(40, 167, 69, 0.1);
    color: #1f7a37;
}

.mg-pd-stock.out-stock {
    background: rgba(220, 53, 69, 0.1);
    color: #a3273a;
}

.mg-pd-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.4rem 0;
}

@media (max-width: 420px) {
    .mg-pd-specs {
        grid-template-columns: 1fr;
    }
}

.mg-pd-spec-card {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    border: 1px solid rgba(60, 12, 24, 0.08);
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
}

.mg-pd-spec-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--mg-gold-100);
    color: var(--mg-maroon-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.mg-pd-spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8a766a;
}

.mg-pd-spec-value {
    font-weight: 700;
    color: var(--mg-ink);
    font-size: 0.95rem;
}

.mg-pd-description {
    border-top: 1px solid rgba(60, 12, 24, 0.08);
    padding-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.mg-pd-description h6 {
    color: var(--mg-maroon-900);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mg-pd-description p {
    color: var(--mg-ink);
    line-height: 1.6;
}

.mg-pd-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(60, 12, 24, 0.08);
}

.mg-pd-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mg-maroon-800);
}

.mg-pd-trust-item i {
    font-size: 1.1rem;
    color: var(--mg-gold-600);
}

/* ---------- Auth (login / register) ---------- */
.mg-auth-section {
    padding: 3.5rem 0 4.5rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--mg-cream);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(238, 194, 94, 0.18), transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='1.6' fill='%239c6c1c' fill-opacity='0.28'/%3E%3C/svg%3E");
    background-size: cover, 28px 28px;
    background-repeat: no-repeat, repeat;
}

.mg-auth-card {
    max-width: 460px;
    width: 100%;
    background: #fff;
    border-radius: var(--mg-radius);
    box-shadow: 0 20px 50px rgba(13, 2, 4, 0.35);
    border: 1px solid rgba(60, 12, 24, 0.06);
    padding: 2.5rem 2.25rem;
}

@media (max-width: 575px) {
    .mg-auth-card {
        padding: 2rem 1.25rem;
    }
}

.mg-auth-logo {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--mg-maroon-900);
    padding: 6px;
}

.mg-form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mg-maroon-800);
    margin-bottom: 0.4rem;
}

.mg-input-group {
    position: relative;
}

.mg-input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mg-gold-700);
    font-size: 1rem;
    pointer-events: none;
}

.mg-form-control {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(60, 12, 24, 0.15);
    padding: 0 1rem 0 2.5rem;
    font-family: var(--mg-font);
    font-size: 0.95rem;
    color: var(--mg-ink);
    background: var(--mg-cream);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mg-form-control.mg-form-control-plain {
    padding-left: 1rem;
}

.mg-form-control:focus {
    outline: none;
    border-color: var(--mg-gold-500);
    box-shadow: 0 0 0 3px rgba(223, 168, 59, 0.18);
    background: #fff;
}

.mg-link-gold {
    color: var(--mg-gold-700);
    font-weight: 600;
}

.mg-link-gold:hover {
    color: var(--mg-maroon-900);
}

.mg-alert {
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.mg-alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #a3273a;
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.mg-alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #1f7a37;
    border: 1px solid rgba(40, 167, 69, 0.25);
}

/* ---------- Pagination ---------- */
.pagination {
    gap: 0.4rem;
    flex-wrap: wrap;
}

.pagination .page-link {
    border: 1px solid rgba(60, 12, 24, 0.12);
    border-radius: 8px;
    color: var(--mg-maroon-900);
    font-family: var(--mg-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
    padding: 0.5rem 0.75rem;
    background: #fff;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pagination .page-link:hover {
    background: var(--mg-gold-100);
    border-color: var(--mg-gold-500);
    color: var(--mg-maroon-900);
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 3px rgba(223, 168, 59, 0.25);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--mg-gold-400), var(--mg-gold-600));
    border-color: var(--mg-gold-600);
    color: var(--mg-maroon-950);
}

.pagination .page-item.disabled .page-link {
    background: var(--mg-cream);
    border-color: rgba(60, 12, 24, 0.08);
    color: #c2b3a6;
}

/* ---------- Chat ---------- */
.mg-chat-wrap {
    display: flex;
    background: #fff;
    border-radius: var(--mg-radius);
    box-shadow: var(--mg-shadow);
    border: 1px solid rgba(60, 12, 24, 0.06);
    overflow: hidden;
    height: 70vh;
    min-height: 480px;
}

.mg-chat-sidebar {
    width: 320px;
    flex-shrink: 0;
    border-right: 1px solid rgba(60, 12, 24, 0.08);
    overflow-y: auto;
}

@media (max-width: 767px) {
    .mg-chat-wrap {
        flex-direction: column;
        height: auto;
    }
    .mg-chat-sidebar {
        width: 100%;
        max-height: 260px;
        border-right: none;
        border-bottom: 1px solid rgba(60, 12, 24, 0.08);
    }
}

.mg-chat-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(60, 12, 24, 0.05);
    position: relative;
}

.mg-chat-contact:hover,
.mg-chat-contact.active {
    background: var(--mg-gold-100);
}

.mg-chat-contact-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--mg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: var(--mg-maroon-800);
}

.mg-chat-contact-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-chat-contact-name {
    font-weight: 700;
    color: var(--mg-maroon-900);
    font-size: 0.9rem;
}

.mg-chat-contact-preview {
    font-size: 0.78rem;
    color: #8a766a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
}

.mg-chat-unread-dot {
    background: var(--mg-maroon-700);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    flex-shrink: 0;
}

.mg-chat-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mg-chat-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8a766a;
}

.mg-chat-empty i {
    font-size: 2.5rem;
    color: var(--mg-gold-400);
    margin-bottom: 0.75rem;
}

.mg-chat-conversation {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.mg-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.mg-chat-bubble-row {
    display: flex;
    margin-bottom: 0.6rem;
}

.mg-chat-bubble-row.mine {
    justify-content: flex-end;
}

.mg-chat-bubble {
    max-width: 70%;
    padding: 0.55rem 0.9rem;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.mg-chat-bubble.theirs {
    background: var(--mg-gold-100);
    color: var(--mg-ink);
    border-bottom-left-radius: 4px;
}

.mg-chat-bubble.mine {
    background: var(--mg-maroon-900);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.mg-chat-bubble-time {
    display: block;
    font-size: 0.65rem;
    opacity: 0.65;
    margin-top: 0.25rem;
    text-align: right;
}

.mg-chat-input-row {
    display: flex;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(60, 12, 24, 0.08);
}

.mg-chat-input-row input {
    flex: 1;
}

.mg-chat-input-row button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    padding: 0;
    flex-shrink: 0;
}

/* ---------- Gold plan cards ---------- */
.mg-plan-card {
    position: relative;
    background: #fff;
    border-radius: var(--mg-radius);
    box-shadow: var(--mg-shadow);
    border: 1px solid rgba(60, 12, 24, 0.06);
    padding: 1.75rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mg-plan-card .mg-badge-purity {
    position: static;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.mg-plan-name {
    color: var(--mg-maroon-900);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.mg-plan-duration {
    color: var(--mg-gold-700);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.1rem;
}

.mg-plan-stats {
    border-top: 1px solid rgba(60, 12, 24, 0.08);
    border-bottom: 1px solid rgba(60, 12, 24, 0.08);
    padding: 0.9rem 0;
    margin-bottom: 1rem;
}

.mg-plan-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.3rem 0;
}

.mg-plan-stat-label {
    color: #8a766a;
}

.mg-plan-stat-value {
    font-weight: 700;
    color: var(--mg-ink);
}

.mg-plan-desc {
    color: var(--mg-ink);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.mg-plan-desc p:last-child {
    margin-bottom: 0;
}

/* ---------- Gold plan banners ---------- */
.mg-plan-banner-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mg-plan-banner {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: linear-gradient(120deg, #fff 55%, var(--mg-gold-100) 150%);
    border: 1px solid rgba(60, 12, 24, 0.08);
    border-left: 5px solid var(--mg-gold-500);
    border-radius: var(--mg-radius);
    box-shadow: var(--mg-shadow);
    padding: 1.75rem 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mg-plan-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(29, 4, 8, 0.16);
}

.mg-plan-banner-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mg-gold-400), var(--mg-gold-600));
    color: var(--mg-maroon-950);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 18px rgba(192, 138, 38, 0.35);
}

.mg-plan-banner-main {
    flex: 1 1 280px;
    min-width: 0;
}

.mg-plan-banner-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.mg-plan-banner-name {
    color: var(--mg-maroon-900);
    font-size: 1.4rem;
    margin: 0;
}

.mg-plan-banner-bonus {
    display: inline-flex;
    align-items: center;
    background: rgba(192, 138, 38, 0.12);
    color: var(--mg-gold-700);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
}

.mg-plan-banner-joined {
    display: inline-flex;
    align-items: center;
    background: rgba(60, 12, 24, 0.06);
    color: var(--mg-maroon-700);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
}

.mg-plan-banner-duration {
    color: #8a766a;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mg-plan-banner-duration i {
    color: var(--mg-gold-600);
    margin-right: 0.3rem;
}

.mg-plan-banner-dot {
    margin: 0 0.5rem;
    color: rgba(60, 12, 24, 0.25);
}

.mg-plan-banner-desc {
    color: var(--mg-ink);
    font-size: 0.88rem;
    margin: 0;
}

.mg-plan-banner-desc p:last-child {
    margin-bottom: 0;
}

.mg-plan-banner-stats {
    display: flex;
    gap: 1.75rem;
    flex-shrink: 0;
    padding: 0 1.5rem;
    border-left: 1px solid rgba(60, 12, 24, 0.08);
    border-right: 1px solid rgba(60, 12, 24, 0.08);
}

.mg-plan-banner-stat {
    text-align: center;
    min-width: 90px;
}

.mg-plan-banner-stat-label {
    display: block;
    font-size: 0.72rem;
    color: #8a766a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.mg-plan-banner-stat-value {
    display: block;
    font-weight: 700;
    color: var(--mg-ink);
    font-size: 0.95rem;
    white-space: nowrap;
}

.mg-plan-banner-cta {
    flex-shrink: 0;
}

.mg-plan-banner-cta .mg-btn-gold,
.mg-plan-banner-cta .mg-btn-outline-gold {
    white-space: nowrap;
    display: inline-block;
}

@media (max-width: 991.98px) {
    .mg-plan-banner {
        flex-wrap: wrap;
        padding: 1.5rem;
    }

    .mg-plan-banner-stats {
        width: 100%;
        justify-content: space-between;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(60, 12, 24, 0.08);
        border-bottom: 1px solid rgba(60, 12, 24, 0.08);
        padding: 0.9rem 0;
    }

    .mg-plan-banner-cta {
        width: 100%;
    }

    .mg-plan-banner-cta a,
    .mg-plan-banner-cta form,
    .mg-plan-banner-cta button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .mg-plan-banner-icon {
        display: none;
    }
}

/* ---------- Account page ---------- */
.mg-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: var(--mg-radius);
    box-shadow: var(--mg-shadow);
    border: 1px solid rgba(60, 12, 24, 0.06);
    padding: 1.25rem 1.4rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mg-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(29, 4, 8, 0.12);
}

.mg-stat-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--mg-gold-100);
    color: var(--mg-maroon-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.mg-stat-value {
    font-family: var(--mg-font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--mg-maroon-900);
    line-height: 1.2;
}

.mg-stat-label {
    font-size: 0.8rem;
    color: #8a766a;
}

.mg-account-side {
    background: #fff;
    border-radius: var(--mg-radius);
    box-shadow: var(--mg-shadow);
    border: 1px solid rgba(60, 12, 24, 0.06);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.mg-account-side-profile {
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(60, 12, 24, 0.08);
}

.mg-account-side-profile .mg-account-avatar {
    width: 84px;
    height: 84px;
}

.mg-account-nav {
    gap: 0.3rem;
}

.mg-account-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    color: var(--mg-ink);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.mg-account-nav .nav-link i {
    font-size: 1rem;
    color: var(--mg-gold-600);
}

.mg-account-nav .nav-link:hover {
    background: var(--mg-gold-100);
    color: var(--mg-maroon-900);
}

.mg-account-nav .nav-link.active {
    background: linear-gradient(135deg, var(--mg-maroon-900), var(--mg-maroon-800));
    color: var(--mg-gold-100);
}

.mg-account-nav .nav-link.active i {
    color: var(--mg-gold-200);
}

.mg-account-logout {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(60, 12, 24, 0.08);
}

.mg-account-card {
    background: #fff;
    border-radius: var(--mg-radius);
    box-shadow: var(--mg-shadow);
    border: 1px solid rgba(60, 12, 24, 0.06);
    padding: 1.75rem;
}

.mg-account-card-title {
    font-family: var(--mg-font-display);
    color: var(--mg-maroon-900);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.mg-account-card-subtitle {
    color: #8a766a;
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.mg-account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mg-gold-200);
}

@media (max-width: 991.98px) {
    .mg-account-side {
        position: static;
    }
}

/* ---------- Contact page ---------- */
.mg-contact-info-card {
    background: var(--mg-gold-100);
    border-radius: var(--mg-radius);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mg-contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(29, 4, 8, 0.1);
}

.mg-contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--mg-maroon-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.mg-contact-info-card h6 {
    color: var(--mg-maroon-900);
    font-weight: 700;
}

.mg-contact-map {
    width: 100%;
    height: 380px;
}

.mg-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.mg-contact-panel {
    background: var(--mg-cream);
    border-radius: var(--mg-radius);
    padding: 3rem;
}

.mg-contact-panel-title {
    font-family: var(--mg-font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--mg-maroon-900);
    margin-bottom: 0.85rem;
}

.mg-contact-panel-text {
    font-size: 0.85rem;
    color: #6b5a50;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.mg-contact-divider-line {
    border: none;
    border-top: 1px solid rgba(60, 12, 24, 0.12);
    margin: 1.75rem 0;
}

.mg-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.mg-contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mg-gold-400), var(--mg-gold-600));
    color: var(--mg-maroon-950);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.mg-contact-detail h6 {
    font-size: 0.92rem;
    color: var(--mg-maroon-900);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.mg-contact-detail-text {
    font-size: 0.82rem;
    color: #6b5a50;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

.mg-contact-form-card {
    background: #fff;
    border-radius: var(--mg-radius);
    box-shadow: var(--mg-shadow);
    padding: 2.25rem;
}

.mg-contact-form-card h4 {
    font-size: 1.15rem;
    color: var(--mg-maroon-900);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mg-btn-block {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
}

@media (max-width: 991.98px) {
    .mg-contact-panel {
        padding: 1.75rem;
    }
}

/* ---------- Custom design enquiry banner ---------- */
.mg-design-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: linear-gradient(120deg, var(--mg-maroon-900), var(--mg-maroon-950));
    border: 1px solid rgba(238, 194, 94, 0.3);
    border-radius: var(--mg-radius);
    padding: 2.25rem 2.5rem;
    overflow: hidden;
}

.mg-design-banner-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--mg-gold-100);
    color: var(--mg-maroon-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
}

.mg-design-banner-content {
    flex: 1;
    min-width: 0;
}

.mg-design-banner-content h2 {
    color: var(--mg-gold-100);
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.mg-design-banner-content p {
    color: rgba(255, 248, 236, 0.75);
    margin-bottom: 0;
    max-width: 560px;
}

.mg-design-banner-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.mg-design-banner-spark {
    position: absolute;
    color: var(--mg-gold-400);
    opacity: 0.7;
}

.mg-design-banner-spark-1 {
    top: 1.25rem;
    right: 12rem;
    font-size: 1.6rem;
}

.mg-design-banner-spark-2 {
    bottom: 1.5rem;
    right: 4rem;
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .mg-design-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .mg-design-banner-content p {
        max-width: none;
    }
}

/* ---------- Download our app ---------- */
.mg-app-download {
    position: relative;
    background: linear-gradient(120deg, var(--mg-maroon-900), var(--mg-maroon-950));
    border: 1px solid rgba(238, 194, 94, 0.3);
    border-radius: var(--mg-radius);
    padding: 3rem 2.5rem;
    overflow: hidden;
}

.mg-app-download-spark {
    position: absolute;
    color: var(--mg-gold-400);
    opacity: 0.7;
    animation: mg-twinkle 2.6s ease-in-out infinite;
}

.mg-app-download-spark-1 {
    top: 2rem;
    left: 2.5rem;
    font-size: 1.4rem;
    animation-delay: 0s;
}

.mg-app-download-spark-2 {
    top: 3.5rem;
    right: 8rem;
    font-size: 1.1rem;
    animation-delay: 0.6s;
}

.mg-app-download-spark-3 {
    bottom: 2.5rem;
    left: 6rem;
    font-size: 1rem;
    animation-delay: 1.2s;
}

.mg-app-download-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(238, 194, 94, 0.12);
    border: 1px solid rgba(238, 194, 94, 0.35);
    color: var(--mg-gold-400);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.mg-app-download-content h2 {
    color: var(--mg-gold-100);
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
}

.mg-app-download-content p {
    color: rgba(255, 248, 236, 0.75);
    margin-bottom: 1.25rem;
    max-width: 480px;
}

.mg-app-download-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.mg-app-download-features li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 248, 236, 0.9);
    font-size: 0.92rem;
}

.mg-app-download-features li i {
    color: var(--mg-gold-400);
}

.mg-app-download-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.mg-store-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 248, 236, 0.08);
    border: 1px solid rgba(238, 194, 94, 0.4);
    border-radius: 10px;
    padding: 0.55rem 1rem;
    color: var(--mg-gold-100);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mg-store-badge:hover {
    background: rgba(255, 248, 236, 0.16);
    border-color: var(--mg-gold-400);
    color: var(--mg-gold-100);
    transform: translateY(-2px);
}

.mg-store-badge i {
    font-size: 1.6rem;
    line-height: 1;
}

.mg-store-badge span {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.2;
    white-space: nowrap;
}

.mg-store-badge span small {
    font-weight: 400;
    font-size: 0.68rem;
    opacity: 0.8;
}

/* Phone mockup */
.mg-app-phone-wrap {
    position: relative;
    display: inline-block;
    padding: 2rem;
}

.mg-app-phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(238, 194, 94, 0.35), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(10px);
    z-index: 0;
}

.mg-app-phone {
    position: relative;
    z-index: 1;
    width: 230px;
    margin: 0 auto;
    background: var(--mg-maroon-950);
    border: 3px solid rgba(238, 194, 94, 0.5);
    border-radius: 32px;
    padding: 12px 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: mg-float 4s ease-in-out infinite;
}

.mg-app-phone-notch {
    width: 70px;
    height: 16px;
    background: var(--mg-maroon-950);
    border: 2px solid rgba(238, 194, 94, 0.5);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 8px;
}

.mg-app-phone-screen {
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: var(--mg-gold-100);
}

.mg-app-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-app-phone-spark {
    position: absolute;
    color: var(--mg-gold-400);
    z-index: 2;
    animation: mg-twinkle 2.6s ease-in-out infinite;
}

.mg-app-phone-spark-1 {
    top: 1rem;
    right: 0.5rem;
    font-size: 1.5rem;
}

.mg-app-phone-spark-2 {
    bottom: 2.5rem;
    left: 0;
    font-size: 1.2rem;
    animation-delay: 0.8s;
}

/* Scroll reveal */
.mg-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.mg-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mg-animate-d1 { transition-delay: 0.06s; }
.mg-animate-d2 { transition-delay: 0.12s; }
.mg-animate-d3 { transition-delay: 0.18s; }
.mg-animate-d4 { transition-delay: 0.24s; }
.mg-animate-d5 { transition-delay: 0.3s; }

.mg-app-phone-wrap.mg-animate {
    transform: translateY(28px) scale(0.94);
}

.mg-app-phone-wrap.mg-animate.is-visible {
    transform: translateY(0) scale(1);
}

@keyframes mg-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes mg-twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

@media (max-width: 767.98px) {
    .mg-app-download {
        text-align: center;
        padding: 2.25rem 1.5rem;
    }

    .mg-app-download-content p {
        max-width: none;
    }

    .mg-app-download-features {
        align-items: center;
    }

    .mg-app-download-badges {
        justify-content: center;
    }

    .mg-app-phone-wrap {
        margin-top: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mg-app-phone,
    .mg-app-download-spark,
    .mg-app-phone-spark {
        animation: none;
    }
}

/* ---------- Newsletter strip ---------- */
.mg-newsletter {
    background: var(--mg-gold-100);
    padding: 3.5rem 0;
}

.mg-newsletter-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--mg-gold-700);
    margin-bottom: 0.6rem;
}

.mg-newsletter-title {
    color: var(--mg-maroon-900);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.mg-newsletter-subtitle {
    color: #8a6b3f;
    margin-bottom: 1.75rem;
}

.mg-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.mg-newsletter-form .mg-form-control {
    flex: 1;
}

@media (max-width: 575px) {
    .mg-newsletter-form {
        flex-direction: column;
    }
}

/* ---------- Static content / FAQ pages ---------- */
.mg-content-page {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #4a3a32;
}

.mg-content-page > p:first-child em {
    display: inline-block;
    background: var(--mg-gold-100);
    color: var(--mg-gold-700);
    font-style: normal;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.mg-content-page h1,
.mg-content-page h2 {
    color: var(--mg-maroon-900);
    font-size: 1.3rem;
}

.mg-content-page h3 {
    color: var(--mg-maroon-900);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: 1.85rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(60, 12, 24, 0.08);
}

.mg-content-page h3:first-of-type {
    margin-top: 0.5rem;
}

.mg-content-page p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #5a473e;
}

.mg-content-page ul {
    padding-left: 0;
    margin-bottom: 1rem;
    list-style: none;
}

.mg-content-page ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: #5a473e;
}

.mg-content-page ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mg-gold-500);
}

.mg-content-page strong {
    color: var(--mg-maroon-800);
    font-weight: 700;
}

.mg-content-page a {
    color: var(--mg-gold-700);
    border-bottom: 1px solid var(--mg-gold-400);
}

.mg-content-page a:hover {
    color: var(--mg-maroon-800);
    border-color: var(--mg-maroon-800);
}

.mg-faq-item {
    border-bottom: 1px solid rgba(60, 12, 24, 0.08);
}

.mg-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-weight: 600;
    color: var(--mg-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mg-faq-question i {
    color: var(--mg-gold-600);
    transition: transform 0.2s ease;
}

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

.mg-faq-answer {
    color: #6b5b4f;
    line-height: 1.6;
}

.mg-faq-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--mg-gold-100);
    border-radius: var(--mg-radius);
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
}

.mg-faq-cta i {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: var(--mg-maroon-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.mg-faq-cta h6 {
    color: var(--mg-maroon-900);
    font-weight: 700;
}

.mg-faq-cta p {
    font-size: 0.88rem;
    color: #8a766a;
}

@media (max-width: 575.98px) {
    .mg-faq-cta {
        flex-direction: column;
        text-align: center;
    }
}
