:root {
    --deli-green: #2e7d32;
    --deli-green-dark: #1b5e20;
    --deli-orange: #ef6c00;
    --deli-cream: #faf7f0;
    --deli-ink: #23291f;
    --deli-muted: #6b7280;
}

* { box-sizing: border-box; }

body {
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    color: var(--deli-ink);
    background: var(--deli-cream);
}

a { text-decoration: none; }

/* ---------- Barra superior ---------- */
.topbar {
    color: #fff;
    font-size: .85rem;
}
.topbar a { color: #d7f0d8; }
.topbar a:hover { color: #fff; }

.topbar-messages {
    display: inline-block;
    min-height: 1.25rem;
}

.topbar-message {
    display: inline;
}

.topbar-messages--rotate {
    position: relative;
    min-width: min(100%, 28rem);
}

.topbar-messages--rotate .topbar-message {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-messages--rotate .topbar-message.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767.98px) {
    .topbar-messages--rotate .topbar-message {
        white-space: normal;
    }
}

/* ---------- Navbar ---------- */
.navbar-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    overflow: hidden;
}
.navbar-brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.navbar-brand span.logo {
    font-weight: 800;
    color: var(--deli-green-dark);
    letter-spacing: -.5px;
    font-size: 1.5rem;
}
.navbar-brand span.dot { color: var(--deli-orange); }
.nav-cats .nav-link { font-weight: 600; color: var(--deli-ink); }
.nav-cats .nav-link:hover { color: var(--deli-green); }

.navbar-user-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    max-width: 12.5rem;
}

.navbar-user-avatar {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 50%;
    overflow: hidden;
    background: #eef3ea;
    border: 1px solid rgba(46, 125, 50, 0.18);
    flex: 0 0 auto;
}

.navbar-user-avatar-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.navbar-user-label {
    display: inline-block;
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.navbar-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.navbar-user-menu .dropdown-item .bi {
    width: 1.1rem;
    text-align: center;
    opacity: 0.9;
}

.dropdown-item-gift-card {
    color: var(--deli-orange) !important;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    animation: gift-menu-pulse 2.4s ease-in-out infinite;
}

.dropdown-item-gift-card .bi {
    color: var(--deli-orange);
    animation: gift-menu-icon 2.4s ease-in-out infinite;
}

.dropdown-item-gift-card:hover,
.dropdown-item-gift-card:focus {
    color: #fff !important;
    background: var(--deli-orange) !important;
    animation-play-state: paused;
}

.dropdown-item-gift-card:hover .bi,
.dropdown-item-gift-card:focus .bi {
    color: #fff;
    animation-play-state: paused;
}

.btn-gift-card {
    position: relative;
    overflow: hidden;
    background: var(--deli-orange);
    border-color: #c75400;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 0 0 rgba(239, 108, 0, 0.45);
    animation: gift-btn-pulse 2.4s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gift-card:hover,
.btn-gift-card:focus {
    background: #d95f00;
    border-color: #a34d00;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(239, 108, 0, 0.35);
    animation-play-state: paused;
}

.btn-gift-card .bi {
    display: inline-block;
    animation: gift-menu-icon 2.4s ease-in-out infinite;
}

.btn-gift-card:hover .bi,
.btn-gift-card:focus .bi {
    animation-play-state: paused;
}

@keyframes gift-menu-pulse {
    0%, 100% { background-color: transparent; }
    50% { background-color: rgba(239, 108, 0, 0.12); }
}

@keyframes gift-btn-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 108, 0, 0.45);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(239, 108, 0, 0);
        transform: scale(1.02);
    }
}

@keyframes gift-menu-icon {
    0%, 100% { transform: rotate(0deg) scale(1); }
    40% { transform: rotate(-10deg) scale(1.08); }
    70% { transform: rotate(8deg) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .dropdown-item-gift-card,
    .dropdown-item-gift-card .bi,
    .btn-gift-card,
    .btn-gift-card .bi {
        animation: none;
    }
}

.site-search-field {
    position: relative;
    min-width: 220px;
}
.site-search-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 1080;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: .5rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    max-height: 360px;
    overflow-y: auto;
    padding: .35rem;
}
.site-search-suggestion {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .45rem .55rem;
    border-radius: .4rem;
    color: var(--deli-ink);
    text-decoration: none;
}
.site-search-suggestion:hover,
.site-search-suggestion:focus {
    background: #f0f7f0;
    color: var(--deli-ink);
}
.site-search-suggestion-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: .35rem;
    flex-shrink: 0;
    background: #f3f4f6;
}
.site-search-suggestion-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.site-search-suggestion-name {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.25;
}
.site-search-suggestion-price {
    font-size: .8rem;
    color: var(--deli-green-dark);
    font-weight: 700;
}

