/* Banner main page image style */
.main-banner-img {
    display: block;
    margin: 20px auto 0 auto;
    max-width: 100%;
    border-radius: 8px;
    cursor: pointer;
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

/* MENU SECTION (the flower filter/search bar) */
body {
    font-family: "Cormorant Garamond", serif;
    margin: 0;
    background: #fff;
}

.menu-section {
    margin: 32px auto 0 auto;
    border-radius: 4px;
}

.menu-bar {
    background: #f2f2f2;
}

.menu-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.menu-title-row h3 {
    margin: 0;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    color: #222;
    font-weight: 500;
    margin: 0;
}

.menu-viewall {
    color: #3c7031;
    font-family: 'Georgia', serif;
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
    display: flex;
    align-items: center;
}

.banners-header {
    margin-top: 1.5rem !important;
    font-weight: 500;
    color: rgb(51, 51, 51);
}

.product-menu .menu-item {
    color: #3c7031;
    font-size: 1.08rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 20px 20px 0 0;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.product-menu .menu-item.active {
    background: #3c7031;
    color: #fff;
    font-weight: bold;
}

.product-menu .menu-item:hover {
    background: #3c7031;
    color: #fff;
}

/* PRODUCT LIST GRID */
.product-list {
    margin: 30px auto;
    padding: 0 10px;
}

.product-list h3 {
    display: flex;
    justify-content: end;
    margin-top: 15px;
}

/* Search Form Customization */
.form-input {
    position: relative;
    margin: 0 auto;
}

.search-input {
    outline: none;
    padding: 4px 10px;
    padding-left: 28px;
    border-radius: 4px;
    width: 250px;
}

.search-icon {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 20px;
    pointer-events: none;
}

.product-title {
    font-size: 2.2rem;
    color: #3c7031;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0;
}

.product-item {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-item .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1;
}

.product-item .product-image img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    aspect-ratio: 1;
    display: block;
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
}

.product-item .product-image:hover img {
    transform: scale(1.05);
}

.product-detail {
    padding: 14px 8px;
    width: 100%;
}

.product-name {
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}

.product-status {
    color: #777777;
    min-height: 24px;
}

.product-price {
    color: #3c7031;
    font-weight: 500;
    margin-bottom: 14px;
}

.product-btn {
    text-decoration: none;
}

/* HERO SECTION */
.main-hero {
    min-height: 480px;
    background: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 40px auto 0 auto;
}

.hero-image img {
    width: 400px;
    height: auto;
    border-radius: 18px;
}

.hero-text {
    max-width: 420px;
}

.hero-title {
    font-size: 2.6rem;
    font-family: 'Playfair Display', serif;
    color: #3c7031;
    margin-bottom: 18px;
}

.hero-desc {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-block;
    background: #3c7031;
    color: #fff;
    padding: 0.85em 2.2em;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-btn:hover {
    background: #2e5525;
}

main {
    margin: 2em auto;
    background: #fff;
    border-radius: 8px;
}

.itemListings-subheaderLink {
    font-weight: 200;
    text-indent: 2px;
    text-transform: uppercase;
    color: rgb(51, 51, 51) !important;
}

form.menu-search {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

form.menu-search label {
    margin-top: 1em;
    margin-bottom: 0.5em;
}


form.menu-search textarea {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1em;
}

form.menu-search button {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 6px 18px;
}

form.menu-search button:hover {
    background: #555;
}

.menu-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    background: #f2f2f2;
    border-radius: 4px;
    padding: 4px 13px;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: 18px;
    background: #efefef;
}

.bar-quick_select {
    display: flex;
    align-items: center;
    gap: 10px;
}

#flower-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}


#flower-filter li a {
    padding: 13px 8px;
    display: block;
    text-decoration: underline;
}

#flower-filter li a:hover {
    scale: 1.05;
}

#flower-filter>li {
    display: inline-block;
}


.poppick_item a,
.poppick_item a:active,
.poppick_item a:visited {
    color: rgb(41, 51, 51);
}

.bar-helper_text {
    color: #212427;
    font-style: italic;
    padding-left: 5px;
    min-width: fit-content;
}

.super-footer-main {
    min-height: 480px;
    background: #fff;
}

.super-footer-main .container {
    border: 0;
    height: 600px;
}

.map-container {
    height: 600px;
    margin: 100px auto;
}

