:root {
    --bg: #ffffff;
    --bg-soft: #ffffff;
    --text: #141414;
    --muted: #595959;
    --accent: #1b7a6b;
    --accent-dark: #115a4f;
    --line: rgba(20, 20, 20, 0.7);
    --shadow: rgba(20, 20, 20, 0.16);
    --coffee: #ffdd00;
    --font-primary: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fs-hero: clamp(2.4rem, 5vw, 3.6rem);
    --fs-h2: clamp(1.7rem, 3vw, 2.2rem);
    --fs-h3: 1.1rem;
    --fs-base: 1rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.75rem;
    --fs-xxs: 0.7rem;
    --lh-tight: 1.1;
    --lh-base: 1.7;
    --lh-relaxed: 1.8;
}

/* Self-hosted Inter variable font with swap display strategy */
@font-face {
    font-family: "Inter";
    src: url('/static/fonts/InterVariable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-display: swap;
    font-stretch: 75% 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    color: var(--text);
    background: #ffffff;
    overflow: auto;
    cursor: default;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: none;
    pointer-events: none;
    z-index: 0;
}

a {
    color: inherit;
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* Loading Overlay */
#loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0b0e10;
    will-change: transform;
}

#loader-wrapper.slide-out {
    animation: slideUp 3s ease-out forwards;
}

#loader-wrapper[aria-hidden="true"] {
    display: none;
    pointer-events: none;
}

.loader-text {
    color: #fefefe;
    font-size: 1.7rem;
    font-weight: var(--fw-bold);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInOut 0.9s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        transform: translateY(-100%);
        visibility: hidden;
    }
}

@keyframes revealContent {
    to {
        opacity: 1;
    }
}

/* --- UPDATED HEADER (Background Added) --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    opacity: 0;
    animation: revealContent 0.8s ease forwards;
    animation-delay: 1.2s;
    
    /* FIX: Glassmorphism background prevents text overlap while scrolling */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20, 20, 20, 0.03);
}

.logo {
    font-weight: var(--fw-semibold);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.logo-email {
    font-size: var(--fs-xxs);
    font-weight: var(--fw-regular);
    letter-spacing: 0.6px;
    color: var(--muted);
    line-height: 1;
}

nav {
    display: flex;
    gap: 32px;
    font-family: var(--font-primary);
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: var(--fs-xxs);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
    width: 100%;
}

/* Main Center Content */
.content {
    position: relative;
    z-index: 20;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: revealContent 0.8s ease forwards;
    animation-delay: 1.4s;
    text-align: center;
    padding: 0 20px;
}

.content h1 {
    margin: 0 0 14px 0;
    font-size: var(--fs-hero);
    font-weight: var(--fw-bold);
    letter-spacing: -0.5px;
    color: var(--text);
    line-height: var(--lh-tight);
}

.content p {
    margin: 0 0 32px 0;
    font-size: var(--fs-base);
    color: var(--muted);
    font-weight: var(--fw-regular);
    letter-spacing: 0.4px;
    line-height: var(--lh-base);
    max-width: 600px;
}

/* Social Icons Row */
.social-icons {
    display: flex;
    gap: 22px;
    margin-bottom: 34px;
}

.social-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--text);
    transition: transform 0.3s ease, fill 0.3s ease;
    cursor: pointer;
}

.social-icon:hover svg,
.social-icon:focus-visible svg {
    transform: translateY(-3px);
    fill: var(--accent);
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    text-decoration: none;
    padding: 13px 24px;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
}

.hire-btn {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
}

.hire-btn:hover,
.hire-btn:focus-visible {
    background: var(--text);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -12px var(--shadow);
}

.coffee-btn {
    background-color: var(--coffee);
    color: #000000;
    border: 1px solid var(--coffee);
    font-family: var(--font-primary);
    font-weight: var(--fw-semibold);
}

