* {
    box-sizing: border-box;
}

:root {
    --primary: #4b1d75;
    --primary-dark: #351054;
    --secondary: #f5c542;
    --text: #101827;
    --muted: #667085;
    --light: #f7f8fb;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: var(--light);
    color: var(--text);
}

a {
    transition: .25s ease;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15,23,42,.08);
    padding: 12px 8%;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo,
.footer-logo {
    text-decoration: none;
    color: #F8D069 !important;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span,
.footer-logo span {
    color: var(--secondary) !important;
}

.logo-img {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-header .logo-img img {
    width: 220px;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    text-decoration: none;
    color: #172033;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 13px;
    border-radius: 100px;
}

nav a:hover {
    background: #f3f4f6;
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 20px;
}

.nav-cta:hover {
    background: var(--secondary);
    color: var(--primary) !important;
}

.menu-toggle {
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    width: 46px;
    height: 42px;
    border-radius: 12px;
    font-size: 22px;
    cursor: pointer;
}

/* Hero */
.hero-slider {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 100px 8%;
    background-size: cover;
    background-position: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,21,47,.94), rgba(7,21,47,.68), rgba(7,21,47,.25));
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 760px;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.75;
    max-width: 680px;
    color: #e5e7eb;
}

.eyebrow,
.section-heading span {
    display: inline-block;
    color: var(--secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 100px;
    font-weight: 900;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-secondary {
    color: white;
    border: 1px solid rgba(255,255,255,.35);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.slider-dots {
    position: absolute;
    left: 8%;
    bottom: 60px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.55);
    padding: 0;
    cursor: pointer;
}

.dot.active {
    background: var(--secondary);
    width: 32px;
    border-radius: 100px;
}

/* Trust + Ticker */
.trust-row {
    position: relative;
    z-index: 8;
    margin: -45px 8% 45px !important;
    background: white;
    border-radius: 26px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    box-shadow: 0 25px 70px rgba(15,23,42,.14);
}

.trust-row div {
    border-right: 1px solid #e5e7eb;
    padding-right: 18px;
}

.trust-row div:last-child {
    border-right: 0;
}

.trust-row strong {
    display: block;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 6px;
}

.trust-row span {
    color: var(--muted);
    font-size: 14px;
}

.news-ticker {
    position: relative;
    z-index: 2;
    height: 46px;
    display: flex;
    align-items: center;
    background: var(--secondary);
    color: var(--primary);
    overflow: hidden;
    font-weight: 900;
    margin-bottom: 35px;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 55s linear infinite;
}

.ticker-track span {
    padding: 0 45px;
    white-space: nowrap;
}

@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Common Sections */
.section {
    padding: 100px 8%;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 45px;
}

.section-heading h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.section-heading p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.clean-grid,
.process-grid,
.sellers-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.clean-card,
.process-card,
.seller-box {
    background: white;
    border: 1px solid #eef0f4;
    padding: 34px;
    border-radius: 26px;
    box-shadow: 0 16px 45px rgba(15,23,42,.06);
}

.clean-card h3,
.process-card h3,
.seller-box h3 {
    color: var(--primary);
    font-size: 24px;
    margin: 0 0 12px;
}

.clean-card p,
.process-card p,
.seller-box p {
    color: var(--muted);
    line-height: 1.7;
}

.process-section,
.faq-section,
.product-list-section {
    background: #fff;
}

.process-card span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 22px;
}

/* Form */
.form-section {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
    background:
        linear-gradient(90deg, rgba(75,29,117,.95), rgba(75,29,117,.82)),
        url('images/form-side.webp');
    background-size: cover;
    background-position: center;
    color: white;
}

.form-info {
    align-self: center;
}

.form-info h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 0 0 20px;
}

.form-info p {
    color: #e5e7eb;
    line-height: 1.8;
    font-size: 18px;
}

.form-info ul {
    margin-top: 28px;
    padding: 0;
    list-style: none;
}

.form-info li {
    margin-bottom: 13px;
    padding-left: 28px;
    position: relative;
    color: #f8fafc;
    font-weight: 600;
}