.contact-info-box {
    margin: 32px auto 24px auto;
    background: #fff;
    border-radius: 14px;
    padding: 32px 0 32px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.contact-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.contact-row img {
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 2.4rem;
    color: #bdbdbd;
    margin-bottom: 10px;
}

.contact-hours,
.contact-address,
.contact-phone,
.contact-email {
    font-family: 'Georgia', serif;
    font-size: 12px;
    color: #333;
    text-align: center;
}

.contact-hours div {
    margin-bottom: 2px;
}

.contact-hours .work-row {
    display: flex;
}

.contact-hours .work-row .work-date {
    min-width: 160px;
    text-align: left;
}

.contact-hours .work-row .work-time {
    flex: 1;
}

.contact-address {
    margin-bottom: 2px;
}

.contact-phone {
    margin-bottom: 2px;
}

.contact-email {
    margin-bottom: 2px;
}

.reviews-box {
    background: #fff;
    border-radius: 18px;
    padding: 32px 32px 24px 32px;
    margin: 40px auto 0 auto;
}

.reviews-title-row {
    margin-bottom: 24px;
}

.reviews-title,
.about-us-title,
.about-owner-title,
.blomnation-title {
    font-size: 32px;
    margin: 0 0 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    color: #3d3d3d
}

.footer__underline {
    border-bottom: 1px solid #bbb;
    height: 1px;
    margin: 15px auto;
    width: 75px;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #212427;
    padding: 0;
    border: none;
    background: none;
}

.review-name {
    font-weight: 700;
    font-size: 15px;
    color: #212427;
}

.review-stars {
    margin-left: 4px;
    margin-right: 4px;
    display: inline-block;
    vertical-align: middle;
}

.star {
    color: #FFD700;
    font-size: 15px;
    margin-right: 1px;
}

.review-date {
    font-size: 13px;
    color: #888;
}

.review-text {
    font-size: 15px;
    color: #212427;
    margin-left: 8px;
    line-height: 1.5;
}

.review-show-more a {
    color: rgb(41, 51, 51);
}

.about-us {
    padding: 50px;
}

.about-us-title {
    text-align: center;
}

.about-us-content {
    margin: 0 auto;
    max-height: 540px;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    width: 80%;
    transition: max-height 0.3s;
}

.about-us-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-us-body {
    line-height: 2;
    overflow-y: auto;
    text-align: left;
    font-size: 14px;
}

.about-us-section {
    position: relative;
    max-width: 900px;
    margin: 0 auto 32px auto;
}



.read-more-link {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    margin-bottom: 12px;
    padding: 0;
    background: none;
    color: rgb(41, 51, 51);
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    z-index: 2;
    box-shadow: none;
}

.read-more-link:hover {
    color: rgb(41, 51, 51);
    text-decoration: underline;
}

.arrow-icon {
    font-size: 16px;
    margin-left: 6px;
    vertical-align: middle;
}

.blomnation-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
    text-align: center;
}

.social-item {
    border-left: 1px solid #eee;
    margin: 10px 0;
    padding: 0 65px;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.social-item:first-child {
    border-left: none;
}

.social-svg {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.social-title {
    font-size: 15px;
    color: #212427;
    font-weight: 500;
    margin-top: 0;
}

.social-item a {
    text-decoration: none;
}

.social-item:hover .social-title {
    text-decoration: none;
}

.social-icon {
    font-family: 'FontAwesome', Arial, sans-serif;
    font-size: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.social__name {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
}

.yelp i {
    color: #c41200;
}

.instagram i {
    color: #517fa4;
}

.about-owner {
    max-width: 800px;
    margin: 0 auto 32px auto;
    padding: 40px 0;
    text-align: center;
}

.about-us-title h2,
.about-owner-title h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #212427;
    margin-bottom: 18px;
}

.about-owner-body p {
    color: #212427;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 600px;
}

.blomnation-section {
    margin: 0 auto 32px auto;
    padding: 40px 0;
}

.blomnation-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #212427;
    margin-bottom: 18px;
}

.blomnation-desc {
    text-align: center;
    font-size: 15px;
    color: #212427;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blomnation-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
}

.blomnation-info {
    width: 100%;
}

.blomnation-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 120px;
    margin: 0 auto;
}

.blomnation-img {
    display: block;
    margin: 0 auto;
}

.scroll-text-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.scroll-text-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.scroll-text-icon svg {
    width: 38px;
    height: 38px;
    display: block;
}

.scroll-text-content {
    height: 300px;
    overflow-y: auto;
    font-size: 15px;
    color: #212427;
    line-height: 1.7;
    border-radius: 0;
    background: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 80%;
}

.scroll-text-content::-webkit-scrollbar {
    display: none;
}

