:root {
    /* --chalet-green-50: #f6f8ed;
    --chalet-green-100: #eaf0d7;
    --chalet-green-200: #d5e2b4;
    --chalet-green-300: #b9ce88;
    --chalet-green-400: #9eb962;
    --chalet-green-500: #809e44;
    --chalet-green-600: #637d33;
    --chalet-green-700: #556b2f;
    --chalet-green-800: #3f4e26;
    --chalet-green-900: #374324;
    --chalet-green-950: #1b240f; */

    --chalet-orange-50: #fff4ed;
    --chalet-orange-100: #ffe5d4;
    --chalet-orange-200: #ffc6a8;
    --chalet-orange-300: #ff9f71;
    --chalet-orange-400: #ff6833;
    --chalet-orange-500: #fe4511;
    --chalet-orange-600: #ef2b07;
    --chalet-orange-700: #c61b08;
    --chalet-orange-800: #9d180f;
    --chalet-orange-900: #7e1710;
    --chalet-orange-950: #440706;


    /* --bg-primary: var(--chalet-green-700);
    --bg-primary-hover: var(--chalet-green-800);
    --bg-light: var(--chalet-green-100);
    --bg-dark: var(--chalet-green-900);
    --bg-more-dark: var(--chalet-green-950);
    --bg-secondary: #212121;
    --btn-bg-secondary: var(--chalet-green-500); */

    --bg-primary: var(--chalet-orange-400);
    --bg-primary-hover: var(--chalet-orange-500);
    --bg-light: var(--chalet-orange-50);
    --bg-dark: var(--chalet-orange-600);
    --bg-more-dark: var(--chalet-orange-650);
    --bg-secondary: #212121;
    --btn-bg-secondary: var(--chalet-orange-300);
}

