:root {
    --primary: #0c6b4f;
    --primary-dark: #074c39;
    --primary-light: #e8f5ef;
    --secondary: #f4a623;
    --secondary-dark: #d88708;
    --accent: #d94f4f;
    --dark: #10231d;
    --dark-soft: #243a33;
    --text: #4b5d57;
    --muted: #7a8b85;
    --surface: #ffffff;
    --surface-soft: #f6f9f7;
    --border: #e4ebe7;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --shadow-sm: 0 10px 30px rgba(16, 35, 29, 0.07);
    --shadow-md: 0 18px 50px rgba(16, 35, 29, 0.12);
    --shadow-lg: 0 30px 80px rgba(16, 35, 29, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: 0.3s ease;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--surface);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


body,
button,
input,
select,
textarea {
    font-family: "Inter", sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--dark);
    font-weight: 800;
    line-height: 1.15;
}


p {
    margin-top: 0;
}


a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), background-color var(--transition), transform var(--transition), border-color var(--transition);
}


button {
    transition: color var(--transition), background-color var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}


img {
    max-width: 100%;
}


::selection {
    color: #ffffff;
    background: var(--primary);
}


.section-space {
    padding: 105px 0;
}


.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}


.section-heading h2 {
    max-width: 700px;
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
}


.section-heading p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.02rem;
}


.section-heading > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    color: var(--dark);
    border-bottom: 2px solid var(--secondary);
    font-weight: 700;
}


.section-heading > a:hover {
    gap: 15px;
    color: var(--primary);
}


/* Announcement bar */

.announcement-bar {
    position: relative;
    z-index: 1031;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.88);
    background: var(--dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.015em;
}


.announcement-bar i {
    color: var(--secondary);
}


/* Main navigation */

.site-header {
    position: relative;
    z-index: 1030;
}


.main-navbar {
    min-height: 88px;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}


.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}


.brand-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), #15956f);
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(12, 107, 79, 0.24);
    font-size: 1.4rem;
    transform: rotate(-4deg);
}


.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}


.brand-text strong {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
}


.brand-text small {
    margin-top: 6px;
    color: var(--primary);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.23em;
}


.navbar-search {
    width: min(100%, 520px);
}


.navbar-search .input-group {
    padding: 5px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 17px;
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}


.navbar-search .input-group:focus-within {
    background: #ffffff;
    border-color: rgba(12, 107, 79, 0.45);
    box-shadow: 0 0 0 4px rgba(12, 107, 79, 0.08);
}


.navbar-search .input-group-text,
.navbar-search .form-control {
    background: transparent;
    border: 0;
    box-shadow: none;
}


.navbar-search .input-group-text {
    padding-left: 15px;
    color: var(--muted);
}


.navbar-search .form-control {
    min-width: 0;
    padding-left: 4px;
    color: var(--dark);
    font-size: 0.88rem;
}


.navbar-search .form-control::placeholder {
    color: #94a19c;
}


.navbar-search .search-button {
    padding: 10px 20px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 12px !important;
    font-size: 0.82rem;
    font-weight: 700;
}


.navbar-search .search-button:hover {
    color: #ffffff;
    background: var(--primary-dark);
    transform: translateY(-1px);
}


.nav-icon-link {
    display: flex;
    min-width: 60px;
    flex-direction: column;
    align-items: center;
    color: var(--dark);
}


.nav-icon-link:hover {
    color: var(--primary);
}


.nav-icon-link small {
    margin-top: 1px;
    font-size: 0.67rem;
    font-weight: 600;
}


.nav-icon {
    position: relative;
    font-size: 1.25rem;
    line-height: 1;
}


.nav-count {
    position: absolute;
    top: -9px;
    right: -13px;
    display: inline-flex;
    min-width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    color: #ffffff;
    background: var(--accent);
    border: 2px solid #ffffff;
    border-radius: 999px;
    font-size: 0.55rem;
    font-weight: 800;
}


.account-button {
    padding: 11px 17px;
    color: #ffffff;
    background: var(--dark);
    border-radius: 13px;
    font-size: 0.82rem;
    font-weight: 700;
}


.account-button:hover {
    color: #ffffff;
    background: var(--primary);
    transform: translateY(-2px);
}


.account-link {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark);
}


