body {
    background-color: #FFFFFF;
    color: #1E1E1E !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

a {
    text-decoration: none !important;
    color: #1E1E1E !important;
}

a:hover {
    color: #1E1E1E !important;
}

ul {
    list-style-type: none !important;
}

.btn-primary-custom {
    background: #0C4009;
    padding: 12px 16px;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
}

.section-header .content-wraper {
    height: 102px;
    flex-wrap: wrap;
}

/* Search Box */
.search-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 38px;
}

.search-container .search-input {
    width: 100%;
    height: 100%;
    padding: 8px 16px;
    border-radius: 24px;
    background: #F4F4F4;
    border: none;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #1E1E1E;
    cursor: pointer;
}

/* User / Cart */
.user-container .register-btn {
    padding: 8px 12px;
    background: #EEEEEE;
    border-radius: 24px;
    font-size: 14px;
}

.user-container .register-btn .user-icon {
    width: 14px;
    height: 14px;
}

.user-container .cart-btn {
    padding: 8px 12px;
    background: #EEEEEE;
    border-radius: 24px;
}

.user-container .cart-btn .cart-icon {
    width: 20px;
    height: 20px;
}

.user-container .cart-btn .cart-count {
    background-color: rgb(10, 163, 46);
    color: #EEEEEE;
    font-size: 10px;
    padding: 1px;
    border-radius: 50%;
    margin-left: -7px;
    margin-top: -11px;
}

/* Navigation */
.nav-bg {
    width: 100%;
    background-color: #0C4009;
}

.nav-link-wrapper {
    background: #0C4009;
    height: 50px;
    padding: 0 10px; /* reduce padding for small screens */
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link-wrapper a {
    font-size: 16px;
    color: white !important;
    padding: 10px 15px;
}

.nav-link-wrapper a:hover, 
.nav-link-wrapper a.active {
    color: #b0adad !important;
}

.navbar-toggler, .navbar-toggler:active, .navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Home */
.section-title {
    font-size: 32px;
    font-weight: 600 !important;
}

.view-all-title {
    font-size: 16px;
    font-weight: 500 !important;
    margin-bottom: unset !important;
    margin-right: 8px !important;
}

.view-all-icon {
    width: 24px;
    height: 24px;
}

.product-card {
    max-height: 447px;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
}
.product-card .product-image-wraper {
    border-radius: 12px;
    background: #F5EFE2;
    height: 227px;
    gap: 10px;
    position: relative;
}

.product-card .product-image-wraper .badge {
    position: absolute;
    background: #FFFFFF;
    padding: 4px 8px;
    width: fit-content;
    height: 29px;
    border-radius: 24px;
    bottom: 10px;
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    color: #C05509;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.16));
}
.product-card .product-title {
    color: #202020;
    font-size: 18px;
    font-weight: 500;
    gap: 8px;
    line-height: 100%;
}
.product-card .description-wraper {
    margin-top: 15px;
}
.product-card .description-wraper .product-pricing-wraper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 4px;
}
.product-card .description-wraper .product-pricing-wraper .product-price {
    flex-grow: 1;
}
.product-card .description-wraper .product-pricing-wraper .product-price .text-regular {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #202020;
}
.product-card .description-wraper .product-pricing-wraper .product-price .text-strick {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
    color: #808080;
}
.product-card .description-wraper .product-pricing-wraper .product-discount-percent {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0A9D01;
}
.product-card .description-wraper .rating-wraper {
    display: flex;
    margin-top: 15px;
    align-items: center;
}
.product-card .description-wraper .rating-wraper .rating-star {
    border-radius: 16px;
    height: fit-content;
    width: fit-content;
    padding: 4px 6px;
    background: #F0AC22;
    font-size: 14px;
    margin-right: 10px;
}
.product-card .description-wraper .rating-count {
    color: #808080;
}
.product-btn {
    margin-top: 30px;
    font-weight: 300;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: unset;
    cursor: pointer;
}
.product-card .product-cart-icon {
    margin-left: 10px;
    width: 14px;
}

/* Card container */
.selection-card {
    position: relative;
    height: 231px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    background: #F5EFE2;
}

/* Image fixed to the right end */
.selection-image {
    position: absolute;
    top: 0;
    right: 0;                   /* pin to right */
    bottom: 0;
    height: 100%;
    object-fit: contain;        /* show full image, no cropping */
    transform: rotate(180deg);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 1;
}

