:root {
    --razto-fo-btn-bg: #c62828;
    --razto-fo-btn-color: #ffffff;
    --razto-fo-btn-bg-hover: #b71c1c;
    --razto-fo-btn-bg-active: #8e0000;
    --razto-fo-btn-border: #c62828;
}

/* Basis layout */
.razto-fo-wrapper {
    display: block;
    margin: 20px 0;
}

.razto-fo-menu {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
}

.razto-fo-alert {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #fed7aa;
    background: linear-gradient(135deg, #fff7ed 0%, #fff1e6 100%);
    color: #9a3412;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(253, 146, 63, 0.08);
}

.razto-fo-alert--warning::before {
    content: "⚠";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fb923c;
    color: #fff7ed;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(251, 146, 60, 0.35);
}

/* Categorie-balk (sticky + floating) */
.razto-fo-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    padding: 8px 0;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
}

/* WP admin bar correctie */
@media (min-width: 783px) {
    body.admin-bar .razto-fo-categories {
        top: 32px;
    }
}

/* Wrapper-state wanneer balk volledig los komt (JS voegt deze toe) */
.razto-fo-wrapper--categories-floating .razto-fo-categories {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 8px 14px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

/* Extra ruimte boven content als balk fixed wordt */
.razto-fo-wrapper--categories-floating .razto-fo-menu {
    padding-top: 60px;
}

/* Optioneel: verbergen voorbij menu (JS voegt deze class toe) */
.razto-fo-wrapper--categories-hidden .razto-fo-categories {
    display: none;
}

/* Knoppen – basis & thema-kleuren */
.razto-fo-btn,
.razto-fo-cat-btn,
.razto-fo-product-add,
.razto-fo-floating-cart-button,
.razto-fo-btn-primary,
.razto-fo-btn-secondary,
.razto-fo-product-more,
.razto-fo-product-moreinfo {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.1s ease;
}

/* Primaire themaknoppen */
.razto-fo-cat-btn,
.razto-fo-product-add,
.razto-fo-floating-cart-button,
.razto-fo-btn-primary {
    background-color: var(--razto-fo-btn-bg);
    color: var(--razto-fo-btn-color);
    border-color: var(--razto-fo-btn-border);
}

/* Hover primaire knoppen */
.razto-fo-cat-btn:hover,
.razto-fo-product-add:hover,
.razto-fo-floating-cart-button:hover,
.razto-fo-btn-primary:hover {
    background-color: var(--razto-fo-btn-bg-hover);
    color: var(--razto-fo-btn-color);
}

/* Actieve categorieknop */
.razto-fo-cat-btn.is-active {
    background-color: var(--razto-fo-btn-bg-active);
}

/* Secundaire button (winkelmand-link) */
.razto-fo-btn-secondary {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #cbd5e1;
}

.razto-fo-btn-secondary:hover {
    background: #cbd5e1;
}

.razto-res-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.razto-res-alert--success {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #065f46;
}

.razto-res-alert--error {
    background: #fef2f2;
    border: 1px solid #fecdd3;
    color: #991b1b;
}

.razto-thankyou-top {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #c7d2fe;
    box-shadow: 0 4px 12px rgba(59, 68, 169, 0.08);
}

/* Meer info – outline variant (oude classnaam, voor backwards compat) */
.razto-fo-product-moreinfo {
    background-color: #ffffff;
    color: var(--razto-fo-btn-bg);
    border-color: var(--razto-fo-btn-border);
}
.razto-fo-product-moreinfo:hover {
    background-color: #f9fafb;
}

/* Producttegels – desktop */
.razto-fo-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.razto-fo-product-tile {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        box-shadow 0.1s ease,
        transform 0.1s ease,
        border-color 0.1s ease;
}

.razto-fo-product-tile:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.razto-fo-product-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.razto-fo-product-body {
    padding: 8px 10px 4px 10px;
}

.razto-fo-product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.razto-fo-product-price {
    font-size: 13px;
    color: #475569;
}

/* Product footer knoppen – uniforme stijl */
.razto-fo-product-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 8px 10px 10px 10px;
    margin-top: auto;
}