.account-link:hover {
    color: var(--primary);
}


.account-link::after {
    margin-left: 4px;
}


.account-link > span:not(.account-avatar) {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}


.account-link small {
    color: var(--muted);
    font-size: 0.62rem;
}


.account-link strong {
    max-width: 95px;
    overflow: hidden;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.account-avatar {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    font-weight: 800;
}


.account-menu {
    min-width: 240px;
    margin-top: 18px !important;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}


.account-menu .dropdown-item {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--dark-soft);
    font-size: 0.84rem;
}


.account-menu .dropdown-item:hover {
    color: var(--primary);
    background: var(--primary-light);
}


/* Category navigation */

.category-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 25px rgba(16, 35, 29, 0.04);
}


.category-menu {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}


.category-menu a {
    display: inline-flex;
    align-items: center;
    color: var(--dark-soft);
    font-size: 0.78rem;
    font-weight: 700;
}


.category-menu a:hover {
    color: var(--primary);
}


.category-menu .all-categories {
    align-self: stretch;
    padding: 0 21px;
    color: #ffffff;
    background: var(--primary);
}


.category-menu .all-categories:hover {
    color: #ffffff;
    background: var(--primary-dark);
}


.category-menu .offers-link {
    color: var(--accent);
}


/* Footer */

.site-footer {
    position: relative;
    margin-top: 80px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--dark);
}


.newsletter-section {
    position: relative;
    z-index: 2;
    transform: translateY(-50%);
}


.newsletter-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 35px 42px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 10%, rgba(244, 166, 35, 0.35), transparent 28%),
        linear-gradient(135deg, var(--primary), #084936);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}


.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}


.newsletter-icon {
    display: inline-flex;
    width: 66px;
    height: 66px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: var(--secondary);
    border-radius: 20px;
    font-size: 1.8rem;
    transform: rotate(-5deg);
}


.newsletter-card .section-eyebrow {
    margin-bottom: 5px;
    color: #d5f7e9;
}


.newsletter-card h2 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: clamp(1.35rem, 2vw, 2rem);
}


.newsletter-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}


.newsletter-form .input-group {
    padding: 6px;
    background: #ffffff;
    border-radius: 16px;
}


.newsletter-form .input-group-text,
.newsletter-form .form-control {
    background: transparent;
    border: 0;
    box-shadow: none;
}


.newsletter-form .input-group-text {
    padding-left: 15px;
    color: var(--primary);
}


.newsletter-form .form-control {
    min-width: 0;
    font-size: 0.85rem;
}


.newsletter-form .btn {
    padding: 11px 17px;
    color: var(--dark);
    background: var(--secondary);
    border-radius: 11px !important;
    font-size: 0.78rem;
    font-weight: 800;
}


.newsletter-form .btn:hover {
    background: #ffc45f;
}


.newsletter-form small {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.65rem;
}


.footer-main {
    padding: 20px 0 70px;
}


.footer-brand .brand-text strong {
    color: #ffffff;
}


.footer-brand .brand-text small {
    color: #7fe0bd;
}


.footer-description {
    max-width: 420px;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}


.footer-contact-list {
    display: grid;
    gap: 14px;
}


.footer-contact-list > a,
.footer-contact-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
}


.footer-contact-list > a:hover {
    color: #ffffff;
}


.footer-contact-list > a > i,
.footer-contact-list > div > i {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 11px;
}


.footer-contact-list span {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
}


.footer-contact-list small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.62rem;
}


.footer-main h3 {
    margin: 8px 0 24px;
    color: #ffffff;
    font-size: 0.95rem;
}


.footer-links {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}


.footer-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
}


.footer-links a:hover {
    padding-left: 5px;
    color: var(--secondary);
}


.footer-bottom {
    padding: 22px 0;
    background: rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}


.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
}


.payment-methods,
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}


.payment-methods span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
}


.payment-methods i {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
}


.social-links a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}


.social-links a:hover {
    color: var(--dark);
    background: var(--secondary);
    transform: translateY(-3px);
}


/* Responsive design */