.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--deli-green);
    color: #fff !important;
    border-radius: 999px;
    padding: .45rem 1rem;
    font-weight: 600;
    border: 2px solid #145218;
    white-space: nowrap;
    flex-wrap: nowrap;
    line-height: 1.1;
}
.cart-pill:hover {
    background: var(--deli-green-dark);
    border-color: #0d3d10;
}

.cart-preview-wrap {
    position: relative;
    flex-shrink: 0;
}

.cart-preview-panel {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(22rem, calc(100vw - 1.5rem));
    background: #fff;
    border: 2px solid var(--deli-green-dark);
    border-radius: 0.75rem;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15);
    z-index: 1080;
    overflow: hidden;
}

.cart-preview-wrap.is-open .cart-preview-panel {
    display: block;
}

.cart-preview-list {
    max-height: 16rem;
    overflow-y: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-preview-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 0.65rem;
    align-items: start;
    padding: 0.65rem 1rem;
}

.cart-preview-item + .cart-preview-item {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-preview-item-image {
    object-fit: cover;
}

.cart-preview-item-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.cart-preview-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.25;
    color: #212529;
}

.cart-preview-item-options,
.cart-preview-item-meta {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.2;
}

.cart-preview-item-total {
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--deli-green-dark);
}

.cart-preview-total-line {
    font-size: 0.95rem;
}

.cart-preview-more {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.navbar,
.navbar .container,
.navbar-collapse {
    overflow: visible;
}

.cart-delivery-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: .7rem;
    line-height: 1;
    text-decoration: none;
    opacity: .85;
}
.cart-delivery-toggle:hover {
    opacity: 1;
    text-decoration: none;
}

/* ---------- Botones: borde visible siempre ---------- */
.btn,
.cart-pill {
    border-width: 2px;
    border-style: solid;
    box-shadow: none;
}

.btn:focus,
.btn:active:focus {
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.2);
}

.btn-deli {
    background: var(--deli-orange);
    color: #fff;
    font-weight: 700;
    border-color: #c75400;
}
.btn-deli:hover,
.btn-deli:focus {
    background: #d95f00;
    color: #fff;
    border-color: #a34d00;
}

.btn-hero-menu {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deli-green) 0%, var(--deli-green-dark) 100%);
    border-color: var(--deli-green-dark);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.55);
    animation: hero-menu-pulse 2.4s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-hero-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    transform: skewX(-18deg);
    animation: hero-menu-shine 3.2s ease-in-out infinite;
    pointer-events: none;
}

.btn-hero-menu:hover,
.btn-hero-menu:focus {
    background: linear-gradient(135deg, #388e3c 0%, var(--deli-green) 100%);
    border-color: var(--deli-green-dark);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 22px rgba(46, 125, 50, 0.45);
    animation-play-state: paused;
}

.btn-hero-menu:hover::after,
.btn-hero-menu:focus::after {
    animation-play-state: paused;
}

.btn-hero-menu .bi {
    display: inline-block;
    animation: hero-menu-bag 2.4s ease-in-out infinite;
}

@keyframes hero-menu-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(46, 125, 50, 0);
        transform: scale(1.02);
    }
}

@keyframes hero-menu-shine {
    0%, 55% { left: -120%; }
    75%, 100% { left: 140%; }
}

@keyframes hero-menu-bag {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-2px); }
    55% { transform: translateY(1px); }
    70% { transform: translateY(-1px); }
}

@media (prefers-reduced-motion: reduce) {
    .btn-hero-menu,
    .btn-hero-menu::after,
    .btn-hero-menu .bi {
        animation: none;
    }

    .btn-hero-menu:hover,
    .btn-hero-menu:focus {
        transform: none;
    }
}

.btn-outline-deli {
    background: #fff;
    border-color: var(--deli-green);
    color: var(--deli-green);
    font-weight: 700;
}
.btn-outline-deli:hover,
.btn-outline-deli:focus {
    background: var(--deli-green);
    border-color: var(--deli-green);
    color: #fff;
}