/* Text overlay on left */
.selection-overlay {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    max-width: 60%;
    /* background: rgba(245,239,226,0.7); */
    border-radius: 16px 0 0 16px;
}
.selection-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #0C4009;
    word-break: break-word;
}
.selection-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #0C4009;
    margin-bottom: 0.5rem;
}
.selection-icon {
    width: 56px;
    height: auto;
    margin-top: 1rem;
}


/* card styling */
.spice-card {
    width: 192px;
    height: 192px;
    background: #F5EFE2;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* title under each card */
.spice-name {
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    margin-top: 8px;
}

/* ensure fixed width columns with 10px gutters */
.spice-col {
    flex: 0 0 auto;
    width: 192px;
    margin-bottom: 10px;
}


/* Heading */
.what-we-serve {
    margin-top: 9em;
    margin-bottom: 3em;
}

.serve-heading {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #0A9D01;
}

.serve-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

.serve-col {
    flex: 0 0 234px; /* fixed width */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Gap between columns handled by Bootstrap gap-4 (1.5rem) */

/* Icon */
.serve-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Title */
.serve-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    color: #000000;
    margin-bottom: 0.5rem;
}

/* Subtitle */
.serve-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #000000;
}

/* Footer */

.footer-section {
    width: 100%;
    background: #FDFDFD;
    height: 324px; /* main footer height */
}

.footer-main {
    display: flex;
    justify-content: space-between;
    height: calc(100% - 72px); /* leave space for copyright */
    flex-wrap: wrap;
    padding: 40px 120px;
}

/* Footer Column */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 250px;
}

/* Logo */
.footer-logo {
    width: 82px;
}

/* Footer Description */
.footer-desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #292929;
}

/* Column Heading */
.footer-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2AB722;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #292929;
}

.footer-links li a {
    text-decoration: none;
    color: #292929;
}

.footer-links li a:hover {
    text-decoration: underline;
}

/* Contact Icons */
.footer-links li i {
    color: #2AB722;
}

.footer-copy {
    border-top:1px solid #DCDCDC;
    padding: 24px 120px;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #292929; /* default icon color */
    font-size: 16px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #2AB722; /* hover color */
}


/* Product */
.text-green {
    color: #2AB722;
}
.section-main {
    padding: 20px 120px;
}

.filter-section {
    border: 1px solid #EEEEEE;
    border-radius: 16px;
}

.filter-left,
.filter-right {
    gap: 0;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 120px;
}

.filter-left .filter-item {
    padding: 0 16px;
}

.filter-left .filter-item:first-child {
    padding-left: 0;
}

.filter-left .filter-item:not(:last-child) {
    border-right: 1px solid #EEEEEE;
}

.filter-label-row h6 {
    font-size: 14px;
}

.filter-label-row i {
    font-size: 12px;
}

.filter-item .form-select {
    border: none;
    padding: 0;
    box-shadow: none;
    background-image: none;
    font-size: 13px;
    line-height: 1.4;
    width: 100%;
}

.filter-item .form-select:focus {
    border: none;
    box-shadow: none;
}

/* FAQ */
.faq-page .faq-intro,
.faq-page .faq-intro .section-title,
.faq-page .faq-description {
    font-family: "Inter", sans-serif;
}

.faq-page .faq-description {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-size: 14px;
}
.faq-content-wrap {
    --bs-gutter-x: 6rem !important;
}

.faq-left-title {
    background-color: #F1F1F3;
    font-weight: 700;
    padding: 14px 16px;
    border-radius: 10px 10px 10px 10px;
}

.faq-left-menu {
    padding-left: 0;
}

.faq-tab-link {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border: none;
    border-bottom: 1px solid #D9D9D9;
    background: transparent;
    color: #1E1E1E;
}

.faq-tab-link:last-child {
    border-bottom: 1px solid #D9D9D9;
}

.faq-tab-link.active {
    font-weight: 600;
}

.faq-tab-link:focus,
.faq-tab-link:hover {
    color: #1E1E1E;
    background: transparent;
    box-shadow: none;
}

.faq-left-menu li {
    padding: 14px 16px;
    border-bottom: 1px solid #D9D9D9;
}

.faq-left-menu li:last-child {
    border-bottom: none;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #D9D9D9;
    border-radius: 0;
}

.faq-accordion,
.faq-accordion .accordion-item,
.faq-accordion .accordion-header,
.faq-accordion .accordion-button,
.faq-accordion .accordion-collapse {
    border-radius: 0 !important;
}

.faq-accordion .accordion-item:first-child {
    border-top: 1px solid #D9D9D9;
}