@media (max-width: 1199.98px) {
    .main-navbar {
        min-height: 76px;
    }

    .navbar-collapse {
        padding: 15px 0 5px;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-icon-link {
        min-width: 0;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        padding: 10px 5px;
    }

    .nav-icon-link small {
        font-size: 0.8rem;
    }

    .account-button {
        margin-top: 5px;
    }
}


@media (max-width: 991.98px) {
    .section-space {
        padding: 80px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding-top: 0;
    }

    .footer-bottom-content {
        flex-wrap: wrap;
    }
}


@media (max-width: 767.98px) {
    .announcement-bar {
        font-size: 0.69rem;
    }

    .section-space {
        padding: 65px 0;
    }

    .newsletter-section {
        transform: translateY(-28%);
    }

    .newsletter-card {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .newsletter-content {
        align-items: flex-start;
    }

    .newsletter-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        font-size: 1.35rem;
    }

    .newsletter-form .input-group {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .newsletter-form .btn {
        grid-column: 1 / -1;
        margin-top: 5px;
    }

    .footer-bottom-content {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 575.98px) {
    .brand-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1.15rem;
    }

    .brand-text strong {
        font-size: 1.25rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .newsletter-content {
        flex-direction: column;
    }

    .payment-methods {
        flex-wrap: wrap;
    }
}


/* Moving international flags */

.hero-flag-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 2%, #000000 18%, #000000 82%, transparent 98%);
}


.flag-marquee {
    position: absolute;
    left: -5%;
    width: 110%;
    overflow: hidden;
    opacity: 0.13;
    transform: rotate(-4deg);
}


.flag-marquee-one {
    top: 16%;
}


.flag-marquee-two {
    bottom: 13%;
    transform: rotate(4deg);
}


.flag-track {
    display: flex;
    width: max-content;
    gap: 26px;
    animation: moveFlagsLeft 42s linear infinite;
}


.flag-marquee-two .flag-track {
    animation: moveFlagsRight 48s linear infinite;
}


.flag-item {
    display: flex;
    min-width: 175px;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}


.flag-item img {
    width: 52px;
    height: 34px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.25);
}


.flag-item span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


@keyframes moveFlagsLeft {
    from {
        transform: translateX(0);
    }

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


@keyframes moveFlagsRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


@media (max-width: 767.98px) {
    .flag-item {
        min-width: 135px;
        gap: 8px;
        padding: 8px 12px;
    }

    .flag-item img {
        width: 40px;
        height: 27px;
    }

    .flag-item span {
        font-size: 0.58rem;
    }
}



/* Customer dashboard */

.customer-dashboard {
    min-height: 850px;
    padding: 80px 0 170px;
    background:
        radial-gradient(circle at 90% 8%, rgba(244, 166, 35, 0.11), transparent 24%),
        linear-gradient(180deg, #f4f8f6, #ffffff);
}


.dashboard-welcome {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}


.dashboard-welcome h1 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -0.04em;
}


.dashboard-welcome h1 span {
    color: var(--primary);
}


.dashboard-welcome p {
    margin-bottom: 0;
    color: var(--muted);
}


.dashboard-shop-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--dark);
    border-radius: 14px;
    font-size: 0.76rem;
    font-weight: 800;
}


.dashboard-shop-button:hover {
    color: #ffffff;
    background: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}


.dashboard-layout {
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}


/* Dashboard sidebar */

.dashboard-sidebar {
    position: sticky;
    top: 25px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}


.dashboard-profile-summary {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 23px;
    background:
        radial-gradient(circle at 90% 15%, rgba(244, 166, 35, 0.22), transparent 30%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}


.dashboard-avatar {
    display: flex;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--dark);
    background: var(--secondary);
    border: 3px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 900;
}


.dashboard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.dashboard-profile-summary > div:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}


.dashboard-profile-summary strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.dashboard-profile-summary small {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.6rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.dashboard-navigation {
    display: grid;
    gap: 5px;
    padding: 16px;
}


.dashboard-navigation > a {
    display: flex;
    min-height: 45px;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    color: var(--text);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
}


.dashboard-navigation > a:hover,
.dashboard-navigation > a.active {
    color: var(--primary);
    background: var(--primary-light);
}


.dashboard-navigation > a > i {
    width: 20px;
    font-size: 0.95rem;
    text-align: center;
}


.dashboard-navigation > a > span,
.dashboard-navigation > a > small {
    display: inline-flex;
    min-width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0 6px;
    color: var(--muted);
    background: #eef2f0;
    border-radius: 999px;
    font-size: 0.56rem;
}


.dashboard-navigation .remittance-navigation-link {
    margin-top: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #123f87, #376fce);
}


.dashboard-navigation .remittance-navigation-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #0d3270, #2b5eba);
    transform: translateY(-2px);
}


