@font-face {
    font-family: 'MalayalamMN';
    src: url('fonts/malayalam-mn.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Ensures better loading behavior */
}

@font-face {
    font-family: 'SF-Pro-Display-Medium';
    src: url('fonts/SF-Pro-Display-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    /* Ensures better loading behavior */
}

@font-face {
    font-family: 'SF-Pro-Display-Bold';
    src: url('fonts/SF-Pro-Display-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    /* Ensures better loading behavior */
}

@font-face {
    font-family: '1KFacultyGlyphic';
    src: url('fonts/1KFacultyGlyphic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Display-Regular';
    src: url('fonts/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    /* Ensures better loading behavior */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: var(--spacing-unit);
    background-color: white;
    font-size: 100%;
}

.nav-bar {
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1.5% 0%;
    position: fixed;
    background-color: white;
}

.nav-bar a {
    text-decoration: none;
}

.nav-bar .brand {
    display: flex;
    color: black;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-family: 'MalayalamMN';
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.2em;
    padding-left: 0%;
}

.nav-icons {
    position: absolute;
    display: flex;
    flex-direction: row;
    list-style: none;
    right: 10%;
    gap: 20px;
}

.nav-icons li {
    width: 10%;
}

.nav-icons li img {
    width: 80%;
}

.shopping-bag .cart-badge {
    position: absolute;
    top: 27%;
    left: 40%;
    transform: translateX(-50%);
    color: grey;
    font-size: 8px;
    z-index: 2100;
    font-family: 'SF-Pro-Display-Light';
    font-weight: 400;
}

.search {
    display: flex;
    align-items: center;
    justify-content: center;
}

#searchInput {
    position: absolute;
    top: 80px;
    /* Distance from top of screen */
    left: 50%;
    transform: translateX(-50%);
    /* Center horizontally */
    padding: 8px 12px;
    width: 30%;
    /* Wider for better usability */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 16px;
    display: none;
    /* Hidden by default */
    background: white;
    font-family: '1KFacultyGlyphic';
    color: #000;
    font-weight: 300;
    z-index: 2200;
    /* Above other elements */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#searchInput::placeholder {
    color: #ccc;
    font-size: 14px;
}

#searchInput:focus {
    outline: none;
    border-color: black;
    background: white;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
}

.search-results {
    position: fixed;
    top: 120px;
    /* Below searchInput (20px + 40px height) */
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    /* Match input width */
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2200;
    display: none;
}

.search-results .search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-results .search-result-item:hover {
    background: #f8f8f8;
}

.search-results .search-result-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
}

.search-results .search-result-item .content {
    flex-grow: 1;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.search-results .search-result-item .brand {
    font-size: 12px;
    color: grey;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    text-transform: uppercase;
}

.search-results .search-result-item .item {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.search-results .search-result-item .price {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.search-results .search-result-item .sale-price {
    font-size: 14px;
    color: #B68405;
    font-family: 'SF-Pro-Display-Medium';
    font-weight: 500;
}

.search-results .search-result-item .original-price {
    color: gray;
    text-decoration: line-through;
    font-size: 10px;
    font-family: 'SF-Pro-Display-Medium';
    font-weight: 500;
}

.search-results .no-results {
    padding: 10px;
    text-align: center;
    color: #666;
    font-family: '1KFacultyGlyphic';
    color: #000;
    font-weight: 300;
}

.so-luong,
.size-section label,
.size-section select {
    font-family: '1KFacultyGlyphic';
    color: #000;
    font-weight: 100;
    font-size: 10px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 10%;
    right: 17%;
    box-shadow: rgb(138, 37, 37);
    z-index: 500;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    width: 600px;
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5% 5%;
    border-bottom: 2px solid #ccc;
}

.modal-header h2 {
    font-size: 0.8rem;
    padding: 4% 0;
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #ccc;
    width: 100%;
    gap: 1rem;
    flex-direction: column;
    padding: 5% 0;

}

.modal-header button {
    position: absolute;
    right: 5%;
    padding: 1%;
    background-color: white;
    border: none;
    font-size: 1.5rem;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.checkout-btn,
.zalo-btn {
    width: 90%;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
}

.checkout-btn {
    font-size: 0.8rem;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    background-color: black;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.zalo-btn {
    font-size: 0.7rem;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    border: 1px solid rgb(159, 159, 159);
    transition: all 0.3s ease;
    text-transform: uppercase;
    background-color: white;
}

.checkout-btn:hover {
    border-color: black;
    border: 2px solid grey;
    transform: scale(1.05);
    background-color: white;
    color: black;
}

.zalo-btn:hover {
    background-color: black;
    color: white;
    transform: scale(1.05);
}

.shopping-bag {
    position: relative;
}

.modal-body .content {
    display: flex;
    flex-direction: column;
    gap: 10%;
    width: 70%;
}

.modal-body .content .item {
    font-size: 0.8rem;
    text-transform: uppercase;
    width: 100%;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    margin-top: 10px;
}

.modal-body .price {
    display: flex;
    gap: 5%;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
}

.modal-body .price .sale-price {
    color: #B68405;
    font-size: 0.9rem;
}

.modal-body .price .original-price {
    color: grey;
    font-size: 0.6rem;
}

.modal-body .content .material-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10% 0%;
    gap: 0.3rem;
}

.modal-body .content .material-section .materials {
    font-size: 0.6rem;
    text-decoration: underline;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    background-color: transparent;
    text-transform: uppercase;
}

.cart-announcement {
    display: none;
    background: white;
    font-family: '1KFacultyGlyphic';
    color: #000;
    font-weight: 300;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    max-width: 90%;
    z-index: 20;
    box-shadow: 0 2px 6px rgba(184, 184, 184, 0.2);
}

.cart-announcement img {
    width: 5%;
}

.cart-announcement.show {
    display: block;
    animation: slideIn 0.5s ease-in-out, fadeOut 1s ease-in-out 2s forwards;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

/* Sidebar container */
.xai-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10010;
    display: flex;
    flex-direction: column;
    padding: 0 10px;

}

.xai-sidebar.xai-active {
    transform: translateY(0);
}

.xai-content {
    padding: 20px;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

#xai-submenu-title.text-lg.font-bold,
#xai-sub-submenu-title.text-lg.font-bold {
    padding: 30px 0;
    font-size: 1.5rem;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
}

.xai-content-hidden {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.xai-content-visible {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    padding-top: 100px;
    max-height: calc(90vh - 200px);
    /* Adjust based on header and contact-info height */
    /* Ensure a fixed or maximum height */
    overflow-y: auto;
    /* Enable vertical scrolling */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    z-index: 0;
}

#xai-content-visible::-webkit-scrollbar {
    display: none;
}


.xai-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    background-color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    z-index: 3000;
}

.xai-close-btn div {
    color: white;
    display: flex;
    justify-content: center;

}

.xai-close-btn div img {
    width: 40%;
}

.xai-back-btn {
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;

}

.xai-back-btn img {
    width: 5px;
}

.xai-back-btn div {
    font-size: 1rem;
}

.xai-back-btn span {
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: underline;
    text-transform: uppercase;
}

.xai-menu-item {
    padding: 15px 0;
    cursor: pointer;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
}

.xai-menu-item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xai-menu-item-container:hover {
    text-decoration: underline;
}

.xai-submenu-item,
.xai-sub-submenu-item {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    background: white;
}

.xai-submenu-item .flex-grow,
.xai-sub-submenu-item .flex-grow {
    text-decoration: none;
    color: #000;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    font-size: 0.8rem;
}

.xai-submenu-item:hover,
.xai-sub-submenu-item:hover {
    text-decoration: underline;
}

.contact-info {
    position: absolute;
    bottom: 20px;
    /* Position at the bottom of the parent */
    font-size: 14px;
    color: #666;
    border-top: 1px solid gray;
    padding: 0 20px;
    line-height: 2em;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    background-color: white;
    justify-content: flex-end;
    width: 100%;
}

.contact-info span:nth-child(1) {
    font-family: '1KFacultyGlyphic';
    color: #000;
    font-weight: 400;
}

.contact-info span:nth-child(2) {
    font-family: 'SF-Pro-Display-Regular';
    color: #000;
    font-weight: 400;
}


#xai-sidebar-toggle {
    cursor: pointer;
    z-index: 909;
}

.nav-icons .xai-sidebar-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5% 0;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 60px;
}

.container {
    max-width: 100%;
    height: 100%;
    margin: 0 3%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 3rem;
}

.news-grid .news-item {
    display: flex;
    flex-direction: column;
}

.news-item img {
    width: 100%;
    object-fit: contain;
}

.news-content {
    width: 100%;
    display: flex;
    padding: 0.9375rem;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
}

.news-content span {
    color: grey;
    text-transform: uppercase;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    font-size: 0.6rem;
}

.news-content h3 {
    font-size: 0.8rem;
    color: #333;
    margin: 0 0 0.3rem;
    text-transform: uppercase;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
}

.news-content p {
    font-size: 0.7rem;
    color: #666;
    margin: 0 0 0.625rem;
    line-height: 1.5;
    font-family: '1KFacultyGlyphic';
    font-weight: 400;
}

.news-content a {
    color: #e91e63;
    text-decoration: none;
    font-size: 0.7rem;
    font-family: '1KFacultyGlyphic';
    font-weight: 400;
}

.news-content a:hover {
    text-decoration: underline;
}

.footer {
    /* Footer background */
    padding-top: 5%;
}

.footer-container {
    display: grid;
    /* Use CSS Grid */
    grid-template-columns: repeat(3, 1fr);
    /* 2 columns */
    grid-template-rows: repeat(2, auto);
    /* 3 rows */
    gap: 20px;
    /* Spacing between items */
    padding: 0 5%;
}

.column {
    background-color: #ffffff;
    /* Optional: Column background for clarity */
    padding: 20px;
    /* Rounded corners for a modern look */
    /* Subtle shadow */
}

.column img {
    display: none;
}

.column h3 {
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #b8b8b8;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
    text-transform: uppercase;
}

.column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 5%;
    font-family: '1KFacultyGlyphic';
    font-weight: 400;

}

.column ul li {
    margin-bottom: 1%;
    color: #000000;
    font-size: 0.6rem;
    font-family: '1KFacultyGlyphic';
    font-weight: 400;

}

.content-wrapper ul li a {
    text-decoration: none;
    color: #000000;
    display: block;
    /* Make the entire li area clickable */
    cursor: pointer;
}

.content-wrapper li a:hover {
    color: #717070;
    /* Subtle hover effect */
    text-decoration: underline;
}


.input-wrapper {
    position: relative;
    /* Position the wrapper for the pseudo-element */
    display: inline-block;
    /* Ensure wrapper fits the input size */
    width: 100%;
    /* Match input width */
}

.input-box {
    border: none;
    border-bottom: 1px solid rgb(183, 183, 183);
    /* Bottom border */
    font-weight: 400;
    /* Regular font weight */
    padding: 8px 24px 8px 8px;
    /* Add right padding to avoid text overlap */
    outline: none;
    width: 100%;
    /* Fill the wrapper */
    box-sizing: border-box;
    /* Ensure padding doesn't affect width */
}

.input-wrapper::after {
    content: ">";
    /* Right arrow (Unicode \u2192) */
    position: absolute;
    right: 8px;
    /* Distance from right edge */
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    /* Align vertically */
    font-size: 16px;
    /* Arrow size */
    color: black;
    /* Arrow color */
    pointer-events: none;
    /* Prevent interaction with arrow */
}

.column.notification .input-box:focus {
    outline: none;
}

footer .brand {
    text-align: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-top: 10%;
    padding-top: 2%;
    color: #333;
    font-family: 'MalayalamMN';
    font-weight: 400;
    padding-bottom: 5%;
    line-height: 81.6%;
    letter-spacing: 0.01em;
    border-top: 1px solid rgb(197, 196, 196);
}


.mobile-button-container {
    display: none;
    /* Hidden by default */
}

.more-button {
    background-color: black;
    color: #fff;
    border: none;
    padding: 3% 10%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'SF-Pro-Display-Bold';
    font-weight: 700;
}

.more-button:hover {
    background-color: white;
    color: black;
}

@media (max-width: 600px) {

    body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .cart-announcement {
        width: 200px;
        top: 100px;
        font-size: 0.8rem;
    }

    .nav-bar {
        display: flex;
        width: 95%;
        justify-content: space-between;
        padding: 5% 2%;
    }

    .nav-bar .brand {
        width: 40%;
        text-align: center;
        line-height: 1;
        font-size: 1.2rem;
        word-spacing: 0rem;
        letter-spacing: 0rem;
    }

    .nav-bar .nav-icons {
        position: static;
        justify-content: flex-end;
        align-items: center;
    }

    .nav-icons li {
        font-size: 1.5rem;
    }

    .shopping-bag .cart-badge {
        top: 45%;
        right: 40%;
    }

    .news-title {
        margin-top: 110px;
        margin-bottom: 30px;
    }

    #searchInput {
        width: 50%;
        /* Wider for better usability */
        top: 150px;
        /* Adjusted distance from top */
        left: 50%;
        transform: translateX(-50%);
    }

    #searchInput ::placeholder {
        font-size: 0.8rem;
        /* Smaller placeholder text */
    }

    .search-results {
        width: 50%;
        /* Match input width */
        top: 190px;
        /* Below searchInput */
        left: 50%;
        transform: translateX(-50%);
    }

    .search-results .search-result-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .search-results .search-result-item img {
        width: 100px;
        height: 100px;
        /* Smaller images for mobile */
    }

    .search-results .search-result-item .content {
        width: 100%;
        /* Adjusted width for mobile */
    }

    .search-results .search-result-item .brand {
        font-size: 0.8rem;
        /* Smaller brand text */
    }

    .search-results .search-result-item .item {
        font-size: 1rem;
        /* Smaller item text */
    }

    .search-results .search-result-item .price {
        flex-direction: row;
        /* Stack price elements vertically */
        align-items: center;
        /* Align to the left */
        justify-content: space-between;
        width: 100%;
    }

    .search-results .search-result-item .price .sale-price {
        font-size: 1rem;
        /* Smaller sale price */
    }

    .search-results .search-result-item .price .original-price {
        font-size: 0.6rem;
        /* Smaller original price */
    }

    .modal-overlay {
        position: fixed;
        /* Use fixed to keep modal in viewport */
        top: 50%;
        /* Center vertically */
        left: 50%;
        /* Center horizontally */
        right: auto;
        /* Remove right positioning */
        transform: translate(-50%, -50%);
        /* Center the modal */
        width: 90%;
        /* Take most of the screen width */
        max-width: 350px;
        /* Cap width for larger mobile screens */
        box-shadow: 0 2px 4px rgba(108, 108, 108, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
        /* Lighter shadow */
        z-index: 1000;
        /* Ensure it’s above other elements */
        display: none;
        /* Hidden by default, shown via JS */
    }

    .modal-content {
        width: 100%;
        /* Full width of modal-overlay */
        background: #ffffff;
    }

    .modal-header {
        padding: 2% 5%;
        /* Reduce padding */
        border-bottom: 1px solid #ccc;
        /* Thinner border */
    }

    .modal-header h2 {
        font-size: 0.7rem;
        /* Smaller font for mobile */
        padding: 3% 0;
    }

    .modal-header button {
        right: 3%;
        /* Adjust close button position */
        font-size: 0.9rem;
        /* Smaller close button */
        padding: 0.5%;
    }

    .modal-body {
        max-height: 50vh;
        /* From previous adjustment */
        padding: 5px;
        overflow-y: auto;
        overflow-x: hidden;
        width: 100%;
    }

    .modal-body .content {
        gap: 8px;
        /* From previous adjustment */
        width: 100%;
    }

    .modal-body .cart-item {
        display: flex;
        flex-direction: column;
        width: 100%;
        /* Fit within modal-body */
        max-width: 100%;
        /* Prevent overflow */
        gap: 6px;
        /* Small gap between item elements */
        overflow-x: hidden;
        /* Prevent horizontal scrolling */
        padding: 5px 0;
        /* Light padding for each cart item */
        border-bottom: 1px solid #eee;
        /* Subtle separator between items */
    }

    .modal-body .cart-item img {
        width: 100%;
        /* Scale images to fit */
        max-width: 150px;
        /* Cap image size for compactness */
        height: auto;
        /* Maintain aspect ratio */
        margin-bottom: 5px;
        /* Space below image */
    }

    .modal-body .content .item {
        font-size: 0.6rem;
        /* Slightly smaller for better fit */
        font-family: 'SF-Pro-Display-Bold';
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        white-space: nowrap;
        /* Prevent wrapping */
        overflow: hidden;
        /* Hide overflow */
        text-overflow: ellipsis;
        /* Truncate long names */
    }

    .modal-body .price {
        gap: 3px;
        /* From previous adjustment */
        flex-wrap: nowrap;
        /* Prevent price wrapping */
        justify-content: space-between;
        align-items: center;
    }

    .modal-body .price .sale-price {
        font-size: 0.7rem;
        /* Slightly smaller */
        color: #B68405;
        font-family: 'SF-Pro-Display-Bold';
        font-weight: 700;
    }

    .modal-body .price .original-price {
        font-size: 0.45rem;
        /* Compact */
        color: grey;
        font-family: 'SF-Pro-Display-Bold';
        font-weight: 700;
    }

    .modal-body .content .material-section {
        padding: 3px 0;
        /* Tighter padding */
        gap: 4px;
        /* Smaller gap */
    }

    .modal-body .content .material-section .materials {
        font-size: 0.45rem;
        /* Compact */
        font-family: 'SF-Pro-Display-Bold';
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        text-decoration: underline;
    }

    .modal-footer {
        padding: 3% 0;
        /* Reduce padding */
        gap: 0.5rem;
        /* Smaller gap between buttons */
    }

    .checkout-btn,
    .zalo-btn {
        width: 85%;
        /* Slightly smaller buttons */
        padding: 10px 15px;
        /* Compact padding */
        font-size: 0.7rem;
        /* Smaller font */
    }


    .news-grid {
        display: flex;
        flex-direction: column;
    }

    .news-item:nth-child(n+5) {
        display: none;
    }

    .mobile-button-container {
        display: flex;
        /* Show the button container */
        justify-content: center;
        align-items: center;
        /* Optional: to fix it at the bottom */
        width: 100%;
        /* Full-width container */
        padding: 10% 0;
    }

    .news-content {
        width: 90%;
    }

    .more-button {
        width: 50%;
        /* Full-width button */
    }

    .footer-container {
        grid-template-columns: 1fr;
        /* Single column layout */
        grid-template-rows: repeat(6, auto);
        /* Adjust rows for content */
    }

    footer .brand {
        padding-top: 30px;
        font-size: 1.3rem;
        margin-top: 80px;
    }

    .footer {
        padding: 0 0;
        padding-bottom: 10%;
    }

    .footer-container {
        gap: 0;
    }

    .column {
        border-bottom: 1px solid rgb(197, 196, 196);
        padding: 6% 2%;
        padding-top: 7%;
    }

    .column-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .column .arrow {
        display: block;
        width: 3%;
        height: 3%;
        transition: transform 0.5s ease-out;
        /* Matches content-wrapper transition */
        transform: rotate(0deg);
        /* Default state */
    }

    .column .content-wrapper.show+.column-wrapper .arrow,
    .column-wrapper .arrow.show {
        transform: rotate(180deg);
        /* Rotate when content is shown */
    }

    .column h3 {
        cursor: pointer;
        font-size: 0.8rem;
        color: grey;
        display: flex;
        align-items: center;
    }

    .column .content-wrapper {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }

    .column .content-wrapper.show {
        max-height: 500px;
        /* Large enough for most content; adjust if needed */
    }

    .input-wrapper {
        margin-bottom: 10%;
    }

    .column .content-wrapper ul {
        padding: 5% 0;
    }

    .column ul li {
        padding: 0 0;
        font-size: 0.6em;
        color: #555;
    }

    .footer-container.first .notification {
        order: -1;
    }

    .column.notification .input-box {
        padding: 3% 5%;
    }

    .input-wrapper {
        margin-bottom: 10%;
    }

}