.form-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
}

.sell-form {
    background: white;
    padding: 34px;
    border-radius: 28px;
    display: grid;
    gap: 15px;
    box-shadow: 0 25px 70px rgba(0,0,0,.28);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.full-field {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d8dde7;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
}

textarea {
    min-height: 130px;
}

.compact-form textarea {
    min-height: 110px;
}

.file-label {
    color: var(--primary);
    font-weight: 800;
}

button {
    background: var(--primary);
    color: white;
    padding: 16px;
    border: 0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

button:hover {
    background: var(--secondary);
    color: var(--primary);
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.image-preview img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: 12px;
}

.hidden-field {
    display: none !important;
}

/* Showcase */
.showcase-section {
    padding: 100px 8%;
    background: #ffffff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-auto-rows: 280px;
    gap: 22px;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(15,23,42,.12);
}

.showcase-card.large {
    grid-row: span 2;
}

.showcase-card.wide {
    grid-column: span 2;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.showcase-card:hover img {
    transform: scale(1.08);
}

.showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(75,29,117,.88), rgba(75,29,117,.10));
}

.showcase-card div {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 2;
    color: white;
}

.showcase-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.showcase-card p {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.6;
}

/* Product List */
.product-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.mini-cta {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 14px 35px rgba(75,29,117,.18);
}

.mini-cta:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-list-grid div {
    position: relative;
    overflow: hidden;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #ffffff, #faf8ff);
    border: 1px solid rgba(75,29,117,.10);
    color: var(--primary);
    font-weight: 900;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(15,23,42,.06);
    transition: .25s ease;
    padding: 18px 20px;
}

.product-list-grid div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    background: var(--secondary);
    border-radius: 0 10px 10px 0;
}

.product-list-grid div span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(245,197,66,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 auto;
}

.product-list-grid div:hover {
    transform: translateY(-4px);
    border-color: rgba(75,29,117,.22);
    box-shadow: 0 22px 55px rgba(75,29,117,.12);
}

/* Sellers / FAQ / Do Not Buy */
.seller-box.dark {
    background: var(--primary);
}

.seller-box.dark h3,
.seller-box.dark p {
    color: white;
}

.seller-box a {
    color: var(--primary);
    font-weight: 900;
}

.seller-box.dark a {
    color: var(--secondary);
}

.faq-list {
    max-width: 950px;
    display: grid;
    gap: 16px;
}

.faq-list div {
    background: #f7f8fb;
    border: 1px solid #eef0f4;
    padding: 26px;
    border-radius: 22px;
}

.faq-list h3 {
    margin: 0 0 8px;
    color: var(--primary);
}

.faq-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.do-not-buy {
    padding: 70px 8%;
    background: #f7f8fb;
    text-align: center;
}

.do-not-buy h2 {
    color: var(--primary);
    font-size: 38px;
}

.do-not-buy p {
    max-width: 900px;
    margin: auto;
    color: var(--muted);
    line-height: 1.8;
}

/* Footer */
.premium-footer {
    background: var(--primary);
    color: white;
    padding: 70px 8% 25px;
}

.footer-cta {
    background: linear-gradient(135deg, var(--secondary), #f5d36d);
    color: var(--primary);
    padding: 30px;
    border-radius: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
}

.footer-cta h2 {
    margin: 0;
    font-size: 30px;
}

.footer-cta a {
    background: var(--primary);
    color: white;
    padding: 14px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
}

.footer-grid h4 {
    color: var(--secondary);
}

.footer-grid a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-grid p {
    color: #d1d5db;
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.14);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #d1d5db;
}

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
}

.footer-logo-img {
    max-height: 58px;
    width: auto;
    margin-bottom: 15px;
}

/* Other Pages */
.about-hero,
.legal-hero,
.seller-hero,
.contact-hero,
.chat-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 100px 8%;
    color: white;
    background-size: cover !important;
    background-position: center !important;
}

.about-hero {
    background:
        linear-gradient(90deg, rgba(7,21,47,.94), rgba(7,21,47,.68), rgba(7,21,47,.25)),
        url('images/slider2.webp') !important;
}

