﻿
:root {
    /* Yellow-gold dominant hybrid palette */
    --mj-gold: #ffd34e;
    --mj-gold-light: #ffe9a9;
    --mj-gold-deep: #f4bd2a;
    --mj-rose: #d58b8b;
    --mj-rose-deep: #b56363;
    --mj-soft-bg: #fff8e5;
    --mj-text: #2c1a14;
    --mj-dark: #140a05;
    --mj-muted: #8e726a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--mj-text);
    background: #ffffff;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* TOP BAR */
.mj-topbar {
    background: var(--mj-dark);
    color: #fef4dd;
    font-size: 13px;
    padding: 6px 0;
}

    .mj-topbar a {
        color: var(--mj-gold-light);
        font-weight: 500;
    }

/* HEADER / NAVBAR */
.mj-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffffe6;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 189, 42, 0.25);
}

.mj-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: 1480px;
    margin: 0 auto;
}

.mj-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mj-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #fffdf0, var(--mj-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--mj-dark);
    box-shadow: 0 0 0 2px rgba(255, 226, 150, 0.9);
}

.mj-logo-text-main {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.mj-logo-text-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mj-muted);
}

.mj-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.mj-nav-item {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5a3d2d;
    cursor: pointer;
}

    .mj-nav-item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--mj-gold-light), var(--mj-gold-deep));
        transition: width 0.25s ease;
    }

    .mj-nav-item:hover::after {
        width: 100%;
    }

    .mj-nav-item:hover {
        color: var(--mj-dark);
    }

.mj-dropdown {
    position: relative;
}

.mj-dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.mj-dropdown:hover .mj-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mj-dropdown-link {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    color: #4a3125;
    white-space: nowrap;
}

    .mj-dropdown-link:hover {
        background: #fff7d9;
        color: var(--mj-dark);
    }

.mj-nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mj-pill-btn {
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(244, 189, 42, 0.7);
    background: #fffbe8;
    color: var(--mj-dark);
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(244, 189, 42, 0.25);
}

    .mj-pill-btn:hover {
        background: linear-gradient(135deg, var(--mj-gold-light), var(--mj-gold));
        color: #25130b;
    }

.mj-solid-btn {
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--mj-gold-light), var(--mj-gold-deep));
    color: #25130b;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(244, 189, 42, 0.5);
}

    .mj-solid-btn:hover {
        filter: brightness(0.96);
    }

/* MOBILE MENU TOGGLE */
.mj-menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #ffffff;
    display: none; /* shown in media query */
}

    .mj-menu-toggle span,
    .mj-menu-toggle span::before,
    .mj-menu-toggle span::after {
        display: block;
        width: 18px;
        height: 2px;
        background: #2b1916;
        border-radius: 999px;
        position: relative;
        transition: all 0.25s ease;
    }

        .mj-menu-toggle span::before,
        .mj-menu-toggle span::after {
            content: "";
            position: absolute;
            left: 0;
        }

        .mj-menu-toggle span::before {
            top: -6px;
        }

        .mj-menu-toggle span::after {
            top: 6px;
        }

    .mj-menu-toggle.active span {
        background: transparent;
    }

        .mj-menu-toggle.active span::before {
            top: 0;
            transform: rotate(45deg);
        }

        .mj-menu-toggle.active span::after {
            top: 0;
            transform: rotate(-45deg);
        }

/* FULLSCREEN MOBILE MENU */
.mj-mobile-menu {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #3a1b10, #050302 55%);
    color: #fef4de;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 22px 26px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999; /* ensure on top */
}

    .mj-mobile-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

.mj-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mj-mobile-links {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

    .mj-mobile-links a {
        color: #fff3cc;
    }

.mj-mobile-sub {
    font-size: 12px;
    color: #f1d7b7;
    margin-top: 5px;
    text-transform: none;
    letter-spacing: 0.04em;
}

.mj-mobile-footer {
    font-size: 13px;
    color: #f4d9b6;
}

/* HERO SWIPER */
.mj-hero .swiper-slide {
    position: relative;
    height: 520px;
}

.mj-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mj-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.05) );
}

.mj-hero-content {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
    color: #fffaf0;
    max-width: 520px;
}

.mj-hero-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--mj-gold-light);
}

.mj-hero-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    margin: 12px 0 10px;
}

.mj-hero-sub {
    font-size: 14px;
    color: #f7e0c9;
    max-width: 410px;
    margin-bottom: 18px;
}

.mj-badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 223, 150, 0.7);
    font-size: 11px;
}

    .mj-badge-soft span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--mj-gold);
        box-shadow: 0 0 0 4px rgba(255, 220, 143, 0.35);
    }

.mj-hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}

.mj-hero-swiper .swiper-pagination-bullet-active {
    background: var(--mj-gold);
}