/* Body Style */
body {
    background-color: #f5f5f5;
    color: #212121;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

/* Material Icon Style */
.material-icons-round {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24
}

/* Header and Nav */

nav.main-nav {
    margin-top: 82px;
}

.navbar-brand {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

header .nav-item .nav-link {
    color: var(--bg-light);
    padding: 0.5rem 1rem;
    font-weight: 500;
    line-height: 24px;
    border-radius: 6px;
}

header .nav-item .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

nav .nav-item .nav-link {
    color: var(--bg-light);
    font-weight: 500;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.2rem;
    line-height: 24px;
    border-radius: 6px;
}

nav .nav-item .nav-link:hover {
    background: rgba(0, 0, 0, 0.2);
}

nav .dropdown-item.active,
nav .dropdown-item:active {
    background-color: #ff6833 !important;
    color: var(--bg-light) !important;
}

header .material-icons-round {
    font-size: 24px;
}

.header-logo {
    height: 50px;
}

.bg-ribs-blue {
    /* background-color: var(--bg-primary) !important; */
    background-color: #ff6833;
}

.ribs-search {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 1s linear;
}

.ribs-search input.form-control {
    border-color: #ffffff;
    transition: border-color box-shadow 0.3s linear;
    border-right: 0;
}

.ribs-search input.form-control:hover,
.ribs-search input.form-control:focus,
.ribs-search input.form-control:active {
    border-color: var(--bg-light);
}

.ribs-search:hover,
.ribs-search:focus,
.ribs-search:active {
    box-shadow: 0px 8px 3px rgba(0, 0, 0, 0.1);
}

.ribs-search .btn-primary {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border: thin solid var(--bg-light) !important;
    border-left: 0;
    color: #ff6833;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.ribs-search .btn-primary:hover,
.ribs-search .btn-primary:focus,
.ribs-search .btn-primary:active {
    background-color: #ffffff !important;
    color: #ff6833;
}

.ribs-search .btn-primary .material-icons-round {
    font-size: 24px;
}

.ribs-search:focus {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.ribs-dropdown .dropdown-menu li>.dropdown-item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-weight: 500;
    font-size: 15px;
    color: #212121;
}

.ribs-dropdown .dropdown-menu li>.dropdown-item .material-icons-round {
    font-size: 22px;
    margin-right: 1rem;
}

.ribs-dropdown .dropdown-toggle::after {
    margin-left: 1.25em;
}

/* User Account Dropdown */
.user-account-drop .dropdown-toggle::after {
    display: none !important;
}

.user-account-drop .dropdown-menu.show {
    width: 250px;
    padding: 16px;
}

.user-account-drop .dropdown-menu.show li {
    font-size: 14px;
}

.user-account-drop .dropdown-menu.show li .account-name {
    padding: 8px 16px;
}

.user-account-drop .dropdown-menu.show li>a.dropdown-item {
    padding: 8px 12px;
    border-radius: 8px;
}

.user-account-drop .dropdown-menu.show li>a.dropdown-item:active {
    background-color: #ff6833;
}

/* Sidebar */

/* The side navigation menu */
.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 4;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: #fff;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 10px;
    /* Place content 10px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}

/* Style the sidenav links and the dropdown button */
.sidenav a:not(.closebtn),
.dropdown-btn {
    display: flex;
    padding: 6px 24px 6px 24px;
    margin-bottom: 12px;
    text-decoration: none;
    font-size: 15px;
    color: #212121;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.dropdown-btn {
    justify-content: space-between;
}

/* On mouse-over */
.sidenav a:hover,
.dropdown-btn:hover {
    color: #444444;
}

.dropdown-container {
    display: none;
    padding-left: 8px;
    transition: display 0.1s linear;
}

.sidenav .dropdown-container a {
    padding: 6px 8px 6px 18px;
    margin-left: 30px;
}

.sidenav .dropdown-container a span.material-icons-round {
    margin-right: 6px;
}

/* Add an active class to the active dropdown button */
.sidenav .active {
    background-color: var(--bg-primary);
    color: white;
}

/* Position and style the close button (top right corner) */
.sidenav a.closebtn {
    position: absolute;
    top: 6px;
    right: 8px;
    padding: 6px;
    width: auto;
    line-height: 1;
    color: #212121;
}

.sidenav a.closebtn span.material-icons-round {
    font-size: 32px;
}

/* Slider */

.ribs-slide-main {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 2%;
    background-color: rgba(0, 0, 0, 0.5);
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ribs-slide-short {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 2%;
    background-color: rgba(0, 0, 0, 0.5);
    height: 240px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 45%;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    z-index: 1;
}

.slick-next {
    transform: translateX(-50px);
}

.slick-prev {
    transform: translateX(50px);
}

.slick-next:before {
    content: "arrow_forward";
    font-family: 'Material Icons Round';
    font-size: 32px;
}

.slick-prev:before {
    content: "arrow_back";
    font-family: 'Material Icons Round';
    font-size: 32px;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.item-image-slider .slick-prev,
.item-image-slider .slick-next {
    position: absolute;
    top: 45%;
    height: 32px;
    width: 32px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    z-index: 1;
}

.item-image-slider .slick-next {
    transform: translateX(-30px);
}

.item-image-slider .slick-prev {
    transform: translateX(30px);
}

.item-image-slider .slick-next:before {
    content: "arrow_forward";
    font-family: 'Material Icons Outlined';
    font-size: 24px;
}

.item-image-slider .slick-prev:before {
    content: "arrow_back";
    font-family: 'Material Icons Outlined';
    font-size: 24px;
}

.item-image-slider .slick-dots {
    position: relative;
    margin: 0 auto;
    width: 100px;
    bottom: 32px;
    background-color: rgba(0, 0, 0, 0.1);
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
}

.item-image-slider .slick-dots li {
    width: 12px;
    height: 6px;
}

.item-image-slider .slick-dots li button {
    background-color: rgba(0, 0, 0, 0.5);
    width: 12px;
    height: 6px;
    border-radius: 5px;
    padding: 1px;
}

.item-image-slider .slick-dots li.slick-active button {
    background-color: #000000;
}

.item-image-slider .slick-dots li button:before {
    content: '';
    width: 12px;
    height: 6px;
}

/* Buttons General */

.btn {
    padding-left: 2rem;
    padding-right: 2rem;
}

.btn-primary {
    background-color: var(--bg-primary);
    border-color: var(--bg-primary) !important;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary.active,
.btn-primary:active {
    background-color: var(--bg-primary-hover) !important;
}

.btn-primary:disabled {
    opacity: 0.5;
    background-color: var(--bg-light) !important;
    border-color: transparent;
}

.btn-secondary {
    background-color: var(--btn-bg-secondary);
    border-color: var(--btn-bg-secondary);
}

.btn-secondary.active,
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--bg-primary);
}

.btn-outline-primary {
    border-color: var(--bg-primary);
    color: var(--bg-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    background-color: var(--bg-primary-hover) !important;
    border-color: var(--bg-primary) !important;
    color: #ffffff;
}

.ribs-search .btn {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

[class^="btn btn-outline"],
[class^="btn btn-sm btn-outline"] {
    border: thin solid;
}

.text-primary {
    color: #ff6833 !important;
}

.border-primary {
    border-color: var(--btn-bg-secondary) !important;
}

/* Card General */

.card {
    transition: box-shadow 0.2s linear;
    border-radius: 8px;
    border: none;
}

.card:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.card .card-body a {
    text-decoration: none;
}

.card .card-body h5.card-title {
    color: #212121 !important;
    text-decoration: none;
}

.card.address-card {
    border: thin solid transparent;
}

/* Popular Products */

.featured-products-slider {
    margin-left: -6px;
    margin-right: -6px;
    max-height: 500px;
}

.featured-products-slider .card {
    margin: 18px 6px;
}

/* Popular Categories */

.popular-categories .card {
    border-color: rgba(0, 0, 0, 0.1);
}

.popular-categories span.material-icons-round {
    font-size: 48px !important;
    margin-bottom: 2rem;
}

.popular-categories a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #212121;
    border-radius: 8px;
    transition: background-color 0.3s linear;
}

/* .popular-categories a:hover {
    color: #ffffff;
    background-color: #556b2f;
} */

.popular-categories a h5 {
    font-size: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
}

/* Product Listing Page */

.product-listing-header {
    background-color: var(--bg-light);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.product-listing {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
    background-color: #fafafa;
    min-height: 50vh;
}

.product-listing .card {
    margin-bottom: 2rem;
}

.product-listing .card.single-item h5 {
    color: #212121;
}

.product-listing .card.single-item .single-item-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.product-listing .card.single-item .single-item-price .item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
}

.product-listing .card.single-item .single-item-price span.price-offer {
    background-color: #4CAF50;
    color: #ffffff;
    border-radius: 12px;
    line-height: 0.75rem;
    font-size: 0.75rem;
    padding: 3px 7px;
    margin-left: 6px;
}

.product-category-details {
    background: var(--chalet-green-50);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.product-category-details p {
    margin-bottom: 0px;
}

/* Product Item */
.product-item-breadcrumb {
    background-color: var(--bg-light);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.product-item-breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb li.breadcrumb-item {
    font-size: 13px;
}

.product-listing-header .breadcrumb a,
.product-item-breadcrumb .breadcrumb a {
    color: #ef2b07;
}

.product-item .card-body,
.product .card-body {
    padding-bottom: 0.3rem;
}

.product-item .card-footer,
.product .card-footer {
    background-color: #ffffff;
    border-top: none;
    padding-top: 0;
    padding-bottom: 1rem;
    margin-top: 6px;
}

.item-details {
    background-color: #ffffff;
}

.item-details .item-price {
    font-size: 2rem;
    font-weight: 600;
    color: #212121;
}

.item-details span.act-price {
    background-color: #bdbdbd;
    color: #212121;
    border-radius: 12px;
    line-height: 0.75rem;
    font-size: 0.75rem;
    padding: 3px 10px;
    text-decoration: line-through;
    font-weight: 500;
}

.item-details span.price-offer {
    background-color: #4CAF50;
    color: #ffffff;
    border-radius: 12px;
    line-height: 0.75rem;
    font-size: 0.75rem;
    padding: 3px 10px;
    margin-left: 6px;
}

.item-details .quantity-btns .btn {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-color: rgba(0, 0, 0, 0.2);
}

.item-details .quantity-btns input.qty-num {
    max-width: 80px;
    text-align: center;
}

/* Remove spinner in Webkit (Chrome, Safari) */
.item-details .quantity-btns input.qty-num::-webkit-inner-spin-button,
.item-details .quantity-btns input.qty-num::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Remove spinner in Firefox */
.item-details .quantity-btns input.qty-num {
    -moz-appearance: textfield;
}

.item-details .accordion-button:not(.collapsed) {
    background-color: #ffffff;
}

/* User Section */

.user-section-header {
    background-color: var(--bg-light);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.user-section-header .breadcrumb a {
    color: #ef2b07;
}

.user-section {
    background-color: #fafafa;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    min-height: 60vh;
}

.user-orders-list-item {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.user-orders-list-item a h6 {
    color: #212121;
}

.user-orders-list-item .det-imp {
    font-weight: 500;
}

.user-orders-list-item .btn {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.user-orders-list-item .quantity-btns .btn {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-color: rgba(0, 0, 0, 0.2);
}

.user-orders-list-item .quantity-btns input.qty-num {
    max-width: 60px;
    text-align: center;
}

.order-summary-card {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.order-summary-card .sub-total,
.order-summary-card .order-gst,
.order-summary-card .order-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.order-summary-card .order-total h5 {
    font-weight: 600;
}

/* Toast */
.toast.text-bg-primary {
    background-color: var(--btn-bg-secondary) !important;
    color: #ffffff;
}

.bg-primary {
    /* background-color: #556b2f !important; */
    background-color: #ff6833 !important;
}

/* Footer */

footer .footer-logo {
    padding: 2rem;
    background-color: var(--bg-light);
}

footer .footer-top {
    padding: 1rem 2rem 2rem 2rem;
    background-color: var(--bg-light);

}

footer .footer-top h5 {
    margin-bottom: 1.2rem;
    font-weight: 600;

}

footer .footer-top ul li {
    margin-bottom: 0.75rem;
}

footer .footer-top ul li a {
    text-decoration: none;
    color: var(--bg-dark);
    font-weight: 500;
    border-bottom: 1.75px solid transparent;
}

footer .footer-top ul li a:hover {
    border-bottom: 1.75px solid #616161;
}

footer .footer-top ul li a.contact-icon {
    display: flex;
    align-items: center;
}

footer .footer-top ul li a.contact-icon span.material-icons-round {
    font-size: 18px;
}

footer .footer-top ul li a.contact-icon div {
    padding: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    border-radius: 18px;
}

footer .footer-bottom {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

footer .footer-bottom p {
    margin-bottom: 0;
    font-weight: 600;
}

footer .footer-bottom .back-to-top:hover span.material-icons-round {
    animation: upDownShake 2s 2;
}

/* Media Queries */

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    main {
        margin-top: 118px;
    }

    .header-logo {
        height: 40px;
    }

    .btn {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .ribs-slide-main {
        height: 280px;
    }

    .user-section-header {
        padding: 3rem 1rem;
    }

    .product-listing {
        padding-top: 0.5rem;
    }

    .product-listing-header {
        padding: 1rem;
        padding-top: 1.5rem;
    }

    .mobile-filter {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 3 !important;
        width: 100%;
        height: 0px;
        overflow-x: hidden;
        transition: height 0.2s linear;
    }

    .mobile-filter .card {
        border-radius: 0;
    }

}

@media screen and (max-width:370px) {
    .header-logo {
        height: 50px;
    }

    header .nav-item .nav-link {
        padding: 0.70rem;
    }

    .user-account-drop .dropdown-menu.show {
        transform: translateY(60px) !important;
    }

    .btn {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Animation */

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-15px);
    }

    50% {
        transform: rotate(-45deg) translateX(15px);
    }

    75% {
        transform: translateX(-5px) rotate(0deg);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes ringing {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: rotate(45deg) translateY(-10px) translateX(-5px);
    }

    50% {
        transform: translateY(0) rotate(-15deg);
    }

    75% {
        transform: translateY(-5px) rotate(25deg);
    }
}

@keyframes upDownShake {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-10px);
    }

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

.order-tracking {
    text-align: center;
    width: 33.33%;
    position: relative;
    display: block;
}

.order-tracking .is-complete {
    display: block;
    position: relative;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    border: 0px solid #AFAFAF;
    background-color: var(--chalet-green-300);
    margin: 0 auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
    z-index: 2;
}

.order-tracking .is-complete:after {
    display: block;
    position: absolute;
    content: '';
    height: 14px;
    width: 7px;
    top: -2px;
    bottom: 0;
    left: 5px;
    margin: auto 0;
    border: 0px solid #AFAFAF;
    border-width: 0px 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

.order-tracking.completed .is-complete {
    border-color: #ff6833;
    border-width: 0px;
    background-color: #ff6833;
}

.order-tracking.completed .is-complete:after {
    border-color: #fff;
    border-width: 0px 3px 3px 0;
    width: 7px;
    left: 11px;
    opacity: 1;
}

.order-tracking p {
    color: #A4A4A4;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 20px;
}

.order-tracking p span {
    font-size: 14px;
}

.order-tracking.completed p {
    color: #212121;
}

.order-tracking::before {
    content: '';
    display: block;
    height: 3px;
    width: calc(100% - 40px);
    background-color: var(--chalet-green-300);
    top: 13px;
    position: absolute;
    left: calc(-50% + 20px);
    z-index: 0;
}

.order-tracking:first-child:before {
    display: none;
}

.order-tracking.completed:before {
    background-color: #ff6833;
}

/* NEW CSS FOR CONTACT US PAGE ADDRESS */

.locations-container .location-item {
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;
    padding: 18px !important;
    margin-bottom: 10px !important;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

.locations-container .location-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
}

.locations-container .location-header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 8px !important;
}

.locations-container .location-icon {
    width: 32px !important;
    height: 32px !important;
    background: #ff6833 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 16px !important;
    flex-shrink: 0 !important;
}

.locations-container .location-icon .material-icons-round {
    color: white !important;
    font-size: 20px !important;
}

.locations-container .location-name {
    font-weight: 600 !important;
    font-size: 18px !important;
    color: #212121 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.locations-container .location-address {
    color: #666 !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
    font-size: 15px !important;
}

.locations-container .contact-separator {
    height: 1px !important;
    background-color: #e5e5e5 !important;
    margin: 16px 0 !important;
}

.locations-container .contact-details {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.locations-container .contact-item {
    display: flex !important;
    align-items: center !important;
    font-size: 15px !important;
}

.locations-container .contact-item .material-icons-round {
    color: #ff6833 !important;
    margin-right: 8px !important;
    font-size: 18px !important;
}

.locations-container .contact-item a {
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.locations-container .contact-item a:hover {
    color: #ff6833 !important;
}

.locations-container .reach-us-header {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 32px !important;
    color: #212121 !important;
}

@media (max-width: 768px) {
    .locations-container .location-item {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }

    .locations-container .location-icon {
        width: 42px !important;
        height: 42px !important;
        margin-right: 14px !important;
    }

    .locations-container .location-name {
        font-size: 16px !important;
    }
}