.legal-hero {
    background:
        linear-gradient(90deg, rgba(7,21,47,.94), rgba(7,21,47,.68), rgba(7,21,47,.25)),
        url('images/slider1.webp') !important;
}

.contact-hero,
.chat-hero {
    background:
        linear-gradient(90deg, rgba(7,21,47,.94), rgba(7,21,47,.68), rgba(7,21,47,.25)),
        url('images/sale-handover.webp') !important;
}

.about-hero-content,
.seller-hero-content,
.contact-hero-content,
.chat-hero-content {
    max-width: 760px;
}

.about-hero h1,
.legal-hero h1,
.seller-hero h1,
.contact-hero h1,
.chat-hero h1 {
    margin: 0;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.about-hero p,
.legal-hero p,
.seller-hero p,
.contact-hero p,
.chat-hero p {
    font-size: 20px;
    line-height: 1.75;
    max-width: 720px;
    color: #e5e7eb;
}

.about-modern-section,
.contact-modern-section {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 45px;
    align-items: start;
    background: #ffffff;
}

.about-modern-content h2,
.contact-info-card h2 {
    color: var(--primary);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 0 0 22px;
}

.about-modern-content p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 17px;
}

.about-modern-card,
.legal-sidebar,
.contact-info-card {
    background: var(--primary);
    color: white;
    padding: 38px;
    border-radius: 28px;
    box-shadow: 0 24px 65px rgba(15,23,42,.18);
}

.about-modern-card h3,
.legal-sidebar h3 {
    color: var(--secondary);
    margin-top: 0;
    font-size: 28px;
}

.about-modern-card li {
    margin-bottom: 15px;
    line-height: 1.65;
}

.legal-modern {
    padding: 90px 8%;
    display: grid;
    grid-template-columns: .35fr .65fr;
    gap: 40px;
    background: #f7f8fb;
}

.legal-sidebar {
    height: fit-content;
    position: sticky;
    top: 110px;
}

.legal-sidebar p,
.contact-info-card p {
    color: #d1d5db;
    line-height: 1.8;
}

.legal-sidebar a,
.contact-whatsapp {
    display: inline-block;
    margin-top: 18px;
    background: var(--secondary);
    color: var(--primary);
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 100px;
    font-weight: 900;
}

.legal-content {
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(15,23,42,.08);
}

.legal-content h2,
.legal-content h3 {
    color: var(--primary);
}

.legal-content h2 {
    margin-top: 0;
    font-size: 42px;
    letter-spacing: -1px;
}

.legal-content h3 {
    margin-top: 34px;
    font-size: 24px;
}

.legal-content p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 17px;
}

.seller-trust {
    margin-top: -55px;
}

.contact-detail {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.16);
}

.contact-detail strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 6px;
}

/* Chat Popup + Back to Top */
.chat-popup-wrap {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
}

