* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

/* ========== Base Navbar ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #edbb55, #f4c86f);
    padding: 8px 20px;
    min-height: 64px;
    flex-wrap: wrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

/* left side */
.navbar-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 250px;
    gap: 16px;
}

.navbar-logo img {
    max-height: 56px;
    object-fit: contain;
    display: block;
}

.navbar-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    height: 40px;
    position: relative;
}

.navbar-marquee {
    color: #600909;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 2px;
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* links (desktop) */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.navbar-menu a {
    color: #090909;
    text-decoration: none;
    font: 600 1.1rem/1.2 Helvetica, sans-serif;
    padding: 10px 14px;
    border-radius: 10px;
    position: relative;
    transition: color .25s ease, background .25s ease;
}

.navbar-menu a:hover {
    color: #b60d0d;
    background: rgba(255, 255, 255, .35);
}

/* hamburger */
.navbar-toggle {
    display: none;
    /* shown on mobile */
    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 1001;
    width: 42px;
    height: 42px;
    border: 0;
    background: rgba(0, 0, 0, .08);
    border-radius: 10px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.navbar-toggle span {
    height: 3px;
    width: 22px;
    background: #1b1b1b;
    border-radius: 2px;
    transition: .3s;
    display: block;
}

.navbar-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.open span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== Mobile ========== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 14px;
    }

    .navbar-left {
        width: 100%;
        gap: 8px;
    }

    .navbar-logo {
        text-align: left;
    }

    .navbar-logo img {
        max-height: 50px;
    }

    .navbar-marquee {
        font-size: 16px;
    }

    /* show hamburger, make sure it's on top of everything */
    .navbar-toggle {
        display: inline-flex;
    }

    /* mobile menu: hidden by default with max-height for smooth slide */
    .navbar-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100vw;
        /* full bleed */
        background: #121C4D;
        display: block;
        /* use block to allow max-height animation */
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
        transform-origin: top;
        transition: max-height .35s ease;
        z-index: 1000;
    }

    .navbar-menu.active {
        max-height: 80vh;
    }

    /* expanded */

    .navbar-menu a {
        display: block;
        width: 100%;
        text-align: left;
        color: #fff;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        background: transparent;
        border-radius: 0;
    }

    .navbar-menu a:hover {
        background: rgba(255, 255, 255, .08);
        color: #fff;
    }
}

/* ultra small */
@media (max-width: 480px) {
    .navbar-marquee {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/*  */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        /* anchor the dropdown */
        flex-direction: column;
        align-items: stretch;
        padding: 10px 14px;
        z-index: 999;
        /* keep above page content */
    }

    .navbar-left {
        width: 100%;
        gap: 8px;
        align-items: center;
    }

    .navbar-logo img {
        max-height: 50px;
    }

    .navbar-marquee {
        font-size: 16px;
    }

    /* show hamburger on mobile */
    #navbar-toggle.navbar-toggle {
        display: inline-flex;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .08);
        border-radius: 10px;
        z-index: 1002;
        /* ensure it’s tappable */
        border: 0;
    }

    /* dropdown menu — hidden by default, animated with max-height */
    #navbar-menu.navbar-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        /* sits just below the navbar */
        background: #121C4D;
        /* Use block for height animation; inner links will be flexed individually */
        display: block;
        max-height: 0;
        /* collapsed */
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height .35s ease, opacity .25s ease;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    }

    /* when active, reveal smoothly */
    #navbar-menu.active {
        max-height: 80vh;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* links inside mobile menu */
    #navbar-menu a {
        display: block;
        width: 100%;
        text-align: left;
        color: #fff;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        background: transparent;
        border-radius: 0;
        font-size: 1.05rem;
    }

    #navbar-menu a:hover {
        background: rgba(255, 255, 255, .08);
        color: #fff;
    }
}

/*  */



/* Carousel */
.custom-carousel .carousel-item {
    transition: transform 1s ease-in-out;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    /* Larger for touch */
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #007bff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
    /* Larger tap area */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    /* Larger icons */
    height: 30px;
}

/* Product Highlight */
.product-highlight {
    background: #f4fff8;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #cceedd;
    border-bottom: 2px solid #cceedd;
}

.product-highlight .product-title {
    font-size: 2rem;
    color: #117964;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.product-highlight .product-subtitle {
    font-size: 1.2rem;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .product-highlight .product-title {
        font-size: 1.6rem;
    }

    .product-highlight .product-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        max-width: 90%;
        /* Better fit on small screens */
    }
}

@media (max-width: 400px) {
    .product-highlight .product-title {
        font-size: 1.4rem;
    }

    .product-highlight .product-subtitle {
        font-size: 0.9rem;
    }
}

