/* ============================================
   MarketSur - Custom Styles (Modern Viral Theme)
   ============================================ */

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; }

/* --- Skeleton Loader --- */
.skeleton {
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 0.375rem;
}

@keyframes skeleton-pulse {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Cart Drawer --- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 40;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(2px);
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 420px;
    background: white;
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open {
    transform: translateX(0);
}

/* --- Page Transitions --- */
.page-enter-active { transition: opacity 0.22s ease, transform 0.22s ease; }
.page-leave-active { transition: opacity 0.14s ease, transform 0.14s ease; }
.page-enter-from   { opacity: 0; transform: translateY(10px); }
.page-leave-to     { opacity: 0; transform: translateY(-4px); }

/* --- Fade transition --- */
.fade-enter-active, .fade-leave-active { transition: opacity 0.2s ease; }
.fade-enter-from,   .fade-leave-to     { opacity: 0; }

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #c7d2fe; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #818cf8; }

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 30;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 34px; height: 34px; }

/* --- Product Card --- */
.product-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(79,70,229,0.12);
}
.product-card .card-actions {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.product-card:hover .card-actions {
    opacity: 1;
    transform: translateY(0);
}

/* --- Image Placeholder --- */
.img-placeholder {
    background: linear-gradient(135deg, #e0e7ff, #eef2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
}

/* --- Quantity Buttons --- */
.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    font-weight: 700;
    user-select: none;
    font-size: 1.1rem;
}
.qty-btn:hover  { background: #eef2ff; border-color: #818cf8; }
.qty-btn:active { background: #e0e7ff; }

/* --- Badge pulse (cart count) --- */
.badge-pulse { animation: badge-pop 0.3s ease; }
@keyframes badge-pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* --- Button loading spinner --- */
.btn-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Mobile menu transition (legacy dropdown) --- */
.mobile-menu-enter-active, .mobile-menu-leave-active {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}
.mobile-menu-enter-from, .mobile-menu-leave-to  { max-height: 0; opacity: 0; }
.mobile-menu-enter-to,   .mobile-menu-leave-from { max-height: 500px; opacity: 1; }

/* ─── NAV DRAWER (slide-in sidebar) ─── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 40, 0.6);
    z-index: 50;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    cursor: pointer;
}
.nav-overlay-enter-active { transition: opacity 0.3s ease; }
.nav-overlay-leave-active { transition: opacity 0.25s ease; }
.nav-overlay-enter-from, .nav-overlay-leave-to { opacity: 0; }

.nav-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 84vw;
    max-width: 320px;
    background: #fff;
    z-index: 55;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 48px rgba(30,27,75,0.22);
    overflow: hidden;
}
.nav-drawer-enter-active { transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1); }
.nav-drawer-leave-active { transition: transform 0.24s cubic-bezier(0.55, 0, 1, 0.45); }
.nav-drawer-enter-from, .nav-drawer-leave-to { transform: translateX(100%); }
.nav-drawer-enter-to, .nav-drawer-leave-from { transform: translateX(0); }

.nav-drawer-header {
    background: linear-gradient(135deg, var(--cp-900) 0%, var(--cp-700) 100%);
    padding: 20px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.nav-drawer-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.28); }
.nav-drawer-body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.nav-drawer-section {
    padding: 14px 16px 8px;
    border-bottom: 1px solid #f0f0f8;
}
.nav-drawer-section-title {
    font-size: 10px;
    font-weight: 800;
    color: var(--cp-300);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.nav-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--cp-900);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}
.nav-drawer-link:hover, .nav-drawer-link.router-link-active {
    background: var(--cp-50);
    color: var(--cp-600);
}
.nav-drawer-link-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--cp-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.15s;
}
.nav-drawer-link:hover .nav-drawer-link-icon { background: var(--cp-100); }
.nav-drawer-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    font-size: 13.5px;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
}
.nav-drawer-cat-item:hover {
    background: var(--cp-50);
    color: var(--cp-600);
}
.nav-drawer-footer {
    padding: 14px 16px;
    background: #f8f8ff;
    border-top: 1px solid #e0e7ff;
    flex-shrink: 0;
}

/* --- Toast notification --- */
.toast {
    position: fixed;
    bottom: 110px;
    right: 24px;
    z-index: 60;
    background: #1e1b4b;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(30,27,75,0.25);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: toast-in 0.3s ease, toast-out 0.3s ease 2.5s forwards;
    max-width: 280px;
}
.toast::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: #4f46e5;
    border-radius: 50%;
    font-size: 11px;
    flex-shrink: 0;
}
@keyframes toast-in  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toast-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(16px); } }

