.key-copy-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
}

.key-copy-field .key-copy-ta {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.78rem;
    line-height: 1.35;
    resize: vertical;
    word-break: break-all;
    min-height: 4.5rem;
}

.key-copy-field .key-copy-btn {
    align-self: flex-start;
}

.user-key-card--pending {
    border-color: #f59e0b !important;
    background: #fff8e8;
    box-shadow: inset 4px 0 0 #f59e0b, 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.user-key-card--changed {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.user-key-change-fold {
    border-color: #f59e0b;
    background: #fff3cd;
}

.user-key-change-fold .admin-fold-toggle {
    color: #92400e;
}

.user-key-change-fold .admin-fold-body {
    background: #fffdf6;
    border-top-color: #f6e05e;
}

.admin-key-cell {
    min-width: 200px;
    max-width: 280px;
}

.admin-key-cell .key-copy-field,
.table .key-copy-field {
    min-width: 0;
}

.admin-key-cell .key-copy-ta,
.table .key-copy-ta {
    min-height: 3.2rem;
}

.history-tool-col {
    min-width: 140px;
    max-width: 220px;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}

:root {
    --primary-color: #007bff;
    --hover-bg-gradient: linear-gradient(45deg, #4dabf7, #339af0);
    --active-bg-gradient: linear-gradient(45deg, #3b82f6, #339af0);
}

html {
    height: 100%;
}

body {
    font-family: "Be Vietnam Pro", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    min-height: 100%;
    min-height: 100dvh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.link-footer {
    color: #ffffff !important;
    text-decoration: none;
}

.link-footer:hover {
    color: var(--hover-bg-gradient) !important;
    text-decoration: none;
}

.sub-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.sub-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    transition: color 0.3s, border-bottom 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.sub-links img {
    width: 20px;
    margin-right: 5px;
}

.sub-links a:hover {
    color: var(--primary-color);
}

.sub-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.sub-links a:hover::after {
    width: 100%;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: #dddddd !important;
    border: 0;
    opacity: 0.25;
}

.text-bold {
    font-weight: 700
}

.contact-icons img {
    width: 50px;
    height: 50px;
}

.contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    justify-content: space-around;
    align-items: stretch;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    z-index: 1040;
    border-top: 1px solid #e5e7eb;
}

.contact-bar a {
    flex: 1 1 0;
    min-width: 0;
    text-decoration: none;
    color: #334155;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 48px;
    padding: 4px 2px;
}

.contact-bar a img,
.contact-bar a i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    line-height: 1;
    display: block;
    margin: 0;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-bar a span {
    display: block;
    line-height: 1.2;
    color: inherit;
    font-weight: 600;
    animation: none;
}

.contact-bar a.is-active,
.contact-bar a:hover {
    color: #2563eb;
}

.contact-icons {
    display: flex;
    position: fixed;
    bottom: 80px;
    right: 10px;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-icons a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s, transform 0.3s;
    animation: zoomBlink 0.75s infinite;
}

.contact-icons a.hide {
    opacity: 0;
    transform: translateY(-20px);
}

#toggle-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    margin-bottom: 10px;
}

#toggle-button img {
    width: 30px;
    height: 30px;
}

@keyframes shakeZoom {

    0%,
    100% {
        transform: scale(1) translateX(0);
    }

    25% {
        transform: scale(1.2) translateX(-2px);
    }

    50% {
        transform: scale(1.3) translateX(2px);
    }

    75% {
        transform: scale(1.2) translateX(-2px);
    }
}