/* About Product */
.about-product {
    background: linear-gradient(to right, #f9fff9, #eafaf0);
    padding: 60px 20px;
    border-top: 2px solid #cdeede;
}

.about-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.about-box {
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.about-title {
    font-size: 2rem;
    color: #117964;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-title span {
    color: #0c4b38;
}

.about-text {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text .highlight {
    color: #117964;
    font-weight: 600;
}

@media (max-width: 600px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-box {
        padding: 15px;
    }
}

@media (max-width: 400px) {
    .about-title {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.9rem;
    }
}

/* Ingredients */
.styled-ingredients-section {
    background: linear-gradient(135deg, #f4fff8 0%, #eafaf0 100%);
    padding: 50px 20px;
}

.ingredients-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    align-items: flex-start;
}

.ingredients-left {
    flex: 1 1 600px;
}

.ingredients-heading {
    font-size: 1.7rem;
    color: #117964;
    margin-bottom: 10px;
    font-weight: 700;
}

.ingredients-intro {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.ingredient-card {
    background: #ffffff;
    border-left: 5px solid #117964;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 16px rgba(17, 16, 16, 0.06);
}

.ingredient-card h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    color: #0d5d4d;

}

.ingredient-card p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.ingredients-right {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}

.ingredients-right img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    object-fit: contain;
    /* Show entire image */
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .ingredients-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ingredients-left,
    .ingredients-right {
        width: 100%;
    }

    .ingredients-right {
        margin-top: 0;
        /* Remove margin on mobile */
    }

    .ingredient-card {
        text-align: left;
    }
}

@media (max-width: 400px) {
    .ingredients-heading {
        font-size: 1.5rem;
    }

    .ingredient-card h4 {
        font-size: 1rem;
    }

    .ingredient-card p {
        font-size: 0.85rem;
    }
}

/* Key Benefits */
.key-benefits-section {
    padding: 50px 10px;
    background: linear-gradient(to right, #f1fff7, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.section-heading {
    font-size: 2rem;
    color: #117964;
    font-weight: 700;
    margin-bottom: 30px;
}

.benefits-text {
    flex: 1 1 450px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.benefits-list li {
    background: #e8fdf1;
    margin-bottom: 16px;
    padding: 15px 18px;
    border-left: 4px solid #117964;
    border-radius: 6px;
    font-size: 1.05rem;
    color: #333;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

.benefits-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 16px rgba(17, 16, 16, 0.06);
}

.benefits-list span {
    margin-right: 12px;
    font-size: 1.3rem;
    color: #117964;
}

.benefits-image {
    flex: 1 1 300px;
    text-align: center;
}

.benefits-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .benefits-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .benefits-text {
        text-align: left;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .benefits-list li {
        font-size: 0.95rem;
    }

    .benefits-image {
        margin-top: 25px;
    }
}

@media (max-width: 400px) {
    .section-heading {
        font-size: 1.4rem;
    }

    .benefits-list li {
        font-size: 0.9rem;
    }
}

/* Why Choose Us */
.why-choose-us {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #00b4db, #0083b0);
    color: white;
    border-radius: 16px;
    padding: 20px 30px;
    max-width: 1200px;
    margin: 30px auto;
    font-family: 'Poppins', sans-serif;
    gap: 20px;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 200px;
    min-width: 200px;
}

.choose-item img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.choose-item h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.choose-item p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.choose-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-us {
        flex-direction: column;
        align-items: center;
    }

    .choose-item {
        flex: 1 1 100%;
        /* Full width on mobile */
        justify-content: center;
    }

    .choose-item p {
        font-size: 14px;
        /* Slightly larger for readability */
    }
}

@media (max-width: 400px) {
    .choose-item h3 {
        font-size: 18px;
    }

    .choose-item p {
        font-size: 13px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    body {
        font-size: 14px;
        /* Base font size reduction */
    }

    .logo {
        font-size: 1.8rem;
    }

    .menu-items li {
        font-size: 1rem;
    }
}

/* footer */
.footer {
    background-color: #F5F5DC;
    color: #333333;
    padding: 20px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    margin: 0 10px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #7f7d7d;
    text-decoration: none;
    font-size: 16px
}

.footer-column ul li::before {
    content: "•";
    color: #333333;
    margin-right: 5px;
}

/* .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.social-icons a {
    font-size: 20px;
}

.social-icons .fa-facebook-f {
    color: #3b5998;
}

.social-icons .fa-instagram {
    color: #E1306C;
}

.social-icons .fa-youtube {
    color: #FF0000;
}

.social-icons .fa-linkedin-in {
    color: #0077B5;
} */

.promises li {
    position: relative;
    padding-left: 20px;
    color: #666666;
    font-size: 14px;
}

.promises li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: green;
    position: absolute;
    left: 0;
}

.footer-column form {
    display: flex;
    gap: 10px;
}

.footer-column input {
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    background-color: white;
    color: #666666;
    font-size: 14px;
    flex: 1;
}

.footer-column button {
    padding: 10px 20px;
    background-color: #333333;
    color: white;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.footer-column i {
    margin-right: 5px;
    color: #333333;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #CCCCCC;
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: #666666;
}

.footer-bottom p:last-child {
    font-size: 10px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-column form {
        flex-direction: column;
    }

    .footer-column input,
    .footer-column button {
        width: 100%;
    }
}

.social-icons {
    display: flex;
    flex-direction: row;
    /* force row layout */
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    /* allows wrapping on small screens */
    gap: 10px;
    margin-bottom: 15px;
}

.social-icons a {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50%;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s;
}

.social-icons a:hover {
    background-color: #e6e6e6;
    transform: scale(1.1);
}

/* Individual icon colors */
.social-icons .fa-facebook-f {
    color: #3b5998;
}

.social-icons .fa-instagram {
    color: #E1306C;
}

.social-icons .fa-youtube {
    color: #FF0000;
}

.social-icons .fa-linkedin-in {
    color: #0077B5;
}


@media (max-width: 768px) {
    .social-icons {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .social-icons a {
        margin: 5px;
    }
}

/* card name  */
/* Main Container */
.mc-slider-box {
    width: 100%;
    max-width: 1200px;
    /* <= as requested */
    margin: auto;
    overflow: hidden;
    /* show only 1 card */
    position: relative;
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .15);
}

/* Track slides left/right */
.mc-slider-track {
    display: flex;
    gap: 0;
    /* no gaps so 1-at-a-time is tight */
    transition: transform .5s ease-in-out;
    will-change: transform;
}

/* 🟢 Each card fills the viewport of the slider */
.mc-slide-card {
    min-width: 100%;
    /* <= exactly one card visible */
    width: 100%;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    text-align: center;
}

.mc-slide-card h3 {
    font-size: 28px;
    color: #111;
    margin-bottom: 12px
}

.mc-slide-card p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto
}

.mc-emoji {
    font-size: 20px
}

/* Arrows */
.mc-prev,
.mc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 18px;
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 110, 253, .35);
}

.mc-prev {
    left: 14px
}

.mc-next {
    right: 14px
}

.mc-prev:hover,
.mc-next:hover {
    filter: brightness(.92)
}

/* Dots */
.mc-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px
}