.dashboard-navigation .remittance-navigation-link small {
    color: #123f87;
    background: #ffffff;
}


.dashboard-sidebar form {
    padding: 0 16px 16px;
}


.dashboard-logout-button {
    display: flex;
    width: 100%;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--danger);
    background: #fff1f2;
    border: 0;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
}


.dashboard-logout-button:hover {
    color: #ffffff;
    background: var(--danger);
}


/* Dashboard statistics */

.dashboard-main {
    min-width: 0;
}


.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}


.dashboard-stat-card {
    position: relative;
    display: flex;
    min-height: 150px;
    align-items: center;
    gap: 17px;
    padding: 23px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(16, 35, 29, 0.045);
    transition: transform var(--transition), box-shadow var(--transition);
}


.dashboard-stat-card::after {
    position: absolute;
    right: -35px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    background: var(--stat-color);
    border-radius: 50%;
    content: "";
    opacity: 0.08;
}


.dashboard-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}


.stat-orders {
    --stat-color: #376fce;
}


.stat-wishlist {
    --stat-color: #d94f4f;
}


.stat-addresses {
    --stat-color: #0c6b4f;
}


.dashboard-stat-icon {
    display: inline-flex;
    width: 51px;
    height: 51px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--stat-color);
    border-radius: 15px;
    box-shadow: 0 12px 25px color-mix(in srgb, var(--stat-color) 22%, transparent);
    font-size: 1.25rem;
}


.dashboard-stat-card > div {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
}


.dashboard-stat-card small {
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 700;
}


.dashboard-stat-card strong {
    margin: 2px 0;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    line-height: 1;
}


.dashboard-stat-card a {
    color: var(--stat-color);
    font-size: 0.62rem;
    font-weight: 800;
}


/* Remittance banner */

.remittance-dashboard-banner {
    position: relative;
    display: grid;
    min-height: 280px;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
    margin-bottom: 22px;
    padding: 40px 48px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 20%, rgba(92, 166, 255, 0.32), transparent 30%),
        linear-gradient(130deg, #071d43, #123f87 55%, #376fce);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(18, 63, 135, 0.2);
}


.remittance-dashboard-banner::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 23px 23px;
    content: "";
    opacity: 0.14;
}


.remittance-banner-glow {
    position: absolute;
    bottom: -150px;
    left: 25%;
    width: 360px;
    height: 360px;
    background: rgba(36, 203, 154, 0.18);
    border-radius: 50%;
    filter: blur(12px);
}


.remittance-banner-content {
    position: relative;
    z-index: 3;
}


.remittance-demo-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 11px;
    color: #cbe2ff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.remittance-demo-label i {
    color: #ffd467;
}


.remittance-banner-content h2 {
    max-width: 560px;
    margin-bottom: 13px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
}


.remittance-banner-content h2 span {
    display: block;
    color: #83ddbe;
}


.remittance-banner-content p {
    max-width: 570px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
}


.remittance-banner-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    color: #071d43;
    background: #ffffff;
    border-radius: 11px;
    font-size: 0.68rem;
    font-weight: 900;
}


.remittance-banner-content a:hover {
    background: #ffd467;
    transform: translateY(-2px);
}


.remittance-world {
    position: relative;
    z-index: 2;
    display: flex;
    width: 205px;
    height: 205px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 27px rgba(255, 255, 255, 0.035),
        0 0 0 55px rgba(255, 255, 255, 0.025);
    font-size: 6.2rem;
    animation: remittanceWorldFloat 5s ease-in-out infinite;
}


.world-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffd467;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 212, 103, 0.14);
    animation: worldPointPulse 1.8s ease-in-out infinite;
}


.world-point-one {
    top: 35px;
    right: 30px;
}


.world-point-two {
    bottom: 45px;
    left: 24px;
    animation-delay: 0.5s;
}


.world-point-three {
    top: 88px;
    left: 10px;
    animation-delay: 1s;
}


