/* =========================================================
   MAYFAIR ACCOUNT — PREMIUM
========================================================= */

#mayfair-account {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #29391B;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* =========================================================
   TOP BAR (logo + tabs)
========================================================= */

.mayfair-topbar {
    display: flex;
    align-items: stretch;
    width: 100%;

    background: #4F5F4B !important;
    box-shadow: 0 4px 14px rgba(41, 57, 27, 0.25);

    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mayfair-topbar::-webkit-scrollbar {
    display: none;
}

.mayfair-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 24px;
}

.mayfair-logo-img {
    display: block;
    height: 42px;
    width: auto;
    object-fit: contain;
}

.mayfair-topbar-divider {
    flex-shrink: 0;
    width: 1px;
    margin: 14px 4px;
    background: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   TOP TABS
========================================================= */

.mayfair-tabs {
    display: flex;
    flex: 1 1 auto;
    width: 100%;

    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mayfair-tabs::-webkit-scrollbar {
    display: none;
}

.mayfair-tab {
    position: relative;
    padding: 17px 26px !important;

    border: none !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: rgba(255, 255, 255, 0.85) !important;

    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.4px;

    cursor: pointer;
    white-space: nowrap;

    transition: color 0.25s ease, background 0.25s ease;
}


/* Hover */

.mayfair-tab:hover {
    background: rgba(217, 168, 59, 0.12) !important;
    color: #FFFFFF !important;
}


/* Active */

.mayfair-tab.active {
    background: #D9A83B !important;
    color: #29391B !important;
    font-weight: 700;
}


/* Gold line under active tab */

.mayfair-tab.active::after {
    content: "";

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: -1px;

    height: 2.5px;
    border-radius: 2px;

    background: #29391B !important;
}


/* Disabled */

.mayfair-tab:disabled {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1 !important;
    cursor: not-allowed;
}


/* =========================================================
   TAB CONTENT
========================================================= */

.mayfair-tab-content {
    display: none;
}

.mayfair-tab-content.active {
    display: block;
    animation: mayfairFadeIn 0.35s ease;
}

@keyframes mayfairFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =========================================================
   MY ACCOUNT
========================================================= */

.mayfair-tab-content[data-content="account"] {
    padding-top: 30px;
}


/* =========================================================
   APPLY NOW CARD
========================================================= */

.mayfair-application-box {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;

    padding: 42px 38px;

    background: linear-gradient(155deg, #FFFFFF 0%, #FBF9F2 100%) !important;

    border: 1px solid #E7E2CE !important;
    border-radius: 10px;

    box-shadow:
        0 1px 2px rgba(41, 57, 27, 0.04),
        0 12px 30px rgba(41, 57, 27, 0.08) !important;
}

/* Thin gold edge accent, top-left */
.mayfair-application-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #D9A83B, #B88A20);
}


/* Small heading */

.mayfair-application-box .mayfair-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #B88A20 !important;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


/* Main heading */

.mayfair-application-box h2 {
    margin: 0 0 16px;

    color: #22301A !important;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
}


/* Description */

.mayfair-application-box p {
    max-width: 900px;

    margin: 0 0 30px;

    color: #6B715F !important;

    font-size: 15.5px;
    line-height: 1.75;
}


/* =========================================================
   APPLY NOW BUTTON
========================================================= */

.mayfair-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: auto;
    min-width: 220px;
    min-height: 54px;

    padding: 14px 32px;

    border: none !important;
    border-radius: 5px !important;

    background: linear-gradient(155deg, #C99A2D, #B07C1B) !important;
    color: #FFFFFF !important;

    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.3px;

    cursor: pointer;

    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.15) inset,
        0 8px 18px rgba(184, 138, 32, 0.35);

    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


/* Hover */

.mayfair-apply-btn:hover {
    background: linear-gradient(155deg, #D9A83B, #9F7618) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 12px 24px rgba(184, 138, 32, 0.45);
}

.mayfair-apply-btn:active {
    transform: translateY(0);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 6px 14px rgba(184, 138, 32, 0.35);
}


/* =========================================================
   MY PROFILE
========================================================= */

.mayfair-tab-content[data-content="profile"] {
    padding-top: 30px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .mayfair-topbar {
        flex-wrap: wrap;
    }

    .mayfair-brand {
        padding: 10px 16px;
    }

    .mayfair-logo-img {
        height: 32px;
    }

    .mayfair-topbar-divider {
        display: none;
    }

    .mayfair-tabs {
        overflow-x: auto;
        width: 100%;
    }

    .mayfair-tab {
        padding: 14px 18px !important;
        font-size: 13px;
    }

    .mayfair-tab.active::after {
        left: 14px;
        right: 14px;
    }

    .mayfair-application-box {
        padding: 28px 20px;
    }

    .mayfair-application-box::before {
        width: 4px;
    }

    .mayfair-application-box h2 {
        font-size: 24px;
    }

    .mayfair-application-box p {
        font-size: 14px;
    }

    .mayfair-apply-btn {
        width: 100%;
        min-height: 52px;
    }
}