.chat-popup-btn {
    height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 18px 45px rgba(75,29,117,.35);
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.chat-popup-btn span {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.chat-popup-box {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: 330px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(15,23,42,.25);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .25s ease;
}

.chat-popup-box.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-popup-head {
    background: var(--primary);
    color: white;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.chat-popup-head strong {
    display: block;
    font-size: 16px;
}

.chat-popup-head small {
    color: #e5e7eb;
    font-size: 12px;
}

.chat-popup-head button {
    background: transparent;
    padding: 0;
    font-size: 24px;
    line-height: 1;
}

.chat-popup-links {
    padding: 14px;
    display: grid;
    gap: 10px;
}

.chat-popup-links a {
    text-decoration: none;
    background: #f7f8fb;
    color: var(--primary);
    padding: 13px 15px;
    border-radius: 14px;
    font-weight: 900;
}

.chat-popup-links a:hover {
    background: var(--secondary);
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 95px;
    height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 900;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 18px 45px rgba(75,29,117,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.back-to-top span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .site-header .logo-img img {
        width: 180px;
    }

    nav a {
        font-size: 13px;
        padding: 9px 10px;
    }
}

@media (max-width: 950px) {
    .site-header {
        padding: 12px 5%;
        min-height: 82px;
    }

    .site-header .logo-img img {
        width: 160px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 5%;
        right: 5%;
        background: white;
        padding: 18px;
        border-radius: 22px;
        box-shadow: 0 22px 55px rgba(15,23,42,.18);
        flex-direction: column;
        align-items: stretch;
    }

    .site-header nav.show {
        display: flex;
    }

    .site-header nav a {
        display: block;
        padding: 14px 16px;
    }

    .hero-slider,
    .hero-slide {
        min-height: 650px;
    }

    .hero-slide {
        padding: 85px 6%;
    }

    .slider-dots {
        left: 6%;
        bottom: 36px;
    }

    .trust-row {
        margin: 25px 5% 35px !important;
        grid-template-columns: 1fr;
    }

    .trust-row div {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 15px;
    }

    .trust-row div:last-child {
        border-bottom: 0;
    }

    .section,
    .form-section,
    .showcase-section,
    .legal-modern,
    .contact-modern-section,
    .about-modern-section {
        padding: 70px 5%;
    }

    .clean-grid,
    .process-grid,
    .form-section,
    .sellers-section,
    .footer-grid,
    .about-modern-section,
    .legal-modern,
    .contact-modern-section {
        grid-template-columns: 1fr;
    }

    .form-grid-2,
    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .product-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .showcase-card.large,
    .showcase-card.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .site-header .logo-img img {
        width: 145px;
    }

    .hero-content h1,
    .about-hero h1,
    .legal-hero h1,
    .seller-hero h1,
    .contact-hero h1,
    .chat-hero h1 {
        letter-spacing: -1.5px;
    }

    .back-to-top {
        right: 18px;
        bottom: 90px;
        padding: 0 14px;
    }

    .back-to-top small {
        display: none;
    }

    .chat-popup-wrap {
        right: 16px;
        bottom: 18px;
    }

    .chat-popup-box {
        width: calc(100vw - 32px);
    }

    .chat-popup-btn {
        padding: 0 16px;
    }
}

/* Fix excessive white space in header */
.site-header {
    min-height: 44px !important;
    padding: 8px 8% !important;
}

.site-header .logo-img img {
    width: 190px !important;
    height: auto !important;
}

@media (max-width: 950px) {
    .site-header {
        min-height: 68px !important;
        padding: 8px 5% !important;
    }

    .site-header nav {
        top: 68px !important;
    }

    .site-header .logo-img img {
        width: 155px !important;
    }
}

/* Final compact header fix */
.site-header {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    padding: 0 8% !important;
}

.site-header .logo-img img {
    width: 200px !important;
    height: auto !important;
    display: block !important;
}

.hero-slider,
.hero-slide,
.about-hero,
.seller-hero,
.contact-hero,
.chat-hero,
.legal-hero {
    margin-top: 0 !important;
}

@media (max-width: 950px) {
    .site-header {
        height: 66px !important;
        min-height: 66px !important;
        max-height: 66px !important;
        padding: 0 5% !important;
    }

    .site-header nav {
        top: 66px !important;
    }

    .site-header .logo-img img {
        width: 145px !important;
    }
}

/* Premium Mobile Menu */
.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border-radius: 14px;
    background: var(--primary);
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 10001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    margin: 5px 0;
    transition: .25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 950px) {
    .menu-toggle {
        display: block !important;
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 5%;
        right: 5%;
        background: #fff;
        padding: 16px;
        border-radius: 24px;
        box-shadow: 0 24px 70px rgba(75,29,117,.20);
        border: 1px solid rgba(75,29,117,.08);
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        z-index: 10000;
    }

    .site-header nav.show {
        display: flex !important;
    }

    .site-header nav a {
        padding: 14px 16px;
        border-radius: 14px;
        color: var(--primary);
        font-weight: 900;
    }

    .site-header nav a:hover {
        background: rgba(245,197,66,.18);
    }

    .site-header nav .nav-cta {
        text-align: center;
        background: var(--primary);
        color: white !important;
        margin-top: 6px;
    }
}

/* Fix double/repeated hero image */
.about-hero,
.seller-hero,
.contact-hero,
.chat-hero,
.legal-hero {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    width: 100% !important;
    overflow: hidden !important;
}

/* Success Page */
.success-page {
    min-height: 720px;
    padding: 110px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(75,29,117,.94), rgba(75,29,117,.72)),
        url('images/sale-handover.webp');
    background-size: cover;
    background-position: center;
}

.success-card {
    width: 100%;
    max-width: 720px;
    background: rgba(255,255,255,.96);
    padding: 55px;
    border-radius: 34px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(15,23,42,.25);
}

.success-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
}

.success-card h1 {
    margin: 0 0 18px;
    color: var(--primary);
    font-size: clamp(42px, 5vw, 62px);
    letter-spacing: -2px;
}

.success-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 8px auto;
    max-width: 560px;
}