/* === HEADER === */
.header-topbar {
    background: linear-gradient(90deg, var(--cp-900) 0%, var(--cp-800) 100%);
    color: var(--cp-200);
    font-size: 12px;
    padding: 6px 0;
    text-align: center;
}
.header-main {
    background: white;
    border-bottom: 2px solid var(--cp-100);
    z-index: 30;
    box-shadow: 0 2px 16px rgba(79,70,229,0.08);
}
.header-logo-text {
    background: linear-gradient(135deg, var(--cp-600), var(--cp-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}
.search-bar {
    background: #f8f8ff;
    border: 2px solid var(--cp-100);
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-bar:focus-within {
    border-color: var(--cp-500);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}
.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: var(--cp-900);
}
.search-bar input::placeholder { color: var(--cp-300); }
.cart-btn {
    background: linear-gradient(135deg, var(--cp-600), var(--cp-800));
    color: white;
    border-radius: 12px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    border: none;
    position: relative;
    white-space: nowrap;
}
.cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79,70,229,0.35);
}
.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--ca-500);
    color: white;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(249,115,22,0.4);
}

/* Category Nav Bar */
.catbar {
    background: linear-gradient(90deg, var(--cp-900) 0%, var(--cp-700) 100%);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* not sticky — let main header handle sticky */
    z-index: 28;
}
.catbar::-webkit-scrollbar { display: none; }
.catbar-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    min-width: max-content;
}
.catbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    color: #c7d2fe;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
}
.catbar-item:hover, .catbar-item.active {
    background: rgba(255,255,255,0.15);
    color: white;
}
.catbar-item-all {
    background: var(--ca-500);
    color: white !important;
    padding: 6px 16px;
}
.catbar-item-all:hover {
    background: var(--ca-600) !important;
}

/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--cp-900);
    min-height: 460px;
    display: flex;
    align-items: stretch;
}
@media (max-width: 640px) {
    .hero-slider { min-height: 340px; }
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.7s ease;
}
.hero-slide.active  { opacity: 1; z-index: 2; }
.hero-slide.inactive { opacity: 0; z-index: 1; pointer-events: none; }

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(24px) brightness(0.3);
    transform: scale(1.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f97316;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-price-main {
    font-size: 3rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    letter-spacing: -0.03em;
}
@media (max-width: 640px) {
    .hero-price-main { font-size: 2rem; }
}
.hero-old-price {
    font-size: 1.2rem;
    color: #a5b4fc;
    text-decoration: line-through;
    font-weight: 500;
}
.hero-discount {
    background: #ef4444;
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 6px;
    align-items: center;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    padding: 0;
}
.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--ca-500);
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow-prev { left: 16px; }
.slider-arrow-next { right: 16px; }

/* === SECTION HEADERS === */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.section-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e1b4b;
    letter-spacing: -0.02em;
}
.section-pill {
    background: #fee2e2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: pulse-badge 2s ease infinite;
}
@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.7; }
}

/* === CATEGORY CARDS === */
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
    border-radius: 16px;
    background: white;
    border: 2px solid #e0e7ff;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}
.cat-card:hover {
    border-color: #6366f1;
    background: #eef2ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.15);
}
.cat-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    font-size: 24px;
}
.cat-icon img { width: 100%; height: 100%; object-fit: cover; }