/* Dashboard panels */

.dashboard-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.8fr);
    gap: 22px;
}


.dashboard-panel {
    padding: 27px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 21px;
    box-shadow: 0 10px 30px rgba(16, 35, 29, 0.04);
}


.dashboard-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}


.dashboard-panel-header .section-eyebrow {
    margin-bottom: 4px;
    font-size: 0.58rem;
}


.dashboard-panel-header h2 {
    margin-bottom: 0;
    font-size: 1.05rem;
}


.dashboard-panel-header > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 9px;
    font-size: 0.62rem;
    font-weight: 800;
}


.dashboard-address-list {
    display: grid;
    gap: 11px;
}


.dashboard-address {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px;
    background: var(--surface-soft);
    border: 1px solid transparent;
    border-radius: 13px;
}


.dashboard-address:hover {
    background: #ffffff;
    border-color: var(--border);
}


.address-icon {
    display: inline-flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 11px;
}


.address-title {
    display: flex;
    align-items: center;
    gap: 8px;
}


.address-title strong {
    color: var(--dark);
    font-size: 0.7rem;
}


.address-title span {
    padding: 3px 7px;
    color: var(--primary);
    background: #dff5ec;
    border-radius: 999px;
    font-size: 0.5rem;
    font-weight: 800;
}


.dashboard-address p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.61rem;
}


.dashboard-address > a {
    display: inline-flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: #ffffff;
    border-radius: 9px;
}


.dashboard-address > a:hover {
    color: #ffffff;
    background: var(--primary);
}


.dashboard-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    color: var(--primary);
    font-size: 0.63rem;
    font-weight: 800;
}


.dashboard-empty-state {
    padding: 30px 20px;
    text-align: center;
    background: var(--surface-soft);
    border-radius: 15px;
}


.dashboard-empty-state > i {
    color: var(--primary);
    font-size: 2rem;
}


.dashboard-empty-state h3 {
    margin: 10px 0 5px;
    font-size: 0.83rem;
}


.dashboard-empty-state p {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.64rem;
}


.dashboard-empty-state a {
    display: inline-flex;
    padding: 9px 13px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 9px;
    font-size: 0.61rem;
    font-weight: 800;
}


/* Account status */

.account-status-list {
    display: grid;
    gap: 17px;
}


.account-status-list > div {
    display: flex;
    align-items: center;
    gap: 11px;
}


.status-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}


.status-complete {
    color: var(--success);
    background: #e4f7ee;
}


.status-pending {
    color: #b77905;
    background: #fff4dc;
}


.account-status-list > div > div {
    display: flex;
    flex-direction: column;
}


.account-status-list strong {
    color: var(--dark);
    font-size: 0.68rem;
}


.account-status-list small {
    color: var(--muted);
    font-size: 0.58rem;
}


.profile-completion-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 23px;
    padding: 11px;
    color: #ffffff;
    background: var(--dark);
    border-radius: 11px;
    font-size: 0.65rem;
    font-weight: 800;
}


.profile-completion-button:hover {
    color: #ffffff;
    background: var(--primary);
}


/* Dashboard animations */

@keyframes remittanceWorldFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}


@keyframes worldPointPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }
}


/* Dashboard responsive */

@media (max-width: 1199.98px) {
    .dashboard-layout {
        grid-template-columns: 225px minmax(0, 1fr);
    }

    .dashboard-stat-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stat-card {
        min-height: 120px;
    }
}


@media (max-width: 991.98px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: static;
    }

    .dashboard-navigation {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-sidebar form {
        max-width: 250px;
    }

    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 767.98px) {
    .customer-dashboard {
        padding: 60px 0 130px;
    }

    .dashboard-welcome {
        align-items: flex-start;
        flex-direction: column;
    }

    .remittance-dashboard-banner {
        grid-template-columns: 1fr;
        padding: 35px 28px;
    }

    .remittance-world {
        width: 150px;
        height: 150px;
        margin: 35px auto 10px;
        font-size: 4.5rem;
    }
}


@media (max-width: 575.98px) {
    .dashboard-navigation {
        grid-template-columns: 1fr;
    }

    .dashboard-stat-card {
        min-height: 110px;
        padding: 18px;
    }

    .dashboard-panel {
        padding: 21px;
    }

    .dashboard-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }
}