.success-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.success-secondary {
    color: var(--primary) !important;
    border: 1px solid rgba(75,29,117,.18);
    background: transparent;
}

.success-secondary:hover {
    background: var(--primary);
    color: white !important;
}

@media (max-width: 600px) {
    .success-page {
        padding: 80px 5%;
        min-height: 620px;
    }

    .success-card {
        padding: 36px 24px;
        border-radius: 26px;
    }

    .success-actions a {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   Admin Dashboard - Final Balanced Professional UI
   Use with: <body class="admin-page">
   ========================================================= */

.admin-page {
    --admin-primary: #4b1d75;
    --admin-primary-light: #6d28a8;
    --admin-primary-dark: #2b0d42;
    --admin-yellow: #f5c542;
    --admin-bg: #f4f1f8;
    --admin-text: #121826;
    --admin-muted: #667085;
    --admin-border: #e8e2ef;
    --admin-danger: #dc3545;
    --admin-shadow: 0 18px 50px rgba(32, 16, 50, 0.08);
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(245, 197, 66, 0.20), transparent 28%),
        radial-gradient(circle at top right, rgba(75, 29, 117, 0.14), transparent 26%),
        var(--admin-bg);
    color: var(--admin-text);
}

.admin-page * {
    box-sizing: border-box;
}

.admin-page .admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-page .sidebar {
    position: sticky;
    top: 0;
    width: 260px;
    height: 100vh;
    background: linear-gradient(180deg, var(--admin-primary), var(--admin-primary-dark));
    color: #fff;
    padding: 20px;
}

.admin-page .brand-box {
    background: #fff;
    border-radius: 22px;
    padding: 18px 16px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.20);
}

.admin-page .brand-box img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
}

.admin-page .brand-box p {
    margin: 0;
    color: var(--admin-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-page .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 13px 15px;
    border-radius: 14px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.25s ease;
}

.admin-page .nav-link:hover,
.admin-page .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.admin-page .nav-link.logout {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.admin-page .main {
    padding: 28px;
    min-width: 0;
}

.admin-page .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
}

.admin-page .page-badge {
    display: inline-flex;
    background: rgba(75, 29, 117, 0.09);
    color: var(--admin-primary);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 9px;
}

.admin-page .topbar h1 {
    margin: 0;
    color: var(--admin-primary);
    font-size: 34px;
    letter-spacing: -1px;
}

.admin-page .topbar p {
    margin: 6px 0 0;
    color: var(--admin-muted);
    font-size: 15px;
}

.admin-page .top-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-page .btn-top {
    background: #fff;
    color: var(--admin-primary);
    border: 1px solid var(--admin-border);
    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    box-shadow: var(--admin-shadow);
}

.admin-page .btn-top.highlight {
    background: var(--admin-yellow);
    border-color: var(--admin-yellow);
}

.admin-page .alert {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(32, 16, 50, 0.06);
}

.admin-page .alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #b7e4c7;
}

.admin-page .alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f1b0b7;
}

.admin-page .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.admin-page .stat-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--admin-border);
    padding: 18px;
    border-radius: 22px;
    min-height: 105px;
    box-shadow: var(--admin-shadow);
}