/* CATEGORY ROUND SWIPER */
.mj-category-bar {
    padding: 22px 0 8px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mj-section-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: 24px;
}

.mj-cat-swiper .swiper-slide {
    width: 110px;
    text-align: center;
}

.mj-cat-pill {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 4px;
    margin: 0 auto 6px;
    background: radial-gradient(circle at 30% 20%, #ffe3f0, #ffcc94);
    position: relative;
    box-shadow: 0 0 0 3px #ffe9b9, 0 10px 20px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .mj-cat-pill img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .mj-cat-pill::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.9);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    }

    .mj-cat-pill:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 0 3px rgba(255, 223, 140, 0.9), 0 18px 40px rgba(0, 0, 0, 0.24);
    }

.mj-cat-label {
    font-size: 13px;
    color: #4a3425;
    margin-bottom: 0;
    font-weight: 500;
}

/* GOLD JEWELLERY GRID */
.mj-section-title {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    text-align: center;
    margin-bottom: 8px;
}

.mj-section-sub {
    font-size: 14px;
    text-align: center;
    color: var(--mj-muted);
    margin-bottom: 26px;
}

.mj-gold-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 240px 220px;
    gap: 18px;
}

.mj-gold-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    color: #fff7e7;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

    .mj-gold-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.03);
        transition: transform 0.4s ease;
    }

    .mj-gold-card:hover img {
        transform: scale(1.08);
    }

    .mj-gold-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
    }

.mj-gold-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1) 70% );
}

.mj-gold-text {
    position: absolute;
    left: 18px;
    bottom: 18px;
}

.mj-gold-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--mj-gold-light);
}

.mj-gold-name {
    font-size: 18px;
    font-weight: 600;
}

.mj-gold-meta {
    font-size: 13px;
    color: #ffe4b1;
}

.mj-gold-grid > :nth-child(1) {
    grid-row: 1 / span 2;
}

/* EARRING COLLECTION */
.mj-earring-strip {
    background: var(--mj-soft-bg);
    border-radius: 18px;
    padding: 24px 20px 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

    .mj-earring-strip h3 {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        text-align: center;
        margin-bottom: 4px;
    }

    .mj-earring-strip p {
        text-align: center;
        font-size: 13px;
        color: var(--mj-muted);
        margin-bottom: 18px;
    }

.mj-earring-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mj-ear-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff4d1;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
}

    .mj-ear-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    }

    .mj-ear-card img {
        width: 46%;
        object-fit: cover;
    }

.mj-ear-text {
    flex: 1;
    padding: 10px 10px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

    .mj-ear-text h5 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .mj-ear-text span {
        font-size: 12px;
        color: var(--mj-muted);
    }

/* ABOUT OUR STORE */
.mj-about-store {
    padding: 40px 0 30px;
    background: #fffaf0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.mj-about-heading {
    text-align: center;
    margin-bottom: 20px;
}

    .mj-about-heading h3 {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        margin-bottom: 6px;
    }

    .mj-about-heading p {
        font-size: 13px;
        color: var(--mj-muted);
        margin-bottom: 0;
    }

.mj-about-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
    margin-bottom: 14px;
}

