.herbano-products {
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
    font-family: inherit;
    box-sizing: border-box;
}
.herbano-products__heading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 18px 0;
    padding: 0;
    line-height: 1.3;
}
.herbano-products__viewport {
    position: relative;
    padding: 0 48px;
    box-sizing: border-box;
}
.herbano-products__grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.herbano-products__grid::-webkit-scrollbar { display: none; width: 0; height: 0; }
.herbano-products__card {
    flex: 1 0 220px;
    min-width: 220px;
    max-width: 360px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.herbano-products__card:hover {
    border-color: #467c48;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}
.herbano-products__image-wrap {
    width: 100%;
    height: 220px;
    background: #fafafa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px 0;
    overflow: hidden;
    padding: 12px;
    box-sizing: border-box;
}
.herbano-products__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.herbano-products__title {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 14px 0;
    padding: 0;
    line-height: 1.35;
    display: block;
    width: 100%;
    text-align: center;
}
.herbano-products--slider .herbano-products__price {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #467c48;
    margin: 0 0 12px 0;
    line-height: 1.2;
}
.herbano-products__button {
    background: #467c48;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin: auto auto 0 auto;
    transition: background 0.2s ease;
    display: inline-block;
    line-height: 1.3;
    text-align: center;
}
.herbano-products__card:hover .herbano-products__button { background: #3a6b3c; }
.herbano-products--slider {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px 16px;
    box-sizing: border-box;
}
.herbano-products--slider .herbano-products__heading { margin: 0 0 18px 0; }
.herbano-products__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin: 0;
    line-height: 0;
    color: transparent;
    font-size: 0;
    overflow: hidden;
    display: block;
}
.herbano-products__nav:hover { background: #467c48; border-color: #467c48; }
.herbano-products__nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transition: border-color 0.2s ease;
    display: block;
}
.herbano-products__nav:hover::before { border-right-color: #ffffff; border-bottom-color: #ffffff; }
.herbano-products__nav--prev { left: 4px; }
.herbano-products__nav--prev::before { transform: translate(-30%, -50%) rotate(135deg); }
.herbano-products__nav--next { right: 4px; }
.herbano-products__nav--next::before { transform: translate(-70%, -50%) rotate(-45deg); }
.herbano-products__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 0;
}
.herbano-products__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cdd6cf;
    cursor: pointer;
    transition: background 0.2s ease;
}
.herbano-products__dot.is-active {
    background: #467c48;
}
@media (min-width: 601px) {
    .herbano-products__dots { display: none !important; }
}
@media (max-width: 600px) {
    .herbano-products__heading { font-size: 19px; margin-bottom: 18px; }
    .herbano-products--slider { padding: 16px 12px; }
    .herbano-products__viewport { padding: 0; }
    .herbano-products__nav { display: none; }
    .herbano-products__grid { padding: 4px 0; }
    .herbano-products__card {
        flex: 0 0 calc(50% - 6px);
        min-width: 0;
        max-width: none;
        padding: 12px;
        scroll-snap-align: none;
    }
    .herbano-products__card.is-page-start { scroll-snap-align: start; }
    .herbano-products__image-wrap { height: 160px; }
    .herbano-products__title { font-size: 14px; margin-bottom: 10px; }
    .herbano-products__button { padding: 8px 18px; font-size: 13px; }
    .herbano-products__dots { margin: 14px 0 0; }
}