:root {
    --b1t1-brown: #C59D62;
    --b1t1-brown-dark: #A4773D;
    --b1t1-white: #FFFFFF;
    --b1t1-text: #3F3F3F;
    --b1t1-muted: #2F2F32;
    --b1t1-cream: #FFF8E2;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--b1t1-text);
    background-color: var(--b1t1-white);
    background-image: url("images/colored-coffee-farm.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    font-family: Inter, Arial, sans-serif;
}

body.shop-modal-open {
    overflow: hidden;
}

main {
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Header.php */
.site-header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
    height: 80px;
    background: var(--b1t1-white);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.12);
}

.b1t1-navbar {
    width: 100%;
    max-width: 1640px;
    height: 80px;
    margin: 0 auto;
    padding: 0;
    background: var(--b1t1-white);
}

.b1t1-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0 0 0 40px;
    padding: 0;
    text-decoration: none;
}

.b1t1-brand img,
.site-footer-logo {
    display: block;
    width: 350px;
    height: 32.129px;
    flex-shrink: 0;
    aspect-ratio: 512 / 47;
    object-fit: fill;
}

.b1t1-brand span,
.site-footer-text-logo {
    margin: 0;
    color: var(--b1t1-brown);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.b1t1-nav-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: flex-end;
    margin-right: 40px;
}

.b1t1-header-actions {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 16px;
    margin-left: auto;
}