/* === PRODUCT CARD (upgraded) === */
.pcard {
    background: white;
    border-radius: 16px;
    border: 1.5px solid #e0e7ff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    color: inherit;
}
.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(79,70,229,0.14);
    border-color: #a5b4fc;
}
.pcard-img-wrap {
    position: relative;
    aspect-ratio: 1;
    background: #f8f8ff;
    overflow: hidden;
}
.pcard-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pcard:hover .pcard-img-wrap img { transform: scale(1.06); }
.pcard-badge-cat {
    position: absolute;
    top: 10px; left: 10px;
    background: #4f46e5;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}
.pcard-badge-discount {
    position: absolute;
    top: 10px; right: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(239,68,68,0.35);
}
.pcard-soldout {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}
/* ── Stock urgency strip (Temu-style) ──────────────────── */
.pcard-stock-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pcard-stock-last {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    color: #fff;
    animation: stock-pulse 2s ease-in-out infinite;
}
.pcard-stock-low {
    background: linear-gradient(90deg, #f97316, #ea580c);
    color: #fff;
}
@keyframes stock-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .82; }
}

/* ── Sticky bottom bar slide-up transition ─────────────── */
.sticky-slide-enter-active { transition: transform .25s ease, opacity .25s ease; }
.sticky-slide-leave-active { transition: transform .2s ease, opacity .2s ease; }
.sticky-slide-enter-from   { transform: translateY(100%); opacity: 0; }
.sticky-slide-leave-to     { transform: translateY(100%); opacity: 0; }

.pcard-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.pcard-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pcard-desc {
    font-size: 11.5px;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
}
/* ── Price row ─────────────────────────────────────────── */
.pcard-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
    gap: 6px;
}
.pcard-price-wrap {
    min-width: 0;
    flex: 1;
}

/* Old price (strikethrough) */
.pcard-old-price {
    font-size: 11px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1.4;
}

/* MercadoLibre-style price: small symbol + big integer + small decimals */
.pcard-price {
    display: flex;
    align-items: flex-start;
    color: #4338ca;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    gap: 1px;
}
.pcard-sym {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 3px;
    line-height: 1;
    flex-shrink: 0;
}
.pcard-int {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
}
.pcard-dec {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 3px;
    line-height: 1;
}

/* Currency code badge (e.g. ARS) */
.pcard-code {
    font-size: 9.5px;
    font-weight: 700;
    color: #818cf8;
    letter-spacing: 0.05em;
    margin-top: 2px;
    line-height: 1;
}

/* ── Add-to-cart button: circle → pill on hover ──────── */
.pcard-add-btn {
    background: linear-gradient(135deg, var(--ca-500), var(--ca-600));
    color: white;
    border: none;
    border-radius: 50px;
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249,115,22,.32);
    /* transition covers width/padding/border-radius for the expand effect */
    transition: width .22s ease, padding .22s ease, border-radius .22s ease,
                box-shadow .2s ease, transform .15s ease;
}

/* Label text hidden by default, slides in on hover */
.pcard-btn-label {
    display: inline-block;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: max-width .22s ease, opacity .18s ease, padding-left .22s ease;
    padding-left: 0;
}

/* Desktop hover: expand to pill with text */
@media (hover: hover) {
    .pcard-add-btn:hover {
        width: auto;
        padding: 0 14px 0 10px;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0,0,0,.18);
        transform: translateY(-1px);
    }
    .pcard-add-btn:hover .pcard-btn-label {
        max-width: 60px;
        opacity: 1;
        padding-left: 5px;
    }
}

/* Touch/mobile: always icon only, slightly larger tap target */
@media (hover: none) {
    .pcard-add-btn {
        width: 40px;
        height: 40px;
    }
    .pcard-btn-label {
        display: none;
    }
    .pcard-add-btn:active {
        transform: scale(0.93);
        box-shadow: 0 2px 6px rgba(0,0,0,.15);
    }
}

.pcard-add-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.pcard-add-btn:disabled .pcard-btn-label { display: none; }

/* === BANNER STRIPS === */
.promo-banner {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

/* === CTA WHATSAPP SECTION === */
.cta-whatsapp {
    background: linear-gradient(135deg, #065f46 0%, #059669 60%, #10b981 100%);
    position: relative;
    overflow: hidden;
}
.cta-whatsapp::before {
    content: '';
    position: absolute;
    top: -60%; left: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

/* --- Breadcrumb --- */
.breadcrumb-sep::before {
    content: '/';
    margin: 0 0.5rem;
    color: #9ca3af;
}

/* --- Pill chip tags --- */
.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #e0e7ff;
    color: #4338ca;
}