.coffee-btn:hover,
.coffee-btn:focus-visible {
    background-color: #ffea33;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -12px rgba(255, 221, 0, 0.45);
}

.coffee-btn svg {
    width: 18px;
    height: 18px;
    fill: #000;
}

.appointment-btn {
    position: relative;
}

.appointment-btn::before,
.appointment-btn::after {
    position: absolute;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.appointment-btn::after {
    content: attr(data-tooltip);
    bottom: calc(100% + 14px);
    background: #0b0e10;
    color: #fefefe;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: var(--fs-xxs);
    font-weight: var(--fw-medium);
    text-transform: none;
    letter-spacing: 0.2px;
    line-height: 1.4;
    box-shadow: 0 12px 18px -12px rgba(20, 20, 20, 0.4);
    white-space: normal;
    max-width: 220px;
    text-align: center;
    z-index: 20;
}

.appointment-btn::before {
    content: "";
    bottom: calc(100% + 6px);
    border: 6px solid transparent;
    border-top-color: #0b0e10;
    z-index: 19;
}

.appointment-btn:hover::before,
.appointment-btn:hover::after,
.appointment-btn:focus-visible::before,
.appointment-btn:focus-visible::after,
.appointment-btn:active::before,
.appointment-btn:active::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: revealContent 0.8s ease forwards;
    animation-delay: 1.6s;
}

.scroll-icon {
    width: 20px;
    height: 30px;
    border: 1px solid rgba(20, 20, 20, 0.35);
    border-radius: 14px;
    position: relative;
}

.scroll-icon::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.5);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.6s ease infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translate(-50%, 8px);
    }
    100% {
        opacity: 0;
    }
}

/* Footer */
.site-footer {
    background: #0b0e10;
    color: #fefefe;
    width: 100%;
}

.footer-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 24px 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.footer-title {
    font-size: var(--fs-xs);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: var(--fw-semibold);
}

.footer-subtitle {
    font-size: var(--fs-xxs);
    color: rgba(254, 254, 254, 0.6);
    letter-spacing: 0.6px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    text-decoration: none;
    color: rgba(254, 254, 254, 0.85);
    font-size: var(--fs-xxs);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.footer-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
    width: 100%;
}

.footer-meta {
    border-top: 1px solid rgba(254, 254, 254, 0.1);
    padding: 10px 48px 18px;
    font-size: var(--fs-xxs);
    color: rgba(254, 254, 254, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
}

/* Notification Form */
.notify {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: min(360px, 100%);
}

.notify-label {
    font-size: var(--fs-xxs);
    font-weight: var(--fw-medium);
    color: rgba(254, 254, 254, 0.6);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.notify-form {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

.notify-input {
    flex: 1 1 260px;
    min-width: 200px;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(254, 254, 254, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-family: var(--font-primary);
    font-size: var(--fs-xs);
    letter-spacing: 0.4px;
    color: #fefefe;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.notify-input::placeholder {
    color: rgba(254, 254, 254, 0.45);
}

.notify-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(27, 122, 107, 0.18);
}

.notify-btn {
    background: transparent;
    color: rgba(254, 254, 254, 0.85);
    border: none;
    padding: 0;
    font-size: var(--fs-xxs);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    position: relative;
    font-family: var(--font-primary);
}

.notify-btn::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.notify-btn:hover::after,
.notify-btn:focus-visible::after {
    width: 100%;
}

.notify-status {
    min-height: 14px;
    font-size: var(--fs-xxs);
    color: rgba(254, 254, 254, 0.65);
    letter-spacing: 0.6px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.notify-status.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.notify-status.is-error {
    color: #ffb4a2;
}

/* Cursor Lines */
.cursor-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 300vmax;
    height: 1px;
    background-color: var(--line);
    pointer-events: none;
    z-index: -10;
    opacity: 0;
    animation: revealContent 0.5s ease forwards;
    animation-delay: 1.1s;
}

#line-one {
    transform-origin: center;
}

#line-two {
    transform-origin: center;
}

.line-text {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-primary);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--text);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 130;
    pointer-events: none;
}