.b1t1-header-action {
    display: grid;
    justify-items: center;
    gap: 3px;
    color: var(--d-gray-primary-404040, #404040);
    text-decoration: none;
}

.b1t1-header-action:hover,
.b1t1-header-action:focus-visible {
    color: var(--d-gray-primary-404040, #404040);
}

.b1t1-header-action-box {
    position: relative;
    display: flex;
    height: 40px;
    padding: 0 11px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: #F3F4F6;
    color: #71717A;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.b1t1-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    display: inline-flex;
    min-width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--b1t1-white);
    border-radius: 999px;
    background: #C43D2C;
    color: var(--b1t1-white);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.b1t1-cart-count[hidden] {
    display: none;
}

.b1t1-header-action:hover .b1t1-header-action-box,
.b1t1-header-action:focus-visible .b1t1-header-action-box,
.b1t1-header-action.is-active .b1t1-header-action-box {
    background: var(--brown-default-c-59-d-62, #C59D62);
    color: var(--b1t1-white);
}

.b1t1-header-action:hover .b1t1-header-action-box,
.b1t1-header-action:focus-visible .b1t1-header-action-box {
    transform: translateY(-1px);
}

.b1t1-header-action.is-active:hover .b1t1-header-action-box,
.b1t1-header-action.is-active:focus-visible .b1t1-header-action-box {
    background: var(--b1t1-brown-dark);
}

.b1t1-header-action-label {
    color: var(--d-gray-primary-404040, #404040);
    text-align: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.b1t1-floating-actions {
    display: none;
}

/* index.php */
.home-banner {
    position: relative;
    width: min(1640px, 100%);
    height: 520px;
    margin: 0 auto 60px;
    overflow: hidden;
    background: var(--b1t1-cream);
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.home-banner.is-dragging {
    cursor: grabbing;
}

.home-banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    transition: transform 420ms ease;
    will-change: transform;
}

.home-banner.is-dragging .home-banner-track {
    transition: none;
}

.home-banner-slide {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.home-banner-dots {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.home-banner-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
}

.home-banner-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--b1t1-brown);
}

.home-order-intro {
    width: min(100%, 1640px);
    margin: 0 auto 50px;
    padding: 0 24px;
    text-align: center;
}

.home-order-intro h1 {
    width: 668px;
    max-width: 100%;
    min-height: 44px;
    margin: 0 auto 5px;
    color: var(--b1t1-brown);
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.home-order-intro p {
    width: 816px;
    max-width: 100%;
    min-height: 48px;
    margin: 0 auto;
    color: var(--b1t1-muted);
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.home-products {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto 50px;
}

.home-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.home-product-card {
    width: 250px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.home-product-card:hover .home-product-image-box,
.home-product-card:focus-visible .home-product-image-box {
    border-color: rgba(197, 157, 98, 0.55);
    box-shadow: 0 12px 24px rgba(47, 47, 50, 0.14);
    transform: translateY(-3px);
}

.home-product-card:focus-visible {
    outline: 2px solid rgba(197, 157, 98, 0.5);
    outline-offset: 6px;
}

.home-product-image-box {
    display: flex;
    width: 250px;
    height: 333.33334px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(197, 157, 98, 0.18);
    border-radius: 12px;
    background: linear-gradient(180deg, #FFFEF2 0%, #FFFFD7 100%);
    box-shadow: 0 3px 10px rgba(47, 47, 50, 0.08);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-product-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-product-info {
    padding-top: 12px;
}

.home-product-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.home-product-heading h2,
.home-product-heading p,
.home-product-description,
.home-products-message {
    font-family: Inter, Arial, sans-serif;
}

.home-product-heading h2 {
    margin: 0;
    color: var(--b1t1-muted);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.home-product-heading p {
    flex: 0 0 auto;
    margin: 0;
    color: var(--b1t1-brown);
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.home-product-description {
    display: -webkit-box;
    min-height: 44px;
    margin: 4px 0 0;
    overflow: hidden;
    color: var(--b1t1-muted);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-products-message {
    margin: 0;
    color: var(--b1t1-muted);
    text-align: center;
    font-size: 16px;
    line-height: 150%;
}

.shop-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(47, 47, 50, 0.42);
}

.shop-modal.is-open {
    display: flex;
}

.shop-modal-panel {
    width: min(520px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    overflow: auto;
    border-radius: 8px;
    background: var(--b1t1-white);
    box-shadow: 0 24px 60px rgba(47, 47, 50, 0.22);
}

.shop-product-modal {
    width: min(760px, 100%);
}

.shop-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 16px;
    border-bottom: 1px solid rgba(47, 47, 50, 0.1);
}

.shop-modal-header h2 {
    margin: 0;
    color: var(--b1t1-brown);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.shop-modal-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 6px;
    background: #F3F4F6;
    color: #404040;
    font-size: 24px;
    line-height: 1;
}

.shop-product-detail {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
}

.shop-product-detail-image-box {
    display: flex;
    width: 100%;
    min-height: 340px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(197, 157, 98, 0.18);
    border-radius: 12px;
    background: linear-gradient(180deg, #FFFEF2 0%, #FFFFD7 100%);
}

.shop-product-detail-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-product-detail-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 16px;
}

.shop-product-detail-copy p {
    margin: 0;
    color: var(--b1t1-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 150%;
}

.shop-product-detail-copy .shop-product-detail-meta {
    color: #71717A;
    font-size: 13px;
}

.shop-product-detail-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(47, 47, 50, 0.1);
    border-bottom: 1px solid rgba(47, 47, 50, 0.1);
    color: var(--b1t1-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
}

.shop-product-detail-price strong {
    color: var(--b1t1-brown);
}

.shop-product-detail-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-product-detail-qty button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 6px;
    background: #F3F4F6;
    color: #404040;
    font-size: 20px;
    line-height: 1;
}

.shop-product-detail-qty span {
    min-width: 28px;
    color: var(--b1t1-muted);
    text-align: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.shop-cart-items,
.shop-payment-form {
    display: grid;
    gap: 16px;
    padding: 20px 24px;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.shop-cart-item img {
    width: 64px;
    height: 82px;
    border-radius: 6px;
    background: #FFFEF2;
    object-fit: contain;
}

.shop-cart-item h3,
.shop-cart-item p {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
}

.shop-cart-item h3 {
    color: var(--b1t1-muted);
    font-size: 16px;
    font-weight: 700;
}

.shop-cart-item p {
    color: #5F5F66;
    font-size: 13px;
    line-height: 150%;
}

.shop-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-cart-item-qty button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 6px;
    background: #F3F4F6;
    color: #404040;
    font-size: 18px;
    line-height: 1;
}

.shop-cart-item-qty span {
    min-width: 18px;
    color: var(--b1t1-muted);
    text-align: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.shop-cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 24px;
    padding: 18px 0;
    border-top: 1px solid rgba(47, 47, 50, 0.1);
    color: var(--b1t1-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
}

.shop-cart-summary strong {
    color: var(--b1t1-brown);
}

.shop-primary-button {
    display: flex;
    width: calc(100% - 48px);
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin: 0 24px 24px;
    border: 0;
    border-radius: 6px;
    background: var(--b1t1-brown);
    color: var(--b1t1-white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.shop-primary-button:not(:disabled):hover,
.shop-primary-button:not(:disabled):focus-visible {
    background: var(--b1t1-brown-dark);
    box-shadow: 0 10px 20px rgba(47, 47, 50, 0.16);
    transform: translateY(-1px);
}

.shop-primary-button:disabled {
    background: #D6D6D6;
    cursor: not-allowed;
}

.shop-primary-button.shop-product-add-button {
    width: 100%;
    margin: auto 0 0;
}

.shop-empty-message {
    margin: 0;
    color: #5F5F66;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 150%;
}

.shop-payment-form label {
    display: grid;
    gap: 8px;
}

.shop-payment-form label span,
.shop-payment-methods legend {
    color: var(--b1t1-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.shop-payment-form input[type="text"],
.shop-payment-form textarea {
    width: 100%;
    border: 1px solid rgba(47, 47, 50, 0.16);
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--b1t1-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
}

.shop-payment-methods {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

.shop-payment-method {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(47, 47, 50, 0.12);
    border-radius: 6px;
    cursor: pointer;
}

.shop-payment-method:has(input:checked) {
    border-color: var(--b1t1-brown);
    background: rgba(197, 157, 98, 0.1);
}

.shop-payment-method span {
    display: grid;
    gap: 2px;
}

.shop-payment-method small {
    color: #71717A;
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
}

.shop-payment-error {
    border-radius: 6px;
    padding: 10px 12px;
    background: #FEE2E2;
    color: #991B1B;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 150%;
}

.shop-slide-pay {
    position: relative;
    height: 54px;
    overflow: hidden;
    border-radius: 999px;
    background: #FFF6E8;
    color: #71717A;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 54px;
    text-align: center;
    user-select: none;
}

.shop-slide-pay.is-ready,
.shop-slide-pay.is-submitting {
    background: rgba(197, 157, 98, 0.18);
    color: var(--b1t1-brown);
}

.shop-slide-thumb {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #E9570B;
    box-shadow: 0 0 0 8px rgba(233, 87, 11, 0.14), 0 14px 26px rgba(233, 87, 11, 0.24);
    cursor: grab;
    transition: transform 160ms ease;
}

.shop-slide-thumb::after {
    display: block;
    color: var(--b1t1-white);
    content: "\00BB";
    font-family: Inter, Arial, sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 44px;
    text-align: center;
    transform: translateY(-2px);
}

.page-section {
    width: min(1640px, 100%);
    min-height: calc(100vh - 280px);
    margin: 0 auto;
    padding: 80px 40px;
}

.page-section h1 {
    margin: 0 0 16px;
    color: var(--b1t1-brown);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.05;
}

.page-section p {
    max-width: 620px;
    margin: 0 0 32px;
    color: var(--b1t1-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

.page-section {
    min-height: calc(100vh - 280px);
    padding: 80px 40px;
}

/* Footer.php */
.site-footer {
    background: var(--b1t1-brown);
    color: var(--b1t1-white);
}

.site-footer-inner {
    max-width: 1640px;
    margin: 0 auto;
    padding: 40px 36px 12px;
    font-size: 14px;
}

.site-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.site-footer-brand {
    flex: 1 1 auto;
    display: grid;
    justify-items: start;
    gap: 8px;
    margin-left: 0;
}

.site-footer-logo {
    filter: brightness(0) invert(1);
}

.site-footer-text-logo {
    color: var(--b1t1-white);
}

.site-footer-description {
    width: 565px;
    max-width: 100%;
    margin: 8px 0 0;
    color: var(--b1t1-white);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    white-space: nowrap;
}

.site-footer-social {
    flex: 0 0 auto;
    text-align: right;
}

.site-footer-social-title {
    margin: 0 0 10px;
    color: var(--b1t1-white);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.site-footer-social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.site-footer-social-link {
    display: inline-flex;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    color: var(--b1t1-white);
    text-decoration: none;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-footer-social-link svg {
    display: block;
    flex-shrink: 0;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus-visible {
    color: var(--b1t1-white);
    opacity: 0.86;
    transform: translateY(-1px);
}

.site-footer-social-link.facebook {
    background: #1977F3;
    border-radius: 8px;
}

.site-footer-social-link.tiktok {
    background: #000000;
    border-radius: 8px;
}

.site-footer-social-link.gmail {
    gap: 7px;
}

.site-footer-divider {
    height: 1px;
    margin: 40px 4px 10px;
    background: rgba(255, 255, 255, 0.65);
}

.site-footer-copyright {
    margin: 0;
    color: var(--b1t1-white);
    text-align: center;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

/* Header.php and Footer.php mobile view */
@media (max-width: 991.98px) {
    .site-header,
    .b1t1-navbar {
        height: auto;
        min-height: 80px;
    }

    main {
        padding-top: 94px;
    }

    .b1t1-navbar {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 24px;
    }

    .b1t1-brand img {
        width: min(285px, calc(100vw - 190px));
        min-width: 168px;
        height: 26.18px;
        aspect-ratio: 512 / 47;
    }

    .b1t1-brand span {
        max-width: 68vw;
        font-size: 26px;
    }

    .b1t1-brand {
        margin-left: 0;
    }

    .b1t1-nav-collapse {
        display: none !important;
    }

    .b1t1-floating-actions {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 1040;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .b1t1-floating-actions .b1t1-header-action {
        gap: 4px;
    }

    .b1t1-floating-actions .b1t1-header-action-box {
        width: 58px;
        height: 58px;
        padding: 0;
        border-radius: 50%;
        background: var(--b1t1-brown);
        color: var(--b1t1-white);
        box-shadow: 0 12px 26px rgba(47, 47, 50, 0.2);
    }

    .b1t1-floating-actions .b1t1-header-action:hover .b1t1-header-action-box,
    .b1t1-floating-actions .b1t1-header-action:focus-visible .b1t1-header-action-box {
        background: var(--b1t1-brown-dark);
        color: var(--b1t1-white);
    }

    .b1t1-floating-actions .b1t1-header-action-label {
        display: none;
    }

    .home-banner {
        height: auto;
        min-height: 0;
        aspect-ratio: 2668 / 963;
    }

    .home-banner-slide {
        object-fit: contain;
    }

    .home-products {
        width: min(830px, calc(100% - 48px));
    }

    .page-section {
        padding: 64px 24px;
    }

    .site-footer-main {
        flex-direction: column;
    }

    .site-footer-social {
        text-align: left;
    }

    .site-footer-social-links {
        justify-content: flex-start;
    }

    .site-footer-description {
        white-space: normal;
    }
}

@media (max-width: 767.98px) {
    .site-footer-inner {
        width: 100%;
        max-width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        overflow: hidden;
    }

    .site-footer-main,
    .site-footer-social {
        width: 100%;
        max-width: 100%;
    }

    .site-footer-brand {
        width: 100%;
        max-width: 100%;
    }

    .site-footer-logo {
        width: min(350px, 100%);
        height: auto;
        max-width: 100%;
        aspect-ratio: 512 / 47;
    }

    .site-footer-text-logo {
        font-size: 28px;
    }

    .site-footer-description {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .site-footer-social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    main {
        padding-top: 86px;
    }

    .b1t1-navbar {
        gap: 10px;
        padding: 14px 16px;
    }

    .b1t1-brand img {
        width: min(240px, calc(100vw - 158px));
        min-width: 145px;
        height: 22.03px;
    }

    .b1t1-floating-actions {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .b1t1-floating-actions .b1t1-header-action-box {
        width: 54px;
        height: 54px;
    }

    .home-banner {
        margin-bottom: 40px;
    }

    .home-order-intro {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .home-products {
        width: min(250px, calc(100% - 40px));
        margin-bottom: 50px;
    }

    .home-product-grid {
        justify-content: center;
    }

    .home-product-card,
    .home-product-image-box {
        width: 100%;
    }

    .home-product-image-box {
        height: auto;
        aspect-ratio: 250 / 333.33334;
    }

    .shop-product-detail {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .shop-product-detail-image-box {
        min-height: 280px;
    }

    .home-order-intro h1,
    .page-section h1 {
        font-size: 26px;
    }

    .home-order-intro p,
    .page-section p {
        font-size: 17px;
    }

    .page-section {
        padding: 56px 20px;
    }
}