.mc-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdbdbd;
    cursor: pointer;
    transition: transform .2s
}

.mc-dot.mc-active {
    background: #0d6efd;
    transform: scale(1.1)
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .mc-slide-card h3 {
        font-size: 22px
    }

    .mc-slide-card p {
        font-size: 16px
    }
}

@media (max-width: 600px) {
    .mc-slider-box {
        padding: 18px
    }

    .mc-slide-card {
        padding: 20px
    }

    .mc-prev,
    .mc-next {
        padding: 10px 12px;
        font-size: 16px
    }
}


/* video  */
:root {
    --bg: #0f0f10;
    --card: #1a1b1f;
    --ring: #2b2d33;
    --text: #f5f7fb;
    --sub: #c9ccd2;
    --brand: #0d6efd;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    font-family: Inter, system-ui, Arial, sans-serif;
    color: var(--text)
}

/* Section wrapper */
.mc-gallery {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 16px;
}

.mc-head {
    text-align: center;
    margin-bottom: 26px;
}

.mc-head h2 {
    font-weight: 800;
    letter-spacing: .2px;
    margin: 0 0 6px
}

.mc-head p {
    color: var(--sub);
    margin: 0
}

/* Grid */
.mc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 1024px) {
    .mc-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 680px) {
    .mc-grid {
        grid-template-columns: 1fr
    }
}

/* Card */
.mc-card {
    background: linear-gradient(180deg, #202229, #17181c);
    border-radius: 24px;
    padding: 14px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
    overflow: visible;
    transition: transform .35s ease, box-shadow .35s ease;
}

.mc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
}

/* Video container */
.mc-video-wrap {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #000;
    isolation: isolate;
}

.mc-video-wrap::before {
    content: "";
    display: block;
    padding-bottom: 177.78%;
}

.mc-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

/* Soft highlight edge */
.mc-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(100% 60% at 50% 0%, rgba(255, 255, 255, .12), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, 0) 40%);
    pointer-events: none;
}

/* Title overlay */
.mc-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}

.mc-title {
    font-size: 20px;
    font-weight: 800
}

.mc-sub {
    font-size: 13px;
    color: #e8ebf3;
    opacity: .9
}

/* Pedestal */
.mc-pedestal {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    width: 62%;
    height: 18px;
    filter: blur(18px);
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .45), rgba(0, 0, 0, .0));
    pointer-events: none;
}

/* Controls */
.mc-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.mc-mute {
    border: 1px solid var(--ring);
    background: #121317;
    color: #eef2ff;
    padding: 6px 12px;
    font-size: 8px;
    /* 🔹 Smaller size */
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all .2s ease;
}

.mc-mute[data-state="unmuted"] {
    background: var(--brand);
    border-color: transparent;
}

.mc-caption {
    color: var(--sub);
    font-size: 12px;
}

@media (max-width: 420px) {
    .mc-video-wrap::before {
        padding-bottom: 160%
    }

    .mc-title {
        font-size: 18px
    }
}