.scroll-blocks {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}

.scroll-block {
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.scroll-block-row {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 36px;
    width: 100%;
    margin-bottom: 18px;
}

.scroll-block-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-block-icon img {
    width: 70px;
    height: 70px;
}

.scroll-block-icon svg {
    width: 38px;
    height: 38px;
    display: block;
}

.scroll-block-title {
    color: #3d3d3d;
    font-weight: 700;
    text-align: left;
    min-width: 120px;
    align-self: center;
}

.scroll-text-content {
    height: 300px;
    overflow-y: auto;
    font-size: 15px;
    color: #212427;
    line-height: 1.7;
    box-shadow: none;
    border-radius: 0;
    background: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-text-content {
    font-size: 12px;
}

.scroll-text-content a {
    font-weight: bold !important;
    color: #3d3d3d;
    text-decoration: none;
}

.scroll-text-content::-webkit-scrollbar {
    display: none;
}





.action-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.action-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 10px 9px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}

.action-wrapper .btn i {
    font-size: 14px;
}

.action-wrapper .btn-cart {
    color: #2e7d32;
    border-color: #2e7d32;
}

.action-wrapper .btn-cart:hover {
    background: #2e7d32;
    color: #fff;
    scale: 0.95;
}

.action-wrapper .btn-detail {
    border-color: #1565c0;
    color: #1565c0;
}

.action-wrapper .btn-detail a {
    text-decoration: none;
    color: inherit;
}

.action-wrapper .btn-detail:hover {
    background: #1565c0;
    color: #fff;
    scale: 0.95;
}







@media (max-width: 900px) {
    .scroll-blocks {
        flex-direction: column;
        align-items: center;
    }

    .scroll-block-row {
        grid-template-columns: 38px 1fr;
        gap: 12px;
        align-items: center;
    }

    .scroll-text-content {
        max-width: 100%;
    }

    .map-container {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FOOTER SECTION */
.site-footer {
    border-top: 1px solid #eee;
    background: #fff;
    padding: 18px 0;
    color: #6b6b6b;
    font-size: 13px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-copy {
    color: #6b6b6b;
}

.footer-links {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.footer-link {
    color: #3c7031;
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    color: #295021;
    text-decoration: underline;
}

.footer-sep {
    color: #d0d0d0;
}

.copyright__links {
    clear: both;
    font-size: 12px;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 50px;
    border-top: 1px solid #eee;
}

.copyright__link {
    color: #212427;
    display: inline-block;
    font-size: 12px;
    font-weight: 600 !important;
    margin: 0 20px;
    white-space: nowrap;
    text-decoration: none;
}

.copyright__all-rights-reserved {
    color: #3d3d3d;
    font-size: 12px;
    padding-top: 15px;
}

.footer-social_media {
    background: var(--bn--light-gray);
    margin: 60px 0;
    padding: 25px 0;
}

.social-innerContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.social_media .row>a {
    margin: 10px 0;
    text-align: center;
    text-decoration: none;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2em;
}

.social_media i:first-child {
    color: #fff;
    font-size: 18px;
    padding: 0 0 0 3px;
    z-index: 99;
}

.social_media i:first-child {
    color: #fff;
    font-size: 18px;
    padding: 0 0 0 3px;
    z-index: 99;
}

.poweredbybloomnation {
    text-align: center;
}

.member_of_bloomnation {
    color: rgb(33, 36, 39);
    text-decoration: none;
    font-size: 14px;
}

.contact-info-box-main-page {
    flex-direction: column;
    align-items: center;
}

.footer-infoItem .infoItem-header {
    font-weight: 600 !important;
    margin-bottom: 8px;
}

.infoItem-text {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 14px;
}


.input-error {
    color: #dc3545;
    font-size: 0.95em;
    margin-top: 4px;
}

/* Toast Custom Styles */
.toast-custom {
    color: #ffffff !important;
}

.toastify {
    background-image: linear-gradient(to left, #30c68e 0%, #35b953 100%, #b1dda3 100%) !important;
}


.toast-close {
    color: #ffffff !important;
}


/*
  ******  RESPONSIVE LAYOUT  ******
*/
@media screen and (max-width: 1400px) {
    .scroll-block-row {
        width: 75%;
    }
}

@media screen and (max-width: 1200px) {
    .search-input {
        width: 200px;
    }

    .action-wrapper .btn {
        gap: 5px;
        padding: 6px 6px;
    }

    .scroll-block-row {
        gap: 15px;
    }

    .scroll-block-icon img {
        width: 50px;
        height: 50px;
    }

    #flower-filter {
        column-gap: 8px;
        row-gap: 0px;
    }

    #flower-filter li a {
        padding: 7px 8px;
        display: block;
        text-decoration: underline;
    }
}

@media screen and (max-width: 991px) {
    .main-hero .container {
        max-width: 95%;
    }

    .super-footer-main .container {
        max-width: 95%;
    }

    .menu-bar {
        flex-direction: column;
        align-items: baseline;
        gap: 3px;
        padding: 10px 10px;
        padding-bottom: 05px;
    }

    form.menu-search {
        gap: 12px;
    }

    .search-input {
        width: 250px;
        padding: 5px 23px;
        padding-right: 15px;
    }

    .search-icon {
        font-size: 16px;
    }

    form.menu-search button {
        min-width: 80px;
        padding: 7px 15px;
    }

    #flower-filter {
        gap: 14p;
    }

    #flower-filter li a {
        padding: 7px 9px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .product-item img {
        width: 90%;
    }

    .map-container {
        max-height: 400px;
    }

    .contact-row {
        margin-bottom: 30px;
    }

    .contact-info-box {
        margin-bottom: 0;
    }

    .blomnation-section {
        margin: 0 auto 32px auto;
        padding: 20px 0;
    }

    .about-owner {
        max-width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .main-hero .hero-content {
        margin-top: 20px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 15px;
        row-gap: 25px;
    }

    .product-list {
        margin: 20px auto;
        padding: 0px;
    }

    .product-name {
        margin-bottom: 5px;
    }

    .action-wrapper {
        gap: 5px;
    }

    .action-wrapper .btn {
        padding: 5px 8px;
    }

    .action-wrapper .btn-cart span {
        font-size: 0;
        content: "";
    }

    .action-wrapper .btn-cart span::after {
        content: "Add";
        font-size: 14px;
    }

    .about-us {
        padding: 30px;
        margin-bottom: 100px;
    }

    .about-us-content {
        max-height: 540px;
        padding: 40px 0;
        width: 90%;
    }

    .about-owner {
        padding: 30px 0;
    }

    .blomnation-socials {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px 0;
        text-align: center;
    }

    .blomnation-container {
        gap: 20px;
        padding: 30px 24px;
    }

    .social-item {
        border-left: 1px solid #eee;
        margin: 10px 0;
        padding: 0 30px;
        gap: 10px;
    }

    .scroll-block-icon img {
        width: 40px;
        height: 40px;
    }

    .bar-quick_select {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        margin-top: 5px;
    }
}

@media screen and (max-width: 660px) {
    .main-banner-img {
        margin-top: 10px;
        object-fit: fill;
        min-height: 160px;
    }

    form.menu-search button {
        min-width: 100px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 12px;
        row-gap: 25px;
    }

    .map-container {
        max-height: 300px;
    }

    .contact-info-box {
        gap: 40px;
    }
    .contact-row {
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 580px) {
    .banners-header {
        margin-top: 1rem !important;
    }

    .menu-bar {
        padding: 10px;
    }

    .search_bar {
        width: 100%;
    }

    .search-input {
        padding: 3px 20px;
        padding-right: 10px;
    }

    .search-icon {
        font-size: 14px;
    }

    form.menu-search button {
        padding: 5px 13px;
        min-width: unset;
    }

    form.menu-search {
        justify-content: space-between;
    }

    .form-input {
        margin: 0;
        flex: 1;
    }

    .search-input {
        width: 100%;
    }

    .bar-quick_select {
        display: none;
    }

    .product-item img {
        width: 100%;
    }

    .about-us-section {
        max-width: 80%;
    }

    .about-us {
        padding: 0px;
    }

    .contact-info-box {
        margin-top: 0;
        padding-top: 0;
    }
}

@media screen and (max-width: 450px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-list {
        margin: 20px auto;
        padding: 0px;
    }

    .product-detail {
        padding: 12px 6px;
        width: 100%;
    }

    .action-wrapper .btn {
        padding: 5px 6px;
    }

    .about-us-section {
        max-width: 100%;
    }

    .about-owner {
        max-width: 90%;
        padding: 20px 0;
    }

    .blomnation-socials {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 18px 0;
        text-align: center;
    }

    .blomnation-container {
        gap: 15px;
        padding: 26px 20px;
    }

    .social-item {
        border-left: 1px solid #eee;
        margin: 10px 0;
        padding: 0 16px;
        gap: 10px;
    }
}

@media screen and (max-width: 365px) {}