.faq-accordion .accordion-item:last-of-type,
.faq-accordion .accordion-item:last-of-type .accordion-button.collapsed,
.faq-accordion .accordion-item:last-of-type .accordion-collapse,
.faq-accordion .accordion-item:last-of-type .accordion-body {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.faq-accordion .accordion-button {
    padding: 16px 0;
    background-color: transparent;
    color: #1E1E1E;
    box-shadow: none;
    font-weight: 500;
    font-size: 18px;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #1E1E1E;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    padding: 0 0 16px;
    color: #1E1E1E;
    line-height: 1.6;
    font-size: 14px;
}

.faq-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    font-size: 20px;
    line-height: 1;
    color: #303A42;
}

.faq-accordion .accordion-button .icon-plus {
    display: none;
}

.faq-accordion .accordion-button .icon-minus {
    display: inline;
}

.faq-accordion .accordion-button.collapsed .icon-plus {
    display: inline;
}

.faq-accordion .accordion-button.collapsed .icon-minus {
    display: none;
}

/* About */
.about-cover-section {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-cover-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cover-content {
    color: #FFFFFF;
}

.about-cover-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-cover-subtitle {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
}

.about-story-section {
    text-align: left;
}

.about-story-title {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-story-description {
    line-height: 1.7;
    font-weight: 300;
}

.about-story-image {
    width: 100%;
    height: 500px !important;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.about-cta-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-cta-title {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.about-cta-button {
    background-color: #F0AC22;
    color: #1E1E1E !important;
    padding: 16px;
    border-radius: 8px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
}

.about-cta-button:hover {
    color: #1E1E1E !important;
}

.about-different-section {
    position: relative;
}

.about-different-content {
    z-index: 1;
    align-items: center;
}

.about-different-main-image {
    width: 100%;
    height: 450px !important;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.about-feature-card {
    position: relative;
    z-index: 1;
    text-align: left;
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    color: #0C4009;
    margin-bottom: 14px;
}

.about-feature-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 10px;
}

.about-feature-description {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.about-different-bg {
    position: absolute;
    width: 348.1841px;
    height: 325px;
    object-fit: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.about-different-bg-left {
    left: 20px;
    top: 440px;
    transform: rotate(45deg);
}

.about-different-bg-right {
    right: 50px;
    top: 140px;
    transform: rotate(-45deg);
}

.about-experience-section {
    margin-top: 5rem;
}

.about-experience-box {
    width: 100%;
    background-color: #EEFFED;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-experience-title {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 0;
}

.about-experience-description {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
}

/* Contact */
.contact-cover-section {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-cover-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cover-content {
    color: #FFFFFF;
}

.contact-cover-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-cover-subtitle {
    font-size: 18px;
    line-height: 1.4;
}

.contact-intro-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info-panel,
.contact-form-panel {
    border: 1px solid #EEEEEE;
    border-radius: 24px;
    padding: 32px;
    background-color: #FFFFFF;
}

.contact-panel-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
}

.contact-info-item {
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #EEEEEE;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #EEFFED;
    color: #0C4009;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-heading {
    font-size: 16px;
    font-weight: 600;
}

.contact-info-text {
    font-size: 15px;
    line-height: 1.6;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
}

.contact-input {
    height: 46px;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 12px;
    box-shadow: none !important;
}

textarea.contact-input {
    height: auto;
    min-height: 130px;
    resize: vertical;
}

.contact-input:focus {
    border-color: #0C4009;
}

.contact-submit-btn {
    border: none;
    background-color: #0C4009;
    color: #FFFFFF;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}

.contact-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 878px) {
    .section-main {
        padding: 20px 16px;
    }

    .contact-cover-section {
        height: 250px;
    }

    .contact-cover-title {
        font-size: 36px;
    }

    .contact-cover-subtitle {
        font-size: 15px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 22px;
    }

    .contact-panel-title {
        font-size: 24px;
    }

    .about-experience-box {
        padding: 28px 20px;
        min-height: auto;
    }

    .about-experience-title {
        font-size: 30px;
    }

    .about-story-image {
        height: auto;
    }

    .about-cta-title {
        font-size: 28px;
    }

    .about-different-main-image {
        min-height: auto;
        height: auto;
    }

    .about-different-bg {
        width: 220px;
        height: auto;
    }

    .about-different-bg-left {
        left: -110px;
        top: 360px;
    }

    .about-different-bg-right {
        right: -110px;
        top: 120px;
    }

    .filter-section {
        flex-direction: column;
        align-items: stretch !important;
        gap: 16px;
    }

    .filter-left {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .filter-left .filter-item {
        min-width: 0;
        padding: 0 10px 0 0;
    }

    .filter-left .filter-item:nth-child(2n) {
        padding: 0 0 0 10px;
    }

    .filter-left .filter-item:not(:last-child) {
        border-right: none;
    }

    .filter-left .filter-item:nth-child(odd) {
        border-right: 1px solid #EEEEEE;
    }

    .filter-right {
        width: 100%;
    }

    .filter-right .filter-item {
        min-width: 0;
        width: 100%;
    }

    .filter-right .filter-label-row {
        justify-content: flex-start !important;
    }
}

@media (max-width: 400px) {
    .filter-left {
        grid-template-columns: 1fr;
    }

    .filter-left .filter-item,
    .filter-left .filter-item:nth-child(2n) {
        padding: 0;
        border-right: none;
    }
}

/* Responsive adjustment */

@media (max-width: 1399px) {
    .product-card {
        max-height: 466px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .product-card .product-image-wraper {
        height: 185px;
    }
    
    .product-card .product-title {
        font-size: 16px;
    }

    .product-card .description-wraper .product-pricing-wraper .product-price .text-regular, .product-card .description-wraper .product-pricing-wraper .product-price .text-strick {
        font-size: 17px;
    }

    .product-card .description-wraper .product-pricing-wraper .product-discount-percent {
        font-size: 12px;
    }
}

@media (max-width: 1199px) {
    .selection-card {
        height: 123px;
    }
  
    .selection-image {
        width: 45%;          /* instead of full height */
        height: auto;        /* keep proportion */
    }
  
    .selection-overlay {
        max-width: 55%;      /* give text more space */
        padding: 1rem;
    }
  
    .selection-title {
        font-size: 16px;
    }
  
    .selection-subtitle {
        font-size: 12px;
        margin-bottom: 0.25rem;
    }
  
    .selection-icon {
        width: 24px;
    }
}

@media (max-width: 992px) { /* medium screens */
    .section-header .content-wraper {
        height: auto;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .search-container {
        max-width: 100%;
        order: 2;
    }

    .user-container {
        order: 3;
        justify-content: flex-end;
        width: 100%;
    }

    .logo {
        order: 1;
    }

    .nav-link-wrapper {
        padding: 0 5px;
    }

    .nav-link-wrapper {
        flex-direction: column !important;
        align-items: flex-start;
        width: 100%;
        padding: 10px 0;
        height: auto;
    }

    .nav-link-wrapper a {
        display: block;
        padding: 12px 20px;
        width: 100%;
    }

    .product-card .product-image-wraper .badge {
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .view-all-title {
        font-size: 14px;
    }

    .view-all-icon {
        width: 22px;
    }

    .product-card .product-title {
        font-size: 16px;
    }

    .product-card .description-wraper .product-pricing-wraper .product-price .text-regular {
        font-size: 18px;
    }

    .product-card .description-wraper .product-pricing-wraper .product-price .text-strick {
        font-size: 18px;
    }

    .btn-primary-custom {
        font-size: 15px;
    }

    .selection-card {
        height: 90px;
    }

    .selection-icon {
        display: none;
    }

    .spice-col {
        width: 170px;
    }

    .spice-card {
        width: 170px;
        height: 170px;
    }

    .spice-name {
        font-size: 16px;
    }

    .serve-heading {
        font-size: 28px;
    }
    
    .serve-description {
        font-size: 15px;
    }
    
    .serve-title {
        font-size: 24px;
    }

    .serve-subtitle {
        font-size: 15px;
    }

    .serve-col {
        flex: 0 0 45%;
    }

    .footer-main {
        flex-direction: column;
        padding: 40px 40px;
        height: auto;
    }
    .footer-col {
        margin-bottom: 20px;
    }

    .footer-copy {
        display: flex;
        flex-direction: column-reverse;
        padding: 24px 0;
    }
}

@media (max-width: 767px) {
    .selection-card {
        height: 140px;
    }
    
    .selection-image {
        height: 100%;
    }

    .selection-title {
        font-size: 22px;
    }
  
    .selection-subtitle {
        font-size: 15px;
    }
  
    .selection-icon {
        display: block;
        width: 40px;
        margin-top: 0;
    }

    .footer-copy {
        gap: 12px;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) { /* small screens */
    .serve-col {
        flex: 0 0 100%; /* full width */
    }
}