.mj-about-img {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

    .mj-about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.mj-about-badges {
    position: absolute;
    left: 18px;
    bottom: 18px;
    color: #fff9e0;
}

    .mj-about-badges h4 {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .mj-about-badges span {
        font-size: 13px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

.mj-about-right {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 14px;
}

.mj-about-call {
    border-radius: 16px;
    background: #ffffff;
    padding: 18px 20px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

    .mj-about-call h4 {
        font-size: 26px;
        color: var(--mj-rose-deep);
        margin-bottom: 6px;
    }

    .mj-about-call p {
        font-size: 13px;
        margin-bottom: 10px;
        color: var(--mj-muted);
    }

    .mj-about-call small {
        font-size: 12px;
        color: var(--mj-muted);
    }

.mj-about-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mj-about-card {
    border-radius: 16px;
    background: #ffffff;
    padding: 14px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

    .mj-about-card h6 {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 3px;
    }

    .mj-about-card p {
        font-size: 12px;
        margin-bottom: 6px;
        color: var(--mj-muted);
    }

    .mj-about-card a {
        font-size: 12px;
        font-weight: 500;
        color: var(--mj-rose-deep);
    }

/* FOOTER */
.mj-footer {
    background: radial-gradient(circle at 350% 0, #fff5c7, #5b3023 55%, #1a0c07);
    color: #fef0d8;
    padding: 34px 0 20px;
}

.mj-footer-main {
    max-width: 1380px;
    margin: 0 auto;
    padding-inline: 24px;
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
    gap: 26px;
    font-size: 13px;
}

.mj-footer-logo h4 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.mj-footer-logo span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffeab5;
}

.mj-footer p {
    margin-bottom: 6px;
}

.mj-footer-col h6 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 9px;
    color: #ffe7aa;
}

.mj-footer-link {
    display: block;
    font-size: 12px;
    color: #fbe7ca;
    margin-bottom: 4px;
}

    .mj-footer-link:hover {
        color: #ffffff;
        text-decoration: underline;
    }

.mj-footer-bottom {
    max-width: 1380px;
    margin: 0 auto;
    padding-inline: 24px;
    font-size: 11px;
    color: #f7e1c0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 233, 176, 0.5);
    padding-top: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
    row-gap: 6px;
}

    .mj-footer-bottom span strong {
        color: #fff9dc;
    }

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .mj-nav-links {
        display: none;
    }

    /* hide nav CTAs in mobile, show only hamburger */
    .mj-nav-cta > .mj-pill-btn,
    .mj-nav-cta > .mj-solid-btn {
        display: none;
    }

    .mj-menu-toggle {
        display: flex !important;
    }

    .mj-hero .swiper-slide {
        height: 420px;
    }

    .mj-hero-title {
        font-size: 30px;
    }

    .mj-gold-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

        .mj-gold-grid > :nth-child(1) {
            grid-row: auto;
        }

    .mj-earring-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mj-about-main {
        grid-template-columns: 1fr;
    }

    .mj-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .mj-section-shell {
        padding-inline: 16px;
    }

    .mj-hero .swiper-slide {
        height: 380px;
    }

    .mj-hero-content {
        left: 6%;
        right: 10%;
    }

    .mj-earring-row {
        grid-template-columns: 1fr;
    }

    .mj-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .mj-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ============================
   TESTIMONIAL SECTION
=============================== */

.mj-testimonials {
    background: #fffaf0;
    padding: 60px 0;
}

.mj-test-title {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: #2c1a14;
}

.mj-test-sub {
    font-size: 14px;
    color: #8e726a;
}

.mj-test-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.mj-test-card {
    width: 100%;
    max-width: 480px;
    background: white;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    border: 1px solid rgba(255,215,100,0.4);
    transition: all .3s ease;
}

    .mj-test-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

.mj-test-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

    .mj-test-user img {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        border: 3px solid #ffd34e;
        object-fit: cover;
    }

.mj-test-name {
    font-size: 16px;
    color: #2c1a14;
    margin: 0;
}

.mj-test-stars {
    color: #ffd34e;
    font-size: 14px;
}

.mj-test-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a3c2e;
}


/**Scehmes*/
/* HERO */
.mj-scheme-hero {
    background: linear-gradient(135deg, #ffe9b4, #ffd34e);
    padding: 60px 0;
    text-align: center;
    color: #2c1a14;
}

.mj-scheme-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
}

.mj-scheme-sub {
    font-size: 15px;
    margin-top: 10px;
    color: #6a5040;
}


/* BENEFITS */
.mj-scheme-box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255,220,120,0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mj-scheme-icon {
    font-size: 40px;
    margin-bottom: 10px;
}


/* PLAN CARD */
.mj-plan-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,220,120,0.5);
    text-align: center;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.mj-plan-value {
    font-size: 22px;
    color: #c78c0f;
}

.mj-plan-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}


/* CALCULATOR */
.mj-calc-box {
    background: #fffdf4;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #ffe29a;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.mj-calc-label {
    font-size: 14px;
    font-weight: 500;
}

.mj-calc-input {
    border-radius: 10px;
}

.mj-calc-result {
    font-size: 20px;
    font-weight: 600;
    color: #c57a00;
}


/* HOW IT WORKS */
.mj-how-step {
    padding: 20px;
}

.mj-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ffd34e,#ffca3c);
    color: #2c1a14;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
    font-weight: 700;
}


/* CTA */
.mj-scheme-cta {
    background: linear-gradient(135deg,#fff3c6,#ffd34e);
    padding: 40px 0;
    text-align: center;
}

.mj-scheme-cta-title {
    font-size: 26px;
    font-family: "Playfair Display";
}

.mj-scheme-cta-sub {
    font-size: 14px;
    color: #5a3c2e;
}


/* ============================
   CONTACT HERO
============================= */
.mj-contact-hero {
    background: linear-gradient(135deg, #ffe6a3, #ffd34e);
    padding: 60px 0 50px 0;
    color: #2c1a14;
    text-align: center;
}

.mj-contact-title {
    font-size: 36px;
    font-family: "Playfair Display", serif;
}

.mj-contact-sub {
    color: #7a5c3d;
    font-size: 14px;
    max-width: 650px;
    margin: 10px auto 0 auto;
}



/* ============================
   FORM + INFO
============================= */
.mj-contact-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #ffe29a;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.mj-form-heading {
    font-family: "Playfair Display";
    font-size: 22px;
    color: #2c1a14;
}

.mj-input-label {
    font-size: 14px;
    font-weight: 600;
    color: #5a3c2e;
    margin-bottom: 4px;
    display: block;
}

.mj-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #f7d88d;
    background: #fffef7;
    font-size: 14px;
    outline: none;
    color: #2c1a14;
    transition: all 0.3s ease;
}

    .mj-input:focus {
        border-color: #ffcf3f;
        box-shadow: 0 0 0 3px rgba(255,207,63,0.25);
    }