/* Ria money-transfer navigation */

.category-menu .ria-navigation-link {
    position: relative;
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 6px 13px 6px 8px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 212, 103, 0.32), transparent 28%),
        linear-gradient(135deg, #071d43, #215db2);
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(18, 63, 135, 0.22);
}


.category-menu .ria-navigation-link::before {
    position: absolute;
    top: -30px;
    left: -55px;
    width: 40px;
    height: 100px;
    background: rgba(255, 255, 255, 0.22);
    content: "";
    transform: rotate(25deg);
    animation: riaNavigationShine 4s ease-in-out infinite;
}


.category-menu .ria-navigation-link:hover {
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 212, 103, 0.4), transparent 30%),
        linear-gradient(135deg, #0b2b62, #3275d8);
    box-shadow: 0 12px 28px rgba(18, 63, 135, 0.3);
    transform: translateY(-2px);
}


.ria-navigation-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #071d43;
    background: #ffd467;
    border-radius: 9px;
    font-size: 0.9rem;
}


.ria-navigation-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    line-height: 1;
}


.ria-navigation-text strong {
    color: #ffffff;
    font-size: 0.64rem;
    white-space: nowrap;
}


.ria-navigation-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.ria-navigation-pulse {
    position: absolute;
    top: 5px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: #76f1be;
    border: 1px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(118, 241, 190, 0.14);
    animation: riaPulse 1.8s ease-in-out infinite;
}


@keyframes riaNavigationShine {
    0%,
    70% {
        left: -55px;
    }

    100% {
        left: 120%;
    }
}


@keyframes riaPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.65;
    }
}


@media (max-width: 1399.98px) {
    .category-menu {
        gap: 12px;
    }

    .category-menu a {
        font-size: 0.69rem;
    }

    .category-menu .ria-navigation-link {
        padding-right: 10px;
    }

    .ria-navigation-text strong {
        font-size: 0.58rem;
    }
}


/* =========================================================
   CHECKOUT READABILITY OVERRIDE
========================================================= */

.checkout-back-link {
    font-size: 14px;
    font-weight: 800;
}

.checkout-header-content > div:first-child > span {
    font-size: 13px;
    font-weight: 900;
}