.admin-page .stat-card::after {
    content: "";
    position: absolute;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    right: -28px;
    top: -28px;
    background: rgba(75, 29, 117, 0.08);
}

.admin-page .stat-card small {
    color: var(--admin-muted);
    font-size: 13px;
    font-weight: 900;
}

.admin-page .stat-card h3 {
    margin: 8px 0 0;
    color: var(--admin-primary);
    font-size: 30px;
}

.admin-page .stat-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

.admin-page .stat-link:hover {
    transform: translateY(-3px);
    border-color: rgba(75, 29, 117, 0.25);
}

.admin-page .active-stat {
    border-color: rgba(75, 29, 117, 0.45);
    box-shadow: 0 16px 38px rgba(75, 29, 117, 0.16);
}

.admin-page .active-filter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--admin-border);
    padding: 13px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: var(--admin-shadow);
    color: var(--admin-muted);
    font-size: 14px;
    font-weight: 800;
}

.admin-page .active-filter-box strong {
    background: rgba(75, 29, 117, 0.1);
    color: var(--admin-primary);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.admin-page .active-filter-box a {
    margin-left: auto;
    background: var(--admin-primary);
    color: #fff;
    padding: 8px 13px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.admin-page .filter-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--admin-border);
    padding: 20px;
    border-radius: 24px;
    box-shadow: var(--admin-shadow);
    margin-bottom: 22px;
}

.admin-page .filter-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 12px;
}

.admin-page input,
.admin-page select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #ddd5e8;
    border-radius: 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
    font-family: inherit;
}

.admin-page input:focus,
.admin-page select:focus {
    border-color: var(--admin-primary);
    box-shadow: 0 0 0 4px rgba(75, 29, 117, 0.10);
}

.admin-page button {
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-primary-light));
    color: #fff;
    border: 0;
    padding: 13px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
}

.admin-page button:hover {
    background: var(--admin-yellow);
    color: var(--admin-primary);
}