/* PRIMAIR (Toevoegen / Kies optie) */
.razto-fo-product-add {
    flex: 1;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--razto-fo-btn-border);
    background-color: var(--razto-fo-btn-bg);
    color: var(--razto-fo-btn-color);
    cursor: pointer;
    transition: background-color .18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.razto-fo-product-add .razto-fo-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.razto-fo-product-add .razto-fo-btn-icon .razto-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.razto-fo-product-add:hover {
    background-color: var(--razto-fo-btn-bg-hover);
}

/* Flatpickr basis + kleuraccenten (zonder vendor CSS) */
.flatpickr-calendar {
    display: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    border-radius: 12px;
    padding: 8px;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s ease, transform .15s ease;
    transform: translateY(4px);
    z-index: 99999;
    width: 320px;
    max-width: 90vw;
}
.flatpickr-calendar.open {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.flatpickr-months {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    padding: 0 4px;
}
.flatpickr-months .flatpickr-month {
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
}
.flatpickr-months .flatpickr-current-month {
    display: flex;
    gap: 8px;
    align-items: center;
}
.flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-months .flatpickr-current-month input.cur-year {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 10px;
    font-weight: 700;
    background: #fff;
    color: #111827;
    min-width: 90px;
}
.flatpickr-next-month,
.flatpickr-prev-month {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.15s ease;
}
.flatpickr-next-month:hover,
.flatpickr-prev-month:hover {
    background: #e2e8f0;
}
.flatpickr-next-month svg,
.flatpickr-prev-month svg {
    width: 18px;
    height: 18px;
}
.flatpickr-weekdays {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    padding: 0;
}
.flatpickr-weekdaycontainer {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    gap: 4px;
}
.flatpickr-weekday {
    color: #1f2937;
    font-weight: 700;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flatpickr-days {
    padding: 0 6px 6px;
    width: 100%;
}
.flatpickr-days .dayContainer {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    justify-items: center;
    width: 100%;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange {
    background: var(--razto-fo-btn-bg, #c62828);
    border-color: var(--razto-fo-btn-bg, #c62828);
    color: #fff;
    box-shadow: none;
}
/* Forceer ook hover/focus kleuren voor geselecteerde dag */
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:hover,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:hover,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected.inRange:hover,
.flatpickr-day.selected.inRange:focus {
    background: var(--razto-fo-btn-bg, #c62828);
    border-color: var(--razto-fo-btn-bg, #c62828);
    color: #fff;
    box-shadow: none;
}
.flatpickr-day.today:not(.selected) {
    border-color: var(--razto-fo-btn-bg, #c62828);
    color: var(--razto-fo-btn-bg, #c62828);
}
.flatpickr-day.flatpickr-disabled {
    color: #cbd5e1;
    background: #f8fafc;
    border-color: #e5e7eb;
    cursor: not-allowed;
    text-decoration: line-through;
}
.flatpickr-day {
    display: inline-block;
    width: 36px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid transparent;
    margin: 2px;
    cursor: pointer;
}
.flatpickr-weekday {
    color: #1f2937;
    font-weight: 700;
}

/* SECONDARY / OUTLINE (Meer info – nieuwe classnaam) */
.razto-fo-product-more {
    flex: 1;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    background-color: #ffffff;
    border: 1px solid var(--razto-fo-btn-border);
    color: var(--razto-fo-btn-bg);
    cursor: pointer;
    transition: background-color .18s ease;
}

.razto-fo-product-more:hover {
    background-color: var(--razto-fo-btn-bg-hover);
    border-color: var(--razto-fo-btn-bg-hover);
    color: var(--razto-fo-btn-color);
}

/* Floating cart container */
.razto-fo-floating-cart {
    position: static;
    z-index: 99999;
}

/* Floating cart button (FAB) */
.razto-fo-floating-cart-button {
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 100000;
    padding: 12px 16px;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}

.razto-fo-floating-cart-count {
    color: #fff;
    font-size: 14px;
    padding: 2px 7px;
    border-radius: 50%;
    display: inline-block;
}

.razto-cart-icon {
    font-size: 18px;
    line-height: 1;
}

.razto-cart-count {
    font-weight: 600;
}

.razto-cart-total {
    font-weight: 600;
}

/* Floating cart panel – vaste positionering + intern scrollen */
.razto-fo-floating-cart-panel {
    position: fixed;
    top: 50px;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 100%;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    box-shadow: -4px 0 15px rgba(0,0,0,0.12);
    padding: 20px 25px;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    overflow: hidden;

    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

/* Open state */
.razto-fo-floating-cart-panel.is-open {
    transform: translateX(0);
    animation: razto-cart-panel-fade-in 0.25s ease-out;
}

/* Binnenin het paneel: scroll-area */
#razto-fo-cart-container {
    flex: 1 1 auto;
    display: flex;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
}

/* Header in panel */
.razto-fo-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.razto-fo-cart-header h3 {
    margin: 0;
    font-size: 22px;
}

/* Sluitknop */
.razto-fo-cart-close {
    border-radius: 12px;
    border: 1.5px solid #d14763;
    background: #fff;
    padding: 8px 12px;
    cursor: pointer;
    color: #d14763;
    font-size: 16px;
    transition: all 0.15s ease;
}

.razto-fo-cart-close:hover {
    background: #ffecef;
    border-color: #c13250;
}

/* Cart lijst & items */
.razto-fo-cart-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-height: 0;
}

.razto-fo-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    height: 100%;
    overflow-y: auto;
    padding-right: 4px;
}

.razto-fo-cart-item {
    padding: 16px 0 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.razto-fo-cart-item:last-child {
    border-bottom: none;
}

.razto-fo-cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.razto-fo-cart-item-name {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    max-width: 70%;
    word-break: break-word;
}

/* Verwijder-knop */
/* Verwijder-knop – compacter & subtiel */
.razto-fo-cart-remove {
    border: 1.2px solid #d36b74;
    background: #fff;
    color: #c24a52;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    padding: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s ease;
}

.razto-fo-cart-remove svg {
    width: 16px;
    height: 16px;
}

.razto-fo-cart-remove:hover {
    background: #ffecef;
    border-color: #c24a52;
}

/* Onderste rij: qty + prijs + regel-totaal */
.razto-fo-cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Qty controls */
.razto-fo-cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border-radius: 100px;
    padding: 6px 10px;
}

.razto-fo-cart-qty-input::-webkit-inner-spin-button,
.razto-fo-cart-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.razto-fo-cart-qty button {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}

.razto-fo-cart-qty button:hover {
    background: #e2e8f0;
}

.razto-fo-cart-qty-input {
    width: 40px;
    text-align: center;
    font-size: 13px;
    border: none;
    background: transparent;
    padding: 0;
}

/* Stuks-prijs */
.razto-fo-cart-item-price {
    font-size: 13px;
    color: #64748b;
}

/* Regel-totaal */
.razto-fo-cart-line-total {
    margin-left: auto;
    min-width: 80px;
    text-align: right;
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
}

/* FOOTER (Totaal + afhaaltijd + knoppen) */
.razto-fo-cart-footer-fixed {
    position: relative;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
    z-index: 1;
    flex-shrink: 0;
}

/* Bovenste rij in de footer (totaal + afhaaltijd) */
.razto-fo-cart-footer-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

/* Samenvatting (totaal) */
.razto-fo-cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 0;
    padding-top: 0;
    border-bottom: 0;
}

.razto-fo-cart-summary strong {
    font-size: 18px;
}

/* Afhaaltijd */
.razto-fo-pickup {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.razto-fo-pickup label,
.razto-fo-pickup-label {
    font-weight: 500;
    color: #0f172a;
}

.razto-fo-pickup-select {
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    padding: 6px 10px;
    font-size: 13px;
    background: #ffffff;
    margin: 0 0 0 20px;
}
.razto-fo-pickup-date-single {
    font-weight: 700;
    margin-bottom: 6px;
    padding-left: 4px;
}

/* Actieknoppen in footer */
.razto-fo-cart-actions {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.razto-fo-cart-actions .razto-fo-btn {
    flex: 1 1 0;      /* beide knoppen even breed */
    text-align: center;
    padding: 12px 0;  /* iets grotere tap-area voor mobiel */
}

/* Leeg mandje */
.razto-fo-cart-empty {
    font-size: 13px;
    color: #64748b;
}

/* Variatie-modal */
.razto-fo-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99998;
}

.razto-fo-modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
}

.razto-fo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.razto-fo-modal-header h3 {
    margin: 0;
    font-size: 18px;
}

/* Sluitknop minicart – subtieler */
.razto-fo-cart-close {
    border-radius: 10px;
    border: 1.2px solid #d36b74;
    background: #fff;
    padding: 6px 10px;
    cursor: pointer;
    color: #c24a52;
    font-size: 14px;
    line-height: 1;
    transition: all 0.15s ease;
}

.razto-fo-cart-close:hover {
    background: #ffecef;
    border-color: #c24a52;
}

.razto-fo-modal-body {
    font-size: 14px;
    margin-bottom: 12px;
}

.razto-fo-modal-label {
    margin: 0 0 4px;
    font-weight: 500;
}

.razto-fo-modal-select {
    width: 100%;
}

.razto-fo-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* Number inputs: spin-buttons weg binnen Razto module */
.razto-fo-wrapper input[type="number"]::-webkit-inner-spin-button,
.razto-fo-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.razto-fo-wrapper input[type="number"] {
    -moz-appearance: textfield;
}

/* ----------------------------------------------------
   Mobiele optimalisatie (≤ 768px)
---------------------------------------------------- */
@media (max-width: 768px) {

    .razto-fo-products {
        display: block;
    }

    .razto-fo-product-tile {
        display: flex;
        flex-direction: row;
        padding: 8px 10px;
        margin-bottom: 10px;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 10px rgba(15,23,42,0.06);
    }

    .razto-fo-product-image {
        flex: 0 0 90px;
        margin-right: 10px;
        border-radius: 10px;
        overflow: hidden;
        background: #f1f5f9;
    }

    .razto-fo-product-image img {
        width: 100%;
        height: 90px;
        object-fit: cover;
        display: block;
    }

    .razto-fo-product-body {
        flex: 1 1 auto;
        padding: 0 0 8px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .razto-fo-product-name {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 2px;
        line-height: 1.25;
    }

    .razto-fo-product-price {
        font-size: 13px;
        color: #64748b;
    }

    .razto-fo-products .razto-fo-product-footer {
        flex: 0 0 auto;
        margin-left: 8px;
        margin-top: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
    }

    .razto-fo-products .razto-fo-product-footer .razto-fo-product-add,
    .razto-fo-products .razto-fo-product-footer .razto-fo-product-more {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 9px 14px;
        flex: 0 0 auto;
    }

    .razto-fo-categories {
        gap: 4px;
        margin-bottom: 10px;
    }

    .razto-fo-cat-btn {
        padding: 4px 10px;
        font-size: 12px;
    }

    .razto-fo-floating-cart-panel {
        width: 100%;
        top: 0;
        bottom: 0;
    }

    .razto-fo-floating-cart-panel.razto-cart-open ~ .razto-fo-floating-cart-button {
        transform: translateX(-100%);
    }
}

/* Extra mobile stack onder elkaar (≤ 600px) */
@media (max-width: 600px) {
    .razto-fo-product-footer {
        flex-direction: column;
        gap: 6px;
    }

    .razto-fo-product-add,
    .razto-fo-product-more {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
    }

    .razto-fo-floating-cart-button {
        left: 50px;
        right: 50px;
        top: auto;
        bottom: 20px;
        width: auto;
        border-radius: 50px;
    }
}

/* Keyframes & effecten */
@keyframes razto-cart-panel-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes razto-cart-button-pulse {
    0%   { box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
    50%  { box-shadow: 0 6px 16px rgba(0,0,0,0.35); }
    100% { box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
}

@keyframes razto-btn-bump-anim {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.12); }
    50%  { transform: scale(0.95); }
    75%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.razto-btn-bump {
    animation: razto-btn-bump-anim 0.35s ease-out;
}

/* Knop verbergen als de cart open is */
.razto-fo-floating-cart-button.is-hidden {
    display: none;
}