.checkout-header-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.checkout-security-badge strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-security-badge small {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-card-heading small {
    font-size: 12px;
    font-weight: 900;
}

.checkout-card-heading h2 {
    font-size: 31px;
    font-weight: 800;
}

.checkout-card-heading p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.checkout-step-number {
    font-size: 17px;
}

.checkout-field label {
    margin-bottom: 10px;
    color: #183c31;
    font-size: 14px;
    font-weight: 900;
}

.checkout-input {
    min-height: 54px;
    padding-right: 16px;
    padding-left: 16px;
    color: #183c31;
    font-size: 14px;
    font-weight: 600;
}

.checkout-input::placeholder {
    color: #8a9a94;
    font-size: 13px;
    font-weight: 500;
}

textarea.checkout-input {
    min-height: 125px;
    padding-top: 15px;
}

.checkout-field-error {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
}

.checkout-form-errors {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.checkout-choice-content strong {
    font-size: 15px;
    font-weight: 900;
}

.checkout-choice-content small {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.checkout-choice-icon {
    font-size: 22px;
}

.checkout-choice-check {
    font-size: 11px;
}

.checkout-subheading span {
    font-size: 11px;
    font-weight: 900;
}

.checkout-subheading h3 {
    font-size: 26px;
    font-weight: 800;
}

.checkout-checkbox-card strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-checkbox-card small {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-payment-notice {
    padding: 16px;
}

.checkout-payment-notice i {
    font-size: 18px;
}

.checkout-payment-notice p {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.65;
}

/* ORDER SUMMARY */

.checkout-summary-heading span {
    font-size: 12px;
    font-weight: 900;
}

.checkout-summary-heading h2 {
    font-size: 34px;
    font-weight: 800;
}

.checkout-summary-product strong {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

.checkout-summary-product small {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 600;
}

.checkout-summary-product > span {
    font-size: 13px;
    font-weight: 900;
}

.checkout-product-image b {
    width: 23px;
    height: 23px;
    font-size: 10px;
}

.checkout-summary-lines {
    padding: 24px 26px;
}

.checkout-summary-lines > div + div {
    margin-top: 18px;
}

.checkout-summary-lines span {
    font-size: 14px;
    font-weight: 700;
}

.checkout-summary-lines strong {
    font-size: 14px;
    font-weight: 900;
}

.checkout-summary-total {
    margin-right: 26px;
    margin-left: 26px;
    padding: 24px 0;
}

.checkout-summary-total span {
    font-size: 17px;
    font-weight: 900;
}

.checkout-summary-total small {
    max-width: 190px;
    margin-top: 7px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
}

.checkout-summary-total > strong {
    font-size: 30px;
    font-weight: 900;
}

.checkout-submit-button {
    width: calc(100% - 52px);
    min-height: 58px;
    margin-right: 26px;
    margin-left: 26px;
    font-size: 14px;
    font-weight: 900;
}

.checkout-summary-security {
    margin: 18px 26px 26px;
    padding: 15px;
}

.checkout-summary-security i {
    font-size: 16px;
}

.checkout-summary-security p {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.65;
}

/* RADIO AND CHECKBOX SIZE */

.checkout-choice-card {
    min-height: 88px;
    padding: 18px;
}

.checkout-choice-card > input,
.checkout-checkbox-card > input {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .checkout-card-heading h2 {
        font-size: 27px;
    }

    .checkout-header-content p {
        font-size: 14px;
    }

    .checkout-choice-content strong {
        font-size: 14px;
    }

    .checkout-input {
        font-size: 16px;
    }
}





/* =========================================================
   COUNTRY PRODUCT NAVIGATION
   ========================================================= */

.category-navbar,
.category-navbar .container,
.category-menu {
    overflow: visible;
}

.country-navigation-item {
    position: relative;
}

.country-navigation-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
}

.country-navigation-trigger .bi-chevron-down {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.country-navigation-item:hover .country-navigation-trigger .bi-chevron-down,
.country-navigation-item:focus-within .country-navigation-trigger .bi-chevron-down {
    transform: rotate(180deg);
}

.country-navigation-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 1050;
    width: 390px;
    max-height: 70vh;
    padding: 14px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    border: 2px solid rgba(6, 75, 58, 0.13);
    border-radius: 20px;
    box-shadow: 0 24px 65px rgba(7, 49, 40, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.country-navigation-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 14px;
}

.country-navigation-item:hover .country-navigation-menu,
.country-navigation-item:focus-within .country-navigation-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.country-navigation-heading {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
    padding: 12px 14px 15px;
    background: linear-gradient(
        135deg,
        #053f32,
        #0b8060
    );
    border-radius: 14px;
    color: #ffffff;
}

.country-navigation-heading span {
    color: #ffd15c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.country-navigation-heading strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
}

.country-navigation-menu > a {
    display: flex !important;
    align-items: center;
    gap: 13px;
    width: 100%;
    min-height: 67px;
    margin: 3px 0;
    padding: 10px 12px !important;
    color: #102d26 !important;
    text-decoration: none;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 13px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.country-navigation-menu > a:hover,
.country-navigation-menu > a:focus {
    color: #064b3a !important;
    background: #eff9f5;
    border-color: #b9dfd2;
    transform: translateX(3px);
}

.country-navigation-flag {
    display: grid;
    place-items: center;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    background: #f4f8f6;
    border: 1px solid #dce9e4;
    border-radius: 13px;
    font-size: 27px;
    line-height: 1;
}

.country-navigation-menu > a > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.country-navigation-menu > a strong {
    color: #092e25;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.country-navigation-menu > a small {
    color: #60756e;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.country-navigation-menu .country-navigation-view-all {
    justify-content: space-between;
    min-height: 49px;
    margin-top: 9px;
    padding: 12px 15px !important;
    color: #ffffff !important;
    background: #087c5c;
    border-color: #087c5c;
    font-size: 14px;
    font-weight: 900;
}

.country-navigation-menu .country-navigation-view-all:hover,
.country-navigation-menu .country-navigation-view-all:focus {
    color: #082b23 !important;
    background: #ffbd24;
    border-color: #ffbd24;
}

.country-navigation-view-all > span:last-child {
    color: inherit;
    font-size: 18px;
}

.african-country-menu {
    width: 410px;
}

.country-navigation-menu::-webkit-scrollbar {
    width: 8px;
}

.country-navigation-menu::-webkit-scrollbar-track {
    background: #eef5f2;
    border-radius: 10px;
}

.country-navigation-menu::-webkit-scrollbar-thumb {
    background: #8bb9aa;
    border-radius: 10px;
}

.country-navigation-menu::-webkit-scrollbar-thumb:hover {
    background: #087c5c;
}




.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.newsletter-consent input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #ffffff;
}

.newsletter-consent a {
    color: #ffffff;
    font-weight: 700;
}









.global-message-container {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(440px, calc(100vw - 32px));
    pointer-events: none;
}

.global-message-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 15px 48px 15px 17px;
    border: 0;
    border-left: 5px solid currentColor;
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(21, 52, 43, 0.2);
    pointer-events: auto;
}

.global-message-icon {
    flex: 0 0 auto;
    font-size: 21px;
}

.global-message-text {
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.global-message-alert .btn-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

@media (max-width: 575.98px) {
    .global-message-container {
        top: 12px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}













.footer-newsletter .newsletter-wrapper {
    position: relative;
}

.footer-newsletter .newsletter-wrapper::before,
.footer-newsletter .newsletter-wrapper::after {
    pointer-events: none;
}

.footer-newsletter .newsletter-form {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.footer-newsletter .newsletter-form .input-group,
.footer-newsletter .newsletter-form input,
.footer-newsletter .newsletter-form button,
.footer-newsletter .newsletter-consent,
.footer-newsletter .newsletter-consent a {
    position: relative;
    z-index: 6;
    pointer-events: auto;
}

.footer-newsletter .newsletter-form button:not(:disabled) {
    cursor: pointer;
}
















.footer-newsletter,
.footer-newsletter .container,
.footer-newsletter .newsletter-wrapper,
.footer-newsletter .newsletter-form,
.footer-newsletter .input-group {
    position: relative !important;
    pointer-events: auto !important;
}

.footer-newsletter .newsletter-wrapper::before,
.footer-newsletter .newsletter-wrapper::after,
.footer-newsletter::before,
.footer-newsletter::after {
    pointer-events: none !important;
}

.footer-newsletter input,
.footer-newsletter label,
.footer-newsletter button,
.footer-newsletter a {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
}

.footer-newsletter button[type="submit"] {
    opacity: 1 !important;
    cursor: pointer !important;
}




.developer-credit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px 12px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    text-align: center;
}

.developer-credit span {
    color: rgba(255, 255, 255, 0.58);
}

.developer-credit strong {
    color: #ffffff;
    font-weight: 700;
}

.developer-credit a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f5c85b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.developer-credit a:hover {
    color: #ffffff;
}





/* Smaller rolling country labels — overlap fix */
.flag-track {
    gap: 18px;
}

.flag-item {
    min-width: 145px;
    gap: 8px;
    padding: 8px 11px;
    flex-shrink: 0;
    white-space: nowrap;
}

.flag-item img {
    width: 42px;
    height: 28px;
    flex-shrink: 0;
}

.flag-item span {
    font-size: 0.58rem;
    line-height: 1.15;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .flag-track {
        gap: 12px;
    }

    .flag-item {
        min-width: 115px;
        gap: 6px;
        padding: 6px 8px;
    }

    .flag-item img {
        width: 32px;
        height: 21px;
    }

    .flag-item span {
        font-size: 0.48rem;
        letter-spacing: 0.02em;
    }
}






.flag-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: moveFlagsLeft 42s linear infinite;
}

.flag-item {
    display: flex;
    min-width: 105px;
    align-items: center;
    flex-shrink: 0;
    gap: 5px;
    padding: 5px 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.flag-item img {
    width: 27px;
    height: 18px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.22);
}

.flag-item span,
.flag-item strong,
.flag-item small {
    font-size: 8px !important;
    line-height: 1 !important;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .flag-track {
        gap: 9px;
    }

    .flag-item {
        min-width: 88px;
        gap: 4px;
        padding: 4px 6px;
    }

    .flag-item img {
        width: 23px;
        height: 15px;
    }

    .flag-item span,
    .flag-item strong,
    .flag-item small {
        font-size: 6px !important;
    }
}