.admin-page .reset {
    display: inline-block;
    margin-top: 12px;
    color: var(--admin-primary);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.admin-page .table-card {
    background: #fff;
    border: 1px solid var(--admin-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--admin-shadow);
}

.admin-page .table-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    background: linear-gradient(90deg, #fff, #fbf7ff);
}

.admin-page .table-head strong {
    color: var(--admin-primary);
    font-size: 17px;
}

.admin-page .table-head span {
    color: var(--admin-muted);
    font-size: 14px;
    font-weight: 800;
}

.admin-page .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-page table {
    width: 100%;
    min-width: 1120px;
    border-collapse: collapse;
}

.admin-page th,
.admin-page td {
    padding: 14px 15px;
    border-bottom: 1px solid #f0edf5;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}

.admin-page th {
    background: #faf7ff;
    color: var(--admin-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.admin-page tr:hover td {
    background: #fffdf5;
}

.admin-page .id-cell,
.admin-page .offer-cell {
    font-weight: 900;
    color: var(--admin-primary);
}

.admin-page .seller-name strong {
    color: var(--admin-primary);
}

.admin-page .seller-name small a,
.admin-page .phone-link {
    color: var(--admin-muted);
    text-decoration: none;
    font-weight: 700;
}

.admin-page .seller-name small a:hover,
.admin-page .phone-link:hover {
    color: var(--admin-primary);
}

.admin-page .status-select {
    display: inline-flex;
    min-width: 125px;
    padding: 8px 11px;
    border-radius: 999px;
    border: 0;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.admin-page .New,
.admin-page .Pending {
    background: #fff3cd;
    color: #856404;
}

.admin-page .Reviewing {
    background: #e8e7ff;
    color: #383d7c;
}

.admin-page .Offer-Sent,
.admin-page .Offered {
    background: #d1ecf1;
    color: #0c5460;
}

.admin-page .Accepted {
    background: #d4edda;
    color: #155724;
}

.admin-page .Rejected {
    background: #f8d7da;
    color: #721c24;
}

.admin-page .Completed {
    background: #e5e7eb;
    color: #1f2937;
}

.admin-page .email-badge {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.admin-page .email-sent {
    background: #d4edda;
    color: #155724;
}

.admin-page .email-not {
    background: #f1f3f5;
    color: #495057;
}

.admin-page .note {
    max-width: 180px;
    color: var(--admin-muted);
    line-height: 1.5;
}

.admin-page .date-cell {
    color: var(--admin-muted);
    font-size: 13px;
}

.admin-page .action-btn {
    display: inline-block;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin: 2px;
}

.admin-page .action-btn.view {
    background: var(--admin-primary);
    color: #fff;
}

.admin-page .action-btn.delete {
    background: var(--admin-danger);
    color: #fff;
}

.admin-page .action-btn.delete:hover {
    background: #b02a37;
    color: #fff;
}

.admin-page .delete-form {
    display: inline-block;
    margin: 0;
}

.admin-page .delete-form button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.admin-page .empty {
    text-align: center;
    padding: 40px;
    color: var(--admin-muted);
    font-weight: 900;
}

.admin-page .pagination-wrap {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-page .pagination-info {
    color: var(--admin-muted);
    font-size: 14px;
    font-weight: 800;
}

.admin-page .pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-page .pagination a,
.admin-page .pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--admin-primary);
    border: 1px solid var(--admin-border);
    border-radius: 11px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(32, 16, 50, 0.05);
}

.admin-page .pagination a:hover {
    background: var(--admin-primary);
    color: #fff;
    border-color: var(--admin-primary);
}

.admin-page .pagination .active {
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-primary-light));
    color: #fff;
    border-color: var(--admin-primary);
}

.admin-page .pagination .disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f5f5f7;
}

.admin-page .pagination .dots {
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: auto;
    padding: 0 4px;
    color: var(--admin-muted);
}

@media (max-width: 1400px) {
    .admin-page .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1000px) {
    .admin-page .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-page .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 16px;
    }

    .admin-page .brand-box {
        max-width: 260px;
        margin: 0 auto 18px;
    }

    .admin-page .nav-link {
        display: inline-flex;
        margin: 4px;
    }

    .admin-page .main {
        padding: 22px;
    }

    .admin-page .topbar {
        display: block;
    }

    .admin-page .top-actions {
        margin-top: 12px;
    }

    .admin-page .filter-form {
        grid-template-columns: 1fr 1fr;
    }

    .admin-page .filter-form button {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .admin-page .main {
        padding: 16px;
    }

    .admin-page .topbar h1 {
        font-size: 27px;
    }

    .admin-page .topbar p {
        font-size: 13px;
    }

    .admin-page .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .admin-page .stat-card {
        padding: 14px;
        min-height: 88px;
        border-radius: 16px;
    }

    .admin-page .stat-card h3 {
        font-size: 24px;
    }

    .admin-page .filter-form {
        grid-template-columns: 1fr;
    }

    .admin-page .filter-form button {
        grid-column: auto;
    }

    .admin-page .active-filter-box {
        display: block;
    }

    .admin-page .active-filter-box strong {
        display: inline-block;
        margin: 4px 3px;
    }

    .admin-page .active-filter-box a {
        display: inline-block;
        margin-top: 8px;
        margin-left: 0;
    }

    .admin-page .table-head {
        display: block;
    }

    .admin-page .table-head span {
        display: block;
        margin-top: 6px;
    }

    .admin-page th,
    .admin-page td {
        white-space: nowrap;
    }

    .admin-page .note {
        white-space: normal;
        min-width: 150px;
    }

    .admin-page .btn-top {
        flex: 1;
        text-align: center;
    }

    .admin-page .pagination-wrap {
        display: block;
    }

    .admin-page .pagination-info {
        margin-bottom: 10px;
    }

    .admin-page .pagination a,
    .admin-page .pagination span {
        min-width: 32px;
        height: 32px;
        padding: 0 9px;
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .admin-page .stats {
        grid-template-columns: 1fr 1fr;
    }

    .admin-page .brand-box img {
        width: 140px;
    }

    .admin-page .nav-link {
        width: calc(50% - 10px);
        justify-content: center;
        font-size: 12px;
        padding: 9px 8px;
    }

    .admin-page .nav-link.logout {
        width: 100%;
    }

    .admin-page .top-actions {
        display: flex;
    }

    .admin-page .page-badge {
        font-size: 10px;
    }

    .admin-page .topbar h1 {
        font-size: 22px;
    }

    .admin-page .stat-card small {
        font-size: 10px;
    }

    .admin-page .stat-card h3 {
        font-size: 20px;
    }

    .admin-page .filter-card {
        padding: 14px;
    }
}

.trust-row.trust-row-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 950px) {
    .trust-row.trust-row-5 {
        grid-template-columns: 1fr;
    }
}

.premium-faq-section {
    background: #ffffff;
}

.faq-heading-center {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.faq-heading-center h2 {
    color: var(--primary);
}

.premium-faq-list {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(75,29,117,.10);
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(15,23,42,.06);
    overflow: hidden;
    transition: .25s ease;
}

.faq-item.active {
    border-color: rgba(75,29,117,.45);
    box-shadow: 0 24px 60px rgba(75,29,117,.12);
    background: linear-gradient(180deg, #fff, #fbf8ff);
}

.faq-question {
    width: 100%;
    background: transparent;
    color: var(--primary);
    border: 0;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 42px 1fr 28px;
    gap: 18px;
    align-items: center;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background: rgba(245,197,66,.08);
}

.faq-question strong {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 900;
}

.faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(75,29,117,.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: #fff;
}

.faq-arrow {
    font-size: 24px;
    font-weight: 900;
    transform: rotate(0deg);
    transition: .25s ease;
    text-align: center;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    padding: 0 84px 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

@media (max-width: 700px) {
    .faq-question {
        grid-template-columns: 36px 1fr 22px;
        padding: 18px;
        gap: 12px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .faq-question strong {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 18px 22px 66px;
        font-size: 15px;
    }
}

/* FINAL FORCE HEADER LOGO SIZE */
header.site-header a.logo-img {
    display: flex !important;
    align-items: center !important;
    width: 260px !important;
    min-width: 260px !important;
}

header.site-header a.logo-img img {
    width: 260px !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    object-fit: contain !important;
}

@media (max-width: 700px) {
    header.site-header a.logo-img {
        width: 190px !important;
        min-width: 190px !important;
    }

    header.site-header a.logo-img img {
        width: 190px !important;
    }
}

/* Move header logo slightly down only */
.site-header .logo-img img {
    transform: translateY(7px) !important;
}

/* Contact Hero Brand Colours */
.brand-buy,
.brand-you{
    color: #white;
}

.brand-from{
    color: #white;
}
/* Premium FAQ dropdown */
.site-header nav .nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.site-header nav .dropdown-parent {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.site-header nav .dropdown-parent span {
    font-size: 11px;
}

.site-header nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 210px;
    background: #fff;
    border: 1px solid rgba(75,29,117,.10);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 20px 55px rgba(15,23,42,.16);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 99999;
}

.site-header nav .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid rgba(75,29,117,.10);
    border-top: 1px solid rgba(75,29,117,.10);
    transform: translateX(-50%) rotate(45deg);
}

.site-header nav .dropdown-menu a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    color: #101827;
    font-weight: 800;
    white-space: nowrap;
}

.site-header nav .dropdown-menu a:hover {
    background: rgba(245,197,66,.18);
    color: #4b1d75;
}

.site-header nav .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mobile menu dropdown becomes normal links */
@media (max-width: 950px) {
    .site-header nav .nav-dropdown {
        display: block;
    }

    .site-header nav .dropdown-parent {
        display: block;
    }

    .site-header nav .dropdown-parent span {
        display: none;
    }

    .site-header nav .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0;
        margin-top: 24px;
        background: transparent;
    }

    .site-header nav .dropdown-menu::before {
        display: none;
    }

    .site-header nav .dropdown-menu a {
        padding-left: 28px;
        background: #f8f5ff;
        margin-top: 5px;
        color: #4b1d75;
    }
}