@keyframes zoomBlink {

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

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

@media (min-width: 768px) {
    .contact-bar {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .contact-icons {
        display: none;
    }

    .contact-bar {
        display: flex;
    }

    body:not(.admin-area) {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }
}

.card,
.hover-effect {
    border-radius: 10px;
    overflow: hidden;
}

.rating i,
#star-rating i {
    cursor: pointer;
    font-size: 1.5rem;
}

.bi-star-fill {
    color: gold;
}

.bi-star {
    color: gray;
}


.card-body {
    background: white;
}

.submit-button {
    margin-top: 20px;
}

.btn-success,
.btn-warning,
.btn-danger,
.btn-primary {
    border: none;
    transition: background-color 0.3s ease;
}

.review-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.review-form h5 {
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form #star-rating i {
    color: #ffcc00;
    transition: color 0.3s ease;
}

.review-form #star-rating i:hover,
.review-form #star-rating i.active {
    color: #ffcc00;
}

.review-form textarea {
    resize: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.review-form .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.review-form .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.review-form .btn-primary:hover {
    background-color: #0056b3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.submit-button {
    margin-top: 25px;
}

.btn-success {
    background: linear-gradient(45deg, #28a745, #218838);
}

.btn-warning {
    background: linear-gradient(45deg, #ffc107, #e0a800);
}

.btn-danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
}

.btn-primary {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
}

.badge.bg-warning {
    background: linear-gradient(45deg, #fdd835, #fbc02d);
    color: #212529;
}

.badge.bg-danger {
    background: linear-gradient(45deg, #ef5350, #e53935);
}

.badge.bg-success {
    background: linear-gradient(45deg, #66bb6a, #43a047);
}

.loadMore {
    display: block;
    margin: 20px auto;
    margin-top: -10px;
    border-radius: 20px;
    background-color: #6c757d;
    color: #fff;
    text-align: center;
    transition: background-color 0.3s ease;
}

.loadMore:hover {
    background-color: #5a6268;
}

.post-item {
    flex: 0 0 30%;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
}



.tab-pane {
    margin-top: 15px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.review-images img {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 300px;
    object-fit: cover;
    margin-right: 10px;
}

#loadMore {
    position: relative;
    overflow: hidden;
}

#loadingSpinner {
    margin-left: 8px;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body {
    flex: 1 1 auto;
    border-radius: 20px;

}

.main {
    flex: 1;
}

.footer {
    background: linear-gradient(135deg, #333333, #555555);
    color: #fff;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.footer h6 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 5px;
}

.footer img {
    width: 80px;
    height: auto;
    max-width: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer p {
    margin-bottom: 5px;
    font-size: 0.85rem;
    text-align: center;
}

.footer .highlight {
    color: #ffd700;
    font-weight: bold;
}

.dmca-logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
    object-fit: contain;
}

.copyright {
    background: linear-gradient(135deg, #222222, #444444);
    color: #ccc;
    padding: 8px 0;
    text-align: center;
    font-size: 0.8rem;
}

.text-blue {
    padding: 20px 0 15px 0;
    font-weight: 500;
    color: #012970;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.btn-gradient {
    background: linear-gradient(135deg, #ff8a8a, #f0a6b6);
    border: none;
    color: white;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

#header > .d-flex:first-child {
    flex-shrink: 0;
}

#header .logo,
.header .logo {
    flex-shrink: 0;
    width: auto;
}

#header .logo img,
.header .logo img {
    display: block;
    width: auto !important;
    height: 40px;
    max-width: 52px;
    max-height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 10px;
}

.footer .site-logo {
    width: 80px !important;
    height: auto !important;
    max-width: 80px;
    max-height: none;
    object-fit: contain;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        align-items: center;
    }
}

/* —— Admin fold (ẩn/hiện khối form) —— */
.admin-fold {
    border: 1px solid #e9edf4;
    border-radius: 8px;
    background: #f8f9fb;
    margin-bottom: 1rem;
}

.admin-fold-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 0;
    background: transparent;
    color: #012970;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: left;
}

.admin-fold-toggle:hover {
    background: #f1f4f9;
}

.admin-fold-toggle .admin-fold-chevron {
    font-size: 0.85rem;
    color: #6c757d;
    transition: transform 0.2s ease;
}

.admin-fold-toggle[aria-expanded="true"] .admin-fold-chevron {
    transform: rotate(180deg);
}

.admin-fold-body {
    padding: 0 0.9rem 0.9rem;
    border-top: 1px solid #e9edf4;
    background: #fff;
    border-radius: 0 0 8px 8px;
}

.admin-fold-body.collapse:not(.show) {
    display: none;
}

/* —— Searchable select —— */
.ss-wrap {
    position: relative;
    width: 100%;
}

.ss-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.ss-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    padding-right: 1.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%236c757d' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    background-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ss-trigger.ss-placeholder {
    color: #6c757d;
}

.ss-wrap.ss-open .ss-trigger {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.ss-dropdown {
    position: fixed;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dce1ea;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.ss-dropdown[hidden] {
    display: none !important;
}

.ss-search {
    border: 0;
    border-bottom: 1px solid #e9edf4;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
    width: 100%;
}

.ss-search:focus {
    background: #f8faff;
}

.ss-list {
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.ss-option {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0.4rem 0.75rem;
    font-size: 0.86rem;
    color: #212529;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ss-option:hover,
.ss-option.is-active {
    background: #eef4ff;
}

.ss-option.is-selected {
    color: #0d6efd;
    font-weight: 600;
}

.ss-empty {
    padding: 0.7rem 0.75rem;
    font-size: 0.82rem;
    color: #6c757d;
}

.us-dropdown {
    position: fixed;
    z-index: 2000;
    background: #fff;
    border: 1px solid #dce1ea;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.us-dropdown[hidden] {
    display: none !important;
}

.us-option {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0.4rem 0.75rem;
    font-size: 0.86rem;
    cursor: pointer;
}

.us-option small {
    color: #6c757d;
}

.us-option:hover {
    background: #eef4ff;
}

.us-empty {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
    color: #6c757d;
}

.lt-wrap {
    position: relative;
    display: flex;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background: #fff;
    overflow: hidden;
}

.lt-gutter {
    flex: 0 0 2.1rem;
    background: #f4f6fa;
    color: #8b95a8;
    font-size: 0.75rem;
    line-height: 1.5;
    padding: 0.375rem 0.25rem;
    text-align: right;
    overflow: hidden;
    user-select: none;
    border-right: 1px solid #e9edf4;
}

.lt-gutter span {
    display: block;
}

.lt-textarea {
    flex: 1 1 auto;
    border: 0 !important;
    box-shadow: none !important;
    resize: vertical;
    line-height: 1.5;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.85rem;
}

.lt-badge {
    position: absolute;
    right: 8px;
    bottom: 6px;
    font-size: 0.7rem;
    color: #6c757d;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 4px;
    pointer-events: none;
}

.lt-sm .lt-gutter,
.lt-sm .lt-textarea {
    font-size: 0.8rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

/* —— Admin sidebar —— */
.sidebar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.55rem 0.85rem;
}

.sidebar-nav .nav-heading {
    margin-top: 0.85rem;
}

.sidebar-nav .nav-heading:first-child {
    margin-top: 0;
}

#admin-nav-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 2000;
    background: #4154f1;
    pointer-events: none;
    opacity: 0;
}

#admin-nav-progress.is-on {
    opacity: 1;
    animation: admin-nav-progress 1.2s ease-in-out infinite;
}

#admin-nav-progress.is-done {
    opacity: 0;
    width: 100%;
    transition: opacity 0.2s ease;
}

@keyframes admin-nav-progress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 90%; }
}

/* —— Responsive: mobile + PC —— */
img,
video,
iframe {
    max-width: 100%;
}

.table-responsive,
.recent-sales.overflow-auto,
#admin-posts-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.card-title {
    word-break: break-word;
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card-meta .pull-left,
.product-card-meta .pull-right {
    float: none;
    margin-bottom: 0;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.admin-toolbar .btn {
    white-space: nowrap;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
}

.admin-toolbar form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    min-width: 0;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 0;
}

.category-tabs .nav-custom-item {
    margin-right: 0;
    margin-bottom: 0;
}

.header-nav .dropdown-menu.profile {
    max-height: min(70vh, 520px);
    overflow-y: auto;
}

.legal-content {
    overflow-wrap: anywhere;
}

.legal-content img,
.legal-content table {
    max-width: 100%;
}

.demo-media {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.admin-area .contact-icons,
.admin-area .contact-bar {
    display: none !important;
}

.admin-area .wrapper {
    padding-bottom: 0;
}

.sidebar-backdrop {
    display: none;
}

@media (max-width: 1199px) {
    .admin-area .sidebar {
        width: min(280px, 86vw);
    }

    .admin-area.toggle-sidebar .sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        z-index: 995;
    }

    .admin-area #main,
    .admin-area #footer {
        margin-left: 0;
    }
}

@media (min-width: 1200px) {
    .header .search-bar {
        min-width: 280px;
        max-width: 520px;
        flex: 1 1 auto;
    }

    #main .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    #main .container {
        max-width: 1320px;
    }
}

@media (max-width: 991px) {
    .footer .row > [class*="col-"] {
        text-align: left;
    }

    .featured-popup {
        right: 12px;
        width: min(300px, calc(100vw - 24px));
    }
}

@media (max-width: 767px) {
    #main,
    .footer,
    .copyright {
        overflow-x: clip;
    }

    #header.header {
        padding-left: 10px;
        padding-right: 6px;
        height: 56px;
    }

    #header .logo,
    .header .logo {
        flex-shrink: 0;
        width: auto !important;
    }

    #header .logo img,
    .header .logo img {
        height: 36px;
        max-height: 36px;
        max-width: 44px;
        width: auto !important;
        object-fit: contain;
    }

    #main {
        margin-top: 56px;
        padding: 12px 10px 24px;
    }

    .wrapper {
        padding-bottom: 0;
    }

    .admin-toolbar .btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 0;
        font-size: 0.8rem;
        padding: 0.42rem 0.5rem;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }

    .admin-toolbar form {
        flex: 1 1 100%;
        max-width: none !important;
        min-width: 0 !important;
        width: 100%;
    }

    .admin-toolbar form .form-control {
        flex: 1 1 auto;
        min-width: 0 !important;
    }

    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        margin-bottom: 8px;
    }

    .category-tabs .nav-custom-item {
        flex: 0 0 auto;
    }

    .category-tabs .nav-custom-link {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 13px;
    }

    .card-img-top {
        height: 140px !important;
        object-fit: cover;
    }

    .card-body {
        padding: 0.75rem;
    }

    .card-title,
    .card-title.h5 {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card-meta {
        font-size: 0.82rem;
    }

    .product-card-meta .pull-right {
        font-size: 0.78rem;
    }

    .table {
        font-size: 0.82rem;
    }

    .table .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }

    .header-nav .dropdown-menu.profile {
        width: min(280px, calc(100vw - 16px));
        max-height: calc(100vh - 70px);
    }

    .header-nav .nav-profile span {
        max-width: 88px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .demo-media,
    #demoCarousel img,
    #demoCarousel video,
    #demoCarousel .video-frame {
        height: 220px !important;
    }

    .demo-thumbnail {
        width: 72px;
        height: 72px;
    }

    .col-4-custom {
        width: 80px;
        max-width: 33%;
    }

    .review-form,
    .legal-content,
    .card-body.p-4,
    .card-body.p-md-5 {
        padding: 1rem !important;
    }

    h1 {
        font-size: 1.4rem;
    }

    .footer {
        padding: 24px 12px;
    }

    .copyright {
        font-size: 0.78rem;
        padding: 8px 12px;
        text-align: center;
        word-break: break-word;
    }

    .featured-popup {
        left: 12px;
        right: 12px;
        top: auto;
        bottom: 80px;
        width: auto;
        transform: none;
        max-height: 55vh;
        overflow: auto;
    }

    .modal-content {
        width: calc(100% - 24px);
        margin: 12px;
    }

    .ss-dropdown {
        max-width: calc(100vw - 16px);
    }
}