.btn-menu-pdf {
    background: linear-gradient(135deg, var(--deli-green) 0%, var(--deli-green-dark) 100%);
    border-color: var(--deli-green-dark);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-menu-pdf:hover,
.btn-menu-pdf:focus {
    background: linear-gradient(135deg, #388e3c 0%, var(--deli-green) 100%);
    border-color: var(--deli-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.45);
}

.btn-menu-pdf:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.3);
}

.btn-menu-pdf .bi {
    animation: menu-pdf-icon-pulse 2.4s ease-in-out infinite;
}

@keyframes menu-pdf-icon-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.12); opacity: 0.92; }
}

@media (prefers-reduced-motion: reduce) {
    .btn-menu-pdf {
        transition: none;
    }

    .btn-menu-pdf .bi {
        animation: none;
    }
}

.social-login-block {
    margin-top: 1.25rem;
}
.social-login-divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .9rem;
    color: var(--deli-muted);
    font-size: .85rem;
}
.social-login-divider::before,
.social-login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dde5dd;
}
.social-login-btn {
    font-weight: 700;
    border-width: 1px;
    border-style: solid;
}
.social-login-btn--google {
    background: #fff;
    border-color: #dadce0;
    color: #3c4043;
}
.social-login-btn--google:hover,
.social-login-btn--google:focus {
    background: #f8f9fa;
    border-color: #c6c9cc;
    color: #202124;
}
.social-login-btn--facebook {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}
.social-login-btn--facebook:hover,
.social-login-btn--facebook:focus {
    background: #166fe5;
    border-color: #166fe5;
    color: #fff;
}

.login-register-cta {
    margin-top: 1.75rem;
    padding: 1.25rem 1rem 1rem;
    border-radius: 0.85rem;
    background: linear-gradient(145deg, rgba(46, 125, 50, 0.07), rgba(239, 108, 0, 0.09));
    border: 2px dashed rgba(46, 125, 50, 0.28);
}

.login-register-cta-label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deli-muted);
}