/* --- OVERLAY POLICY SYSTEM --- */
.floating-policy-btn {
    position: fixed;
    right: 48px;
    bottom: 40px;
    z-index: 150;
    padding: 0; 
    font-size: var(--fs-xxs);
    font-weight: var(--fw-medium);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: transparent;
    color: var(--text);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    opacity: 0;
    animation: revealContent 0.8s ease forwards;
    animation-delay: 1.5s;
}

.floating-policy-btn::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.floating-policy-btn:hover::after,
.floating-policy-btn:focus-visible::after {
    width: 100%;
}

.policy-modal {
    position: fixed;
    inset: 0;
    background: var(--bg-soft);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.policy-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    max-width: 1900px;
    margin: 0 auto;
    position: relative;
}

.modal-nav {
    width: 280px;
    padding: 60px 40px;
    border-right: 1px solid rgba(20, 20, 20, 0.1);
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top left, #fff, transparent);
}

.modal-topbar {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.modal-header {
    font-family: var(--font-primary);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--muted);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.modal-tabs {
    width: 100%;
}

.modal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-nav li {
    margin-bottom: 24px;
}

.nav-link {
    font-family: var(--font-primary);
    text-decoration: none;
    font-size: var(--fs-sm);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
    font-weight: var(--fw-medium);
    display: block;
    cursor: pointer;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
    padding-left: 10px;
    font-weight: var(--fw-semibold);
}

.nav-link.active::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.close-btn {
    position: absolute;
    top: 40px;
    right: 48px;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 6px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: var(--fw-semibold);
    line-height: 1;
    color: var(--text);
    cursor: pointer;
}

.modal-content {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 60px 80px;
}

.scroll-content {
    max-width: 700px;
}

.policy-group {
    margin-bottom: 100px;
    padding-top: 20px;
    scroll-margin-top: 80px;
}

.policy-group h2 {
    font-size: var(--fs-h2);
    margin-bottom: 10px;
    color: var(--text);
    font-weight: var(--fw-semibold);
}

.last-updated {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--fs-xxs);
    color: var(--muted);
    font-weight: var(--fw-light);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-block h3 {
    font-size: var(--fs-h3);
    margin: 30px 0 12px;
    color: var(--text);
    font-weight: var(--fw-semibold);
}

.text-block p, .text-block li {
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    color: var(--muted);
    font-weight: var(--fw-regular);
    margin-bottom: 16px;
}

.text-block ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-footer {
    border-top: 1px solid rgba(20, 20, 20, 0.1);
    padding-top: 40px;
    margin-top: 80px;
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-details li {
    font-size: var(--fs-base);
    color: var(--muted);
    font-weight: var(--fw-regular);
    margin-bottom: 8px;
}

.contact-details strong {
    color: var(--text);
    margin-right: 8px;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    header {
        padding: 24px 24px;
    }

    nav {
        gap: 18px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px 24px;
    }

    .footer-brand,
    .notify,
    .footer-links {
        align-items: center;
    }

    .notify {
        text-align: center;
        width: 100%;
    }

    .notify-form {
        justify-content: center;
    }
    
    .modal-container {
        flex-direction: column;
    }
    
    .modal-nav {
        width: 100%;
        height: auto;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        border-right: none;
        border-bottom: none;
        background: var(--bg-soft);
    }
    
    .modal-topbar {
        position: sticky;
        top: 0;
        z-index: 1002;
        padding: 16px 24px;
        padding-right: 110px;
        border-bottom: 1px solid rgba(20, 20, 20, 0.1);
        background: var(--bg-soft);
        margin-bottom: 0;
    }

    .modal-header {
        display: block;
        margin: 0;
        white-space: nowrap;
    }

    .modal-tabs {
        position: sticky;
        top: 54px;
        z-index: 1001;
        padding: 12px 12px 12px 24px;
        border-bottom: 1px solid rgba(20, 20, 20, 0.1);
        background: var(--bg-soft);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-nav ul {
        display: flex;
        gap: 24px;
        padding-left: 12px;
        width: max-content;
    }
    
    .modal-nav li {
        margin: 0;
        white-space: nowrap;
    }

    .modal-nav li:first-child {
        margin-left: 8px;
    }

    .nav-link:hover, .nav-link.active {
        padding-left: 0;
    }
    .nav-link.active::before {
        content: none;
    }
    .nav-link.active {
        border-bottom: 2px solid var(--accent);
    }
    
    .modal-content {
        padding: 30px 24px 100px;
        padding-top: 20px;
    }

    .close-btn {
        position: fixed;
        top: 26px;
        right: 24px;
        z-index: 10002;
        background: var(--bg-soft);
        padding: 6px;
    }
}

@media (max-width: 640px) {
    /* Mobile-specific animation timing: reduce delays for faster perceived responsiveness */
    header {
        flex-direction: column;
        gap: 14px;
        padding: 15px 24px;
        animation-delay: 0.3s !important;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* FIX: Add top padding so visual center is lower and doesn't overlap header */
    .content {
        justify-content: center; /* Keep vertically centered */
        padding-top: 140px; /* Push the top of the content down significantly */
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
        animation-delay: 0.4s !important;
    }

    .scroll-hint {
        animation-delay: 0.5s !important;
    }

    .cta-group {
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .floating-policy-btn {
        animation-delay: 0.45s !important;
        right: 50%;
        transform: translateX(50%);
        bottom: 110px;
        width: auto;
    }
    
    .floating-policy-btn:hover {
        transform: translateX(50%) translateY(0);
    }
    
    .nav-link {
        font-size: var(--fs-xxs);
    }
    
    .policy-group h2 {
        font-size: clamp(1.5rem, 4.2vw, 1.8rem);
    }

    .close-btn {
        top: 18px;
        right: 20px;
    }

    .notify-input {
        min-width: 100%;
    }

    .footer-meta {
        padding: 10px 24px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *:not(.no-animation-override):not(#loader-wrapper) {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Keep loader animation visible - it's a page transition, not interactive */
    #loader-wrapper.slide-out {
        animation-duration: 3s !important;
    }

    .loader-text {
        animation-delay: 0s !important;
    }

    header,
    .content,
    .scroll-hint,
    .floating-policy-btn,
    .cursor-line {
        animation-delay: 0s !important;
    }
}

/* Payment Box Styles */
.payment-box {
    background: var(--bg-soft);
    padding: 40px;
    width: min(400px, 90%);
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
    border: 1px solid rgba(20,20,20,0.05);
}

.payment-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: var(--fs-h2);
    color: var(--text);
}

.payment-box p {
    color: var(--muted);
    font-size: var(--fs-sm);
    margin-bottom: 24px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--muted);
    transition: border-color 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--accent);
}

.currency-symbol {
    font-size: 1.5rem;
    color: var(--text);
    padding-left: 10px;
    font-weight: 600;
}

#custom-amount {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    padding: 10px;
    outline: none;
    font-family: var(--font-primary);
}

/* Currency Row Styling */
.currency-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(27, 122, 107, 0.05);
    border-radius: 8px;
    flex-wrap: wrap;
}

#currency-select {
    padding: 8px 12px;
    border: 1px solid var(--muted);
    border-radius: 6px;
    background: var(--bg-soft);
    color: var(--text);
    font-size: var(--fs-sm);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

#currency-select:hover {
    border-color: var(--accent);
}

#currency-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(27, 122, 107, 0.1);
}

.currency-row > div {
    flex: 1;
    min-width: 150px;
}

#custom-amount::-webkit-outer-spin-button,
#custom-amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#custom-amount {
  -moz-appearance: textfield;
}