.mj-textarea {
    resize: vertical;
}



/* ============================
   CONTACT INFO BOX
============================= */
.mj-contact-info-box {
    background: #fffaf0;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #ffe1a2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mj-info-title {
    font-family: "Playfair Display";
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c1a14;
}

.mj-info-item h6 {
    margin-bottom: 4px;
    color: #a06b00;
    font-weight: 600;
}

.mj-info-item p {
    font-size: 14px;
    color: #5a3c2e;
}

.mj-info-link {
    color: #c98600;
    text-decoration: none;
}

    .mj-info-link:hover {
        text-decoration: underline;
    }



/* ============================
   MAP
============================= */
.mj-map-section iframe {
    filter: grayscale(20%);
}


/* HERO */
.mj-store-hero {
    background: linear-gradient(135deg,#ffe6a3,#ffd34e);
    padding: 60px 0;
    color: #2c1a14;
}

.mj-store-title {
    font-size: 36px;
    font-family: "Playfair Display";
}

.mj-store-sub {
    color: #7a5c3d;
    font-size: 14px;
}



/* WHATSAPP CTA */
.mj-whatsapp-cta {
    background: #fff7df;
    padding: 25px 0;
    border-top: 2px solid #ffd978;
    border-bottom: 2px solid #ffd978;
}

.mj-wcta-title {
    font-size: 20px;
    font-weight: 600;
    color: #593a17;
}

.mj-wcta-btn {
    padding: 10px 26px;
}



/* TRENDING COLLECTION */
.mj-trend-card {
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border: 1px solid #ffe4a4;
    text-align: center;
}

    .mj-trend-card img {
        width: 100%;
        border-radius: 12px;
    }

    .mj-trend-card h5 {
        margin-top: 10px;
        font-size: 16px;
        color: #2c1a14;
    }



/* WEDDING STORIES */
.mj-wed-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

    .mj-wed-card img {
        width: 100%;
        border-radius: 18px;
    }

.mj-wed-caption {
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .mj-wed-caption h5 {
        margin: 0;
    }



/* GALLERY */
.mj-gal-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    border: 1px solid #ffeac0;
}



/* INSTAGRAM */
.mj-insta-img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #ffe49b;
}



/* YOUTUBE */
.mj-yt-card iframe {
    border-radius: 12px;
}



/* MAP */
.mj-store-map iframe {
    filter: grayscale(20%);
}


.mj-nav-item a.active {
    color: #d49a00 !important;
    font-weight: 600;
    border-bottom: 2px solid #d49a00;
    padding-bottom: 3px;
}


/* ============================
   HERO
============================= */
.mj-goldrate-hero {
    background: linear-gradient(135deg,#ffe7ad,#ffd34e);
    padding: 60px 0;
    color: #2c1a14;
}

.mj-gr-title {
    font-size: 34px;
    font-family: "Playfair Display";
}

.mj-gr-sub {
    font-size: 14px;
    color: #6a4d2b;
    margin-top: 6px;
}

.mj-offer-strip {
    background: #fff8e0;
    border: 2px solid #ffd77d;
    padding: 18px;
    border-radius: 14px;
    margin-top: 18px;
    display: inline-block;
}

    .mj-offer-strip span {
        font-size: 13px;
        color: #c07000;
        font-weight: 600;
    }

    .mj-offer-strip h3 {
        margin: 8px 0 2px 0;
        font-family: "Playfair Display";
    }

    .mj-offer-strip strong {
        color: #da9300;
        font-size: 32px;
    }



/* ============================
   GOLD RATE CARDS
============================= */
.mj-gr-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #ffe4a4;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    text-align: center;
}

    .mj-gr-card h4 {
        font-size: 18px;
    }

.mj-gr-value {
    font-size: 30px;
    color: #c78400;
    font-weight: 700;
    margin: 6px 0;
}

.mj-gr-note {
    color: #87684b;
    font-size: 13px;
}



/* ============================
   CALCULATOR
============================= */
.mj-gr-calc-box {
    background: #fffdf4;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #ffe1a2;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mj-calc-result {
    font-size: 22px;
    font-weight: 600;
    color: #c57a00;
}



/* ============================
   OFFER HIGHLIGHTS
============================= */
.mj-off-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ffe5a6;
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
    font-size: 15px;
    color: #2c1a14;
    font-weight: 600;
}