.login-register-btn {
    background: linear-gradient(135deg, var(--deli-green), var(--deli-green-dark));
    border: 2px solid #145218;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0.35rem 1rem rgba(27, 94, 32, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.login-register-btn:hover,
.login-register-btn:focus {
    background: linear-gradient(135deg, var(--deli-green-dark), #145218);
    border-color: #0d3d10;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1.25rem rgba(27, 94, 32, 0.28);
}

.btn-primary {
    border-color: #0a58ca;
}
.btn-primary:hover,
.btn-primary:focus {
    border-color: #084298;
}

.btn-success {
    border-color: #146c43;
}
.btn-success:hover,
.btn-success:focus {
    border-color: #0f5132;
}

.btn-danger {
    border-color: #b02a37;
}
.btn-danger:hover,
.btn-danger:focus {
    border-color: #842029;
}

.btn-secondary {
    border-color: #565e64;
}
.btn-secondary:hover,
.btn-secondary:focus {
    border-color: #41464b;
}

.btn-outline-primary {
    border-color: #0d6efd;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    border-color: #0d6efd;
}

.btn-outline-secondary {
    border-color: #6c757d;
    background: #fff;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    border-color: #6c757d;
}

.btn-outline-danger {
    border-color: #dc3545;
    background: #fff;
}
.btn-outline-danger:hover,
.btn-outline-danger:focus {
    border-color: #dc3545;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}
.btn-outline-light:hover,
.btn-outline-light:focus {
    border-color: #fff;
    color: var(--deli-green-dark);
}

.btn.btn-link {
    border-color: #c8d0c4;
    background: #fff;
    color: var(--deli-ink);
    text-decoration: none;
}
.btn.btn-link:hover,
.btn.btn-link:focus {
    border-color: var(--deli-green);
    background: #f4faf4;
    color: var(--deli-green-dark);
    text-decoration: none;
}
.btn.btn-link.text-danger {
    border-color: #f1aeb5;
    color: #dc3545;
}
.btn.btn-link.text-danger:hover,
.btn.btn-link.text-danger:focus {
    border-color: #dc3545;
    background: #fff5f5;
    color: #b02a37;
}

.btn-close {
    border: none;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: #fff;
    border-radius: 1.25rem;
    padding: 3rem 2rem 4.75rem;
}
.hero h1 { font-weight: 800; }
.hero-payments {
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    max-width: min(20rem, calc(100% - 2.5rem));
    text-align: right;
    z-index: 2;
}
.hero-payments-icons {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-pay-badge {
    display: inline-flex;
    line-height: 0;
    border-radius: 0.35rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.hero-pay-badge svg {
    display: block;
}
.hero-payments-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 991.98px) {
    .hero {
        padding-bottom: 5.25rem;
    }
    .hero-payments {
        right: 1rem;
        bottom: 0.85rem;
        max-width: calc(100% - 2rem);
    }
}
@media (max-width: 575.98px) {
    .hero {
        padding: 2rem 1.25rem 5.5rem;
    }
    .hero-payments {
        align-items: flex-start;
        text-align: left;
        left: 1.25rem;
        right: 1.25rem;
        max-width: none;
    }
    .hero-payments-text {
        font-size: 0.74rem;
    }
}

.home-banner {
    border-radius: 1.25rem;
    overflow: hidden;
    line-height: 0;
}
.home-banner-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
}

/* ---------- Pasos "cómo funciona" ---------- */
.step-card {
    background: #fff;
    border: 2px solid #d5ddd0;
    border-radius: 1rem;
    padding: 1.75rem 1.25rem;
    height: 100%;
    text-align: center;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.step-card:hover {
    border-color: var(--deli-green);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.08);
}
.step-card h5 {
    font-weight: 700;
    color: var(--deli-ink);
    margin-bottom: .75rem;
}
.step-card p {
    margin-bottom: 0;
}
.step-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--deli-orange); color: #fff;
    display: grid; place-items: center; font-weight: 800; font-size: 1.2rem;
    border: 2px solid #c75400;
    margin: 0 auto 1rem;
}

.page-content img {
    max-width: 100%;
    height: auto;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4 {
    margin-top: 1.25rem;
    margin-bottom: .75rem;
}

/* ---------- Tarjetas de producto ---------- */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
    height: 100%;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.product-card-thumb {
    display: block;
    overflow: hidden;
    background: #f0ede6;
}
.product-card-thumb-link {
    display: block;
}
.product-card .thumb { aspect-ratio: 3/2; object-fit: cover; width: 100%; display: block; background: #f0ede6; }
.product-card .p-body { padding: .9rem 1rem 1.1rem; }
.product-card .p-name { font-weight: 700; color: var(--deli-ink); display: block; min-height: 2.6em; }
.product-code {
    display: block;
    color: #7b7b7b;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: .2rem;
}
.product-code-detail {
    font-size: .82rem;
}
.product-meta-line {
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-wrap: wrap;
}
.product-meta-line .product-code {
    margin-bottom: 0;
}
.product-weight-display {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: 0;
}
.product-social {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.product-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #495057;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.product-social-link:hover,
.product-social-link:focus {
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
}
.product-social-link--facebook:hover,
.product-social-link--facebook:focus { background: #1877f2; }
.product-social-link--instagram:hover,
.product-social-link--instagram:focus { background: #e4405f; }
.product-social-link--tiktok:hover,
.product-social-link--tiktok:focus { background: #010101; }
.product-social-link--youtube:hover,
.product-social-link--youtube:focus { background: #ff0000; }
.product-social-link--google_maps:hover,
.product-social-link--google_maps:focus { background: #34a853; }
.product-social-link--waze:hover,
.product-social-link--waze:focus { background: #33ccff; }
.product-social-brand-icon {
    margin: 0 !important;
    width: 1.15rem;
    height: 1.15rem;
    vertical-align: middle;
}
.product-card .p-price { color: var(--deli-green-dark); font-weight: 800; font-size: 1.15rem; }
.badge-order-in-route {
    background-color: #ef6c00;
    color: #fff;
}
.badge-order-delivered {
    background-color: #1b5e20;
    color: #fff;
}
.wishlist-select-card {
    position: relative;
}
.wishlist-select-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wishlist-select-check .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0;
    border: 2px solid #c5cec5;
    cursor: pointer;
}
.wishlist-select-check .form-check-input:checked {
    border-color: var(--deli-green);
}
.badge-new { background: var(--deli-orange); color: #fff; }
.badge-offer { background: #c62828; color: #fff; }
.product-badge {
    position: absolute;
    top: .5rem;
    z-index: 2;
    font-weight: 600;
    pointer-events: none;
}
.product-badge-left { left: .5rem; }
.product-badge-right { right: .5rem; }
.badge-cat { background: #eef4ee; color: var(--deli-green-dark); font-weight: 600; }

/* ---------- Galería de producto ---------- */
.product-gallery {
    position: relative;
}
.product-gallery-viewport {
    position: relative;
    overflow: hidden;
    background: #f8f6f2;
    aspect-ratio: 4 / 3;
}
.product-gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .55s ease, transform .55s ease;
    pointer-events: none;
    background: #111;
}
.product-gallery-slide--video {
    background: #000;
}
.product-gallery-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.product-gallery--has-video .product-gallery-viewport {
    transition: aspect-ratio .25s ease;
}
.product-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #111;
}
.product-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--deli-green-dark);
    box-shadow: 0 2px 12px rgba(31, 42, 31, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.product-gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 16px rgba(31, 42, 31, .18);
}
.product-gallery-prev { left: .75rem; }
.product-gallery-next { right: .75rem; }
.product-gallery-counter {
    position: absolute;
    left: 50%;
    bottom: .75rem;
    transform: translateX(-50%);
    z-index: 3;
    padding: .2rem .65rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    pointer-events: none;
}
.product-gallery-dots {
    display: flex;
    justify-content: center;
    gap: .45rem;
    margin-top: .75rem;
}
.product-gallery-dot {
    width: .55rem;
    height: .55rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c5cec5;
    transition: transform .2s ease, background .2s ease;
}
.product-gallery-dot.is-active {
    background: var(--deli-green);
    transform: scale(1.25);
}
.product-gallery:not(.product-gallery--multiple) .product-gallery-slide {
    position: relative;
    opacity: 1;
    transform: none;
}

/* ---------- Código QR de producto ---------- */
.product-qr-card {
    margin-top: 1rem;
}
.product-qr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.product-qr-actions .product-qr-trigger,
.product-whatsapp-group-link {
    flex: 1 1 12rem;
    min-width: 0;
}
.product-qr-trigger {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #dde5dd;
    border-radius: .9rem;
    background: linear-gradient(180deg, #fff 0%, #f8faf8 100%);
    box-shadow: 0 1px 2px rgba(31, 42, 31, .05);
    cursor: pointer;
    text-align: left;
}
.product-qr-trigger:hover {
    border-color: #b9c9b9;
    box-shadow: 0 4px 14px rgba(31, 42, 31, .08);
}
.product-whatsapp-group-link {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #c8e6c9;
    border-radius: .9rem;
    background: linear-gradient(180deg, #f6fff7 0%, #edf9ef 100%);
    box-shadow: 0 1px 2px rgba(31, 42, 31, .05);
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
    animation: product-whatsapp-vibrate 3.2s ease-in-out infinite;
}

.product-whatsapp-group-link:hover {
    border-color: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .18);
    color: inherit;
    transform: translateY(-1px);
    animation-play-state: paused;
}

@keyframes product-whatsapp-vibrate {
    0%, 68%, 100% {
        transform: translateX(0) rotate(0);
    }
    70% {
        transform: translateX(-3px) rotate(-0.6deg);
    }
    72% {
        transform: translateX(3px) rotate(0.6deg);
    }
    74% {
        transform: translateX(-3px) rotate(-0.6deg);
    }
    76% {
        transform: translateX(3px) rotate(0.6deg);
    }
    78% {
        transform: translateX(-2px) rotate(-0.4deg);
    }
    80% {
        transform: translateX(2px) rotate(0.4deg);
    }
    82% {
        transform: translateX(0) rotate(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-whatsapp-group-link {
        animation: none;
    }
}
.product-whatsapp-group-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: .65rem;
    background: #fff;
    border: 1px solid #c8e6c9;
    color: #25d366;
    font-size: 2rem;
    flex-shrink: 0;
}
.product-whatsapp-group-caption {
    font-size: .92rem;
    font-weight: 600;
    color: #1b5e20;
}
.product-qr-frame,
.product-qr-modal-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem;
    border-radius: .65rem;
    background: #fff;
    border: 1px solid #e4ebe4;
}
.product-qr-image {
    width: 72px;
    height: 72px;
    display: block;
}
.product-qr-caption {
    font-size: .92rem;
    font-weight: 600;
    color: var(--deli-green-dark);
}
.product-qr-modal .modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 18px 48px rgba(31, 42, 31, .16);
}
.product-qr-modal-image {
    width: 240px;
    height: 240px;
    display: block;
}

.admin-product-qr-thumb {
    display: inline-flex;
    padding: .2rem;
    border: 1px solid #e4ebe4;
    border-radius: .5rem;
    background: #fff;
    line-height: 0;
}
.admin-product-qr-thumb img {
    display: block;
    border-radius: .25rem;
}

/* ---------- Línea de tiempo de seguimiento ---------- */
.timeline { list-style: none; padding-left: 0; }
.timeline li {
    position: relative; padding-left: 2.2rem; padding-bottom: 1.4rem;
    border-left: 2px solid #dcdcd2; margin-left: .6rem;
}
.timeline li:last-child { border-left-color: transparent; }
.timeline li .dot {
    position: absolute; left: -11px; top: 0;
    width: 20px; height: 20px; border-radius: 50%;
    background: #dcdcd2; border: 3px solid var(--deli-cream);
}
.timeline li.done .dot { background: var(--deli-green); }
.timeline li.current .dot { background: var(--deli-orange); box-shadow: 0 0 0 4px rgba(239,108,0,.2); }
.timeline li.done .t-label, .timeline li.current .t-label { font-weight: 700; }

/* ---------- Estados de orden ---------- */
.order-timeline {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .75rem;
    align-items: stretch;
}

.tl-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 5.5rem;
    padding: .9rem .55rem;
    border: 2px solid #d8dfd5;
    border-radius: 1rem;
    background: #fff;
    text-align: center;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.tl-step.done {
    border-color: rgba(46, 125, 50, .35);
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf5 100%);
}

.tl-step.active {
    border-color: rgba(239, 108, 0, .55);
    background: linear-gradient(180deg, #fffaf5 0%, #fff3e8 100%);
    box-shadow: 0 0 0 3px rgba(239, 108, 0, .10);
}

.tl-step.todo {
    background: #fcfcfa;
}

.tl-dot {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid #d8dfd5;
    background: #f6f7f4;
    color: #7b8577;
    flex: 0 0 auto;
}

.tl-step.done .tl-dot {
    border-color: var(--deli-green);
    background: var(--deli-green);
    color: #fff;
}

.tl-step.active .tl-dot {
    border-color: var(--deli-orange);
    background: var(--deli-orange);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(239, 108, 0, .16);
}

.tl-label {
    font-size: .84rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--deli-ink);
    text-wrap: balance;
}

.tl-step.todo .tl-label {
    color: #667164;
    font-weight: 600;
}

.tl-history li {
    gap: .85rem;
}

@media (max-width: 991.98px) {
    .order-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .order-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .6rem;
    }

    .tl-step {
        min-height: 5rem;
        padding: .8rem .45rem;
        border-radius: .9rem;
    }

    .tl-dot {
        width: 2.15rem;
        height: 2.15rem;
        font-size: .95rem;
    }

    .tl-label {
        font-size: .8rem;
    }

    .tl-history li {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

/* ---------- Testimonios ---------- */
.testi { background: #fff; border-radius: 1rem; padding: 1.5rem; border: 1px solid #eee; height: 100%; }
.stars { color: #ffb300; letter-spacing: 2px; }

/* ---------- Footer ---------- */
footer.site {
    background: #63051F;
    color: #cfe3d0;
    margin-top: 3rem;
}
footer.site a { color: #cfe3d0; }
footer.site a:hover { color: #fff; }
.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    overflow: hidden;
}
.footer-brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background-color 0.2s ease, transform 0.15s ease;
}
.footer-social-link:hover,
.footer-social-link:focus {
    color: #fff !important;
    transform: translateY(-1px);
}
.footer-social-link--facebook:hover,
.footer-social-link--facebook:focus { background: #1877f2; }
.footer-social-link--instagram:hover,
.footer-social-link--instagram:focus { background: #e4405f; }
.footer-social-link--tiktok:hover,
.footer-social-link--tiktok:focus { background: #010101; }
.footer-social-link--youtube:hover,
.footer-social-link--youtube:focus { background: #ff0000; }
.footer-social-link--google_maps:hover,
.footer-social-link--google_maps:focus { background: #34a853; }
.footer-social-link--waze:hover,
.footer-social-link--waze:focus { background: #33ccff; }
.footer-brand-icon {
    margin: 0 !important;
    width: 1.1rem;
    height: 1.1rem;
    vertical-align: middle;
}

/* ---------- Sidebar categorías ---------- */
.cat-side .list-group-item.active { background: var(--deli-green); border-color: var(--deli-green); }

.shop-sidebar-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.shop-sidebar-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: var(--deli-dark, #2c2c2c);
}

.shop-sidebar-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.45rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.shop-sidebar-whatsapp:hover,
.shop-sidebar-whatsapp:focus {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-1px);
}

.shop-sidebar-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shop-sidebar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: #f4f4f4;
    color: var(--deli-dark, #2c2c2c);
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.shop-sidebar-social-link:hover,
.shop-sidebar-social-link:focus {
    color: #fff;
    transform: translateY(-1px);
}

.shop-sidebar-social-link--facebook:hover,
.shop-sidebar-social-link--facebook:focus { background: #1877f2; }
.shop-sidebar-social-link--instagram:hover,
.shop-sidebar-social-link--instagram:focus { background: #e4405f; }
.shop-sidebar-social-link--tiktok:hover,
.shop-sidebar-social-link--tiktok:focus { background: #010101; }
.shop-sidebar-social-link--youtube:hover,
.shop-sidebar-social-link--youtube:focus { background: #ff0000; }
.shop-sidebar-social-link--google_maps:hover,
.shop-sidebar-social-link--google_maps:focus { background: #34a853; }
.shop-sidebar-social-link--waze:hover,
.shop-sidebar-social-link--waze:focus { background: #33ccff; }

.shop-sidebar-brand-icon {
    margin: 0 !important;
    width: 1.15rem;
    height: 1.15rem;
    vertical-align: middle;
}

.shop-sidebar-location {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
    line-height: 1.35;
}

.shop-sidebar-location:hover .shop-sidebar-location-text,
.shop-sidebar-location:focus .shop-sidebar-location-text {
    color: var(--deli-green);
    text-decoration: underline;
}

.shop-sidebar-location-icon {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ea4335;
    color: #fff;
    font-size: 1rem;
}

.shop-sidebar-location-text {
    font-size: 0.88rem;
    color: #555;
}

/* ---------- Contraseña con ojo mostrar/ocultar ---------- */
.password-toggle-group {
    position: relative;
}
.password-toggle-input {
    padding-right: 2.75rem !important;
}
.password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 0.35rem;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #6c757d;
    padding: 0.2rem 0.45rem;
    line-height: 1;
    z-index: 3;
    cursor: pointer;
}
.password-toggle-btn:hover,
.password-toggle-btn:focus {
    color: var(--deli-green-dark);
    background: transparent;
    box-shadow: none;
}
.password-toggle-btn:focus-visible {
    outline: 2px solid rgba(46, 125, 50, 0.35);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

.google-maps-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.15rem;
    vertical-align: -0.15em;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'/%3E%3Ccircle fill='%23fff' cx='12' cy='9' r='2.6'/%3E%3C/svg%3E");
}

.waze-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.15rem;
    vertical-align: -0.15em;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2333ccff' d='M20.9 11.4c0-4.4-4-8-8.9-8s-8.9 3.6-8.9 8c0 2.3 1.1 4.4 2.9 5.9l-.9 2.7 3.1-1.1c1.1.4 2.4.6 3.8.6.3 0 .6 0 .9-.1-.2-.6-.3-1.2-.3-1.8 0-3.5 3-6.2 6.7-6.2.7 0 1.3.1 1.9.3-.1-.1-.2-.2-.3-.3z'/%3E%3Ccircle fill='%23000' cx='9.2' cy='10.6' r='1.1'/%3E%3Ccircle fill='%23000' cx='14' cy='10.6' r='1.1'/%3E%3Cpath fill='%2333ccff' d='M22.1 16.2c0-2.5-2.2-4.5-4.9-4.5s-4.9 2-4.9 4.5 2.2 4.5 4.9 4.5c.5 0 1-.1 1.5-.2l2.1.8-.6-1.8c1.2-1 1.9-2.4 1.9-3.3z'/%3E%3Ccircle fill='%23000' cx='15.4' cy='16' r='.7'/%3E%3Ccircle fill='%23000' cx='18.9' cy='16' r='.7'/%3E%3C/svg%3E");
}

.location-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.location-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.location-nav-btn .google-maps-icon,
.location-nav-btn .waze-icon {
    margin-right: 0;
}

.site-toast-container {
    position: fixed;
    inset: 0;
    z-index: 1085;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.site-cart-toast {
    min-width: min(24rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    pointer-events: auto;
    border: 0;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.97), rgba(27, 94, 32, 0.97));
    color: #fff;
    box-shadow: 0 0.9rem 2rem rgba(16, 56, 20, 0.26);
}

.site-cart-toast .toast-body {
    padding: 0.9rem 1rem;
}

.site-cart-toast-action {
    white-space: nowrap;
    font-weight: 700;
}

.site-cart-toast-action:hover,
.site-cart-toast-action:focus {
    color: #fff;
}

.site-cart-toast[data-cart-clickable="1"] {
    cursor: pointer;
}

.site-cart-toast-highlight {
    color: #ffe082;
    font-weight: 800;
}

.site-cart-toast-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 1rem;
    flex: 0 0 auto;
}

.site-cart-toast .btn-close {
    opacity: 0.9;
}

@media (max-width: 575.98px) {
    .site-toast-container {
        padding: 0.75rem;
    }

    .site-cart-toast {
        min-width: 100%;
    }

    .site-cart-toast .toast-body {
        gap: .75rem !important;
    }

    .site-cart-toast .flex-grow-1 {
        flex-basis: 100%;
    }

    .site-cart-toast-action {
        order: 3;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: .75rem;
    }

    .navbar-user-toggle {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        max-width: 100%;
        padding-right: 0;
    }

    .navbar-user-avatar {
        width: 1.65rem;
        height: 1.65rem;
    }

    .navbar-user-label {
        display: inline-block;
        max-width: min(11rem, calc(100vw - 9rem));
        font-size: .92rem;
    }

    .navbar-nav.align-items-lg-center {
        align-items: flex-start !important;
        gap: .2rem;
    }

    .navbar-nav .dropdown-menu {
        max-width: 100%;
    }

    .cart-preview-wrap,
    .cart-preview-wrap .cart-pill {
        width: 100%;
    }
}

/* WhatsApp flotante */
.wa-float {
    position: fixed; right: 18px; bottom: 18px; z-index: 1030;
    background: #25d366; color: #fff; width: 56px; height: 56px;
    border-radius: 50%; display: grid; place-items: center; font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    border: 2px solid #1da851;
}
.wa-float:hover { color: #fff; transform: scale(1.05); }

/* ---------- Comprados juntos frecuentemente ---------- */
.bought-together-box {
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    background: #fff;
    padding: .85rem .9rem;
    max-width: 100%;
}

.bought-together-title {
    font-size: .9rem;
    font-weight: 700;
    margin: 0 0 .7rem;
    color: var(--deli-ink);
    opacity: 0;
    transform: translateY(6px);
}

.bought-together-box.is-visible .bought-together-title {
    animation: bt-fade-up .4s ease forwards;
}

.bought-together-list {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.bought-together-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 96px;
    min-height: 132px;
    margin: 0;
    padding: .45rem;
    border: 1px solid #e8e8e8;
    border-radius: .55rem;
    background: #fafafa;
    cursor: pointer;
    opacity: 0;
    transform: translateY(14px) scale(0.94);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}

.bought-together-box.is-visible .bought-together-card {
    animation: bt-card-in .45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--bt-delay, 0s);
}

.bought-together-card:hover {
    border-color: #cfd8cf;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .07);
    transform: translateY(-2px) scale(1);
}

.bought-together-card.is-selected,
.bought-together-card:has(.bought-together-input:checked) {
    border-color: var(--deli-green);
    background: #f3faf3;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, .15);
}

.bought-together-card-check {
    display: flex;
    justify-content: flex-start;
    margin-bottom: .2rem;
}

.bought-together-card-check .form-check-input {
    width: .9rem;
    height: .9rem;
    margin: 0;
}

.bought-together-card-media {
    display: block;
    width: 100%;
    height: 52px;
    margin-bottom: .35rem;
    overflow: hidden;
    border-radius: .35rem;
    background: #fff;
    border: 1px solid #eee;
}

.bought-together-thumb {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 52px;
    object-fit: cover;
    transition: transform .25s ease;
}

.bought-together-card:hover .bought-together-thumb {
    transform: scale(1.05);
}

.bought-together-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .68rem;
    line-height: 1.25;
    color: var(--deli-ink);
    min-height: 1.7rem;
    margin-bottom: .2rem;
}

.bought-together-price {
    font-size: .72rem;
    font-weight: 700;
    color: #c62828;
    margin-top: auto;
}

@keyframes bt-fade-up {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bt-card-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bought-together-title,
    .bought-together-card {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}
