/* /Components/Common/AddToCartButton.razor.rz.scp.css */
.add-to-cart-btn[b-rxn6725tsd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 12px;
    background-color: var(--store-primary, #1976D2);
    color: white;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-to-cart-btn:hover:not(:disabled)[b-rxn6725tsd] {
    background-color: var(--store-accent, #FF6F00);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn:disabled[b-rxn6725tsd] {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-to-cart-btn.loading[b-rxn6725tsd] {
    pointer-events: none;
    opacity: 0.7;
}

.add-to-cart-btn.added[b-rxn6725tsd] {
    background-color: #16a34a;
}

.add-to-cart-btn.added:hover:not(:disabled)[b-rxn6725tsd] {
    background-color: #15803d;
}

.spinner[b-rxn6725tsd] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@@keyframes spin {
    to[b-rxn6725tsd] { transform: rotate(360deg); }
}
/* /Components/Common/CartBadge.razor.rz.scp.css */
/* CartBadge — styles handled by Tailwind utilities in .razor */
/* /Components/Common/CartDrawer.razor.rz.scp.css */
.sf-cart-overlay[b-q2kiom5z90] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.sf-cart-drawer[b-q2kiom5z90] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(400px, 90vw);
    background: var(--sf-bg, #fff);
    z-index: 999;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
}

.sf-cart-drawer-header[b-q2kiom5z90] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.sf-cart-drawer-header h2[b-q2kiom5z90] {
    margin: 0;
    font-size: 1.25rem;
}

.sf-btn-icon[b-q2kiom5z90] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.sf-cart-drawer-empty[b-q2kiom5z90] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: #6b7280;
}

.sf-cart-drawer-items[b-q2kiom5z90] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.sf-cart-drawer-item[b-q2kiom5z90] {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.sf-cart-item-img[b-q2kiom5z90] {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.375rem;
    flex-shrink: 0;
}

.sf-cart-item-info[b-q2kiom5z90] {
    flex: 1;
    min-width: 0;
}

.sf-cart-item-name[b-q2kiom5z90] {
    font-weight: 500;
    margin: 0 0 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-cart-item-variant[b-q2kiom5z90] {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0 0 0.25rem;
}

.sf-cart-item-price[b-q2kiom5z90] {
    font-size: 0.875rem;
    margin: 0;
}

.sf-cart-item-actions[b-q2kiom5z90] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.sf-qty-controls[b-q2kiom5z90] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sf-qty-btn[b-q2kiom5z90] {
    width: 28px;
    height: 28px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-qty-btn:disabled[b-q2kiom5z90] {
    opacity: 0.4;
    cursor: not-allowed;
}

.sf-btn-remove[b-q2kiom5z90] {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
}

.sf-btn-remove:disabled[b-q2kiom5z90] {
    opacity: 0.4;
}

.sf-cart-drawer-footer[b-q2kiom5z90] {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sf-cart-subtotal[b-q2kiom5z90] {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.125rem;
}
/* /Components/Common/ChatWidget.razor.rz.scp.css */
/* Floating action button */
.sf-chat-fab[b-rnu0wao0mt] {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 60;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    border: none;
    background: var(--store-primary, #1976D2);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease;
}

.sf-chat-fab:hover[b-rnu0wao0mt] {
    transform: scale(1.06);
}

/* Panel */
.sf-chat-panel[b-rnu0wao0mt] {
    position: fixed;
    bottom: 5.5rem;
    right: 1.25rem;
    z-index: 60;
    width: 23rem;
    max-width: calc(100vw - 2rem);
    height: 32rem;
    max-height: calc(100vh - 7rem);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    font-family: var(--store-body-font, 'Inter', sans-serif);
}

@media (max-width: 480px) {
    .sf-chat-panel[b-rnu0wao0mt] {
        right: 0.5rem;
        bottom: 5rem;
        width: calc(100vw - 1rem);
        height: 70vh;
    }
}

/* Header */
.sf-chat-header[b-rnu0wao0mt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--store-primary, #1976D2);
    color: #fff;
}

.sf-chat-header-info[b-rnu0wao0mt] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sf-chat-avatar[b-rnu0wao0mt] {
    font-size: 1.4rem;
}

.sf-chat-title[b-rnu0wao0mt] {
    font-weight: 600;
    font-size: 0.95rem;
}

.sf-chat-subtitle[b-rnu0wao0mt] {
    font-size: 0.75rem;
    opacity: 0.85;
}

.sf-chat-close[b-rnu0wao0mt] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
}

/* Messages */
.sf-chat-messages[b-rnu0wao0mt] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f7f7f8;
}

.sf-chat-bubble[b-rnu0wao0mt] {
    max-width: 85%;
    padding: 0.55rem 0.8rem;
    border-radius: 0.9rem;
    font-size: 0.875rem;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: pre-line;
}

.sf-chat-bot[b-rnu0wao0mt] {
    align-self: flex-start;
    background: #fff;
    color: #212121;
    border: 1px solid #e5e7eb;
    border-bottom-left-radius: 0.25rem;
}

.sf-chat-bot[b-rnu0wao0mt]  a {
    color: var(--store-primary, #1976D2);
    text-decoration: underline;
}

.sf-chat-customer[b-rnu0wao0mt] {
    align-self: flex-end;
    background: var(--store-primary, #1976D2);
    color: #fff;
    border-bottom-right-radius: 0.25rem;
}

.sf-chat-notice[b-rnu0wao0mt] {
    align-self: center;
    font-size: 0.75rem;
    color: #6b7280;
    background: #eef2f7;
    border-radius: 0.5rem;
    padding: 0.35rem 0.75rem;
    text-align: center;
}

.sf-chat-error[b-rnu0wao0mt] {
    color: #b91c1c;
    background: #fee2e2;
}

/* Typing indicator */
.sf-chat-typing[b-rnu0wao0mt] {
    display: inline-flex;
    gap: 0.25rem;
    align-items: center;
    min-height: 1.5rem;
}

.sf-chat-typing span[b-rnu0wao0mt] {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: #9ca3af;
    animation: sf-chat-bounce-b-rnu0wao0mt 1.2s infinite ease-in-out;
}

.sf-chat-typing span:nth-child(2)[b-rnu0wao0mt] {
    animation-delay: 0.15s;
}

.sf-chat-typing span:nth-child(3)[b-rnu0wao0mt] {
    animation-delay: 0.3s;
}

@keyframes sf-chat-bounce-b-rnu0wao0mt {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Input */
.sf-chat-input-row[b-rnu0wao0mt] {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.sf-chat-input[b-rnu0wao0mt] {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    outline: none;
}

.sf-chat-input:focus[b-rnu0wao0mt] {
    border-color: var(--store-primary, #1976D2);
}

.sf-chat-send[b-rnu0wao0mt] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: none;
    background: var(--store-primary, #1976D2);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-chat-send:disabled[b-rnu0wao0mt] {
    opacity: 0.45;
    cursor: default;
}
/* /Components/Common/ProductCard.razor.rz.scp.css */
/* ── Product Card ───────────────────────────────────────────────────────── */
.sf-product-card[b-ju5r7elv3w] {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-product-card:hover[b-ju5r7elv3w] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: transparent;
}

.sf-product-card-link[b-ju5r7elv3w] {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Image ─────────────────────────────────────────────────────────────── */
.sf-product-card-img-wrap[b-ju5r7elv3w] {
    position: relative;
    overflow: hidden;
}

.sf-product-card-img[b-ju5r7elv3w] {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background-color: #f5f5f5;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-product-card:hover .sf-product-card-img[b-ju5r7elv3w] {
    transform: scale(1.05);
}

.sf-product-card-placeholder[b-ju5r7elv3w] {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #ccc;
}

/* ── Badges ────────────────────────────────────────────────────────────── */
.sf-card-sale-badge[b-ju5r7elv3w] {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--store-accent, #FF6F00);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sf-card-sold-out-badge[b-ju5r7elv3w] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

/* ── Body ──────────────────────────────────────────────────────────────── */
.sf-product-card-body[b-ju5r7elv3w] {
    padding: 1rem 1.125rem 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sf-product-card-name[b-ju5r7elv3w] {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--store-text, #1a1a2e);
    font-family: var(--store-heading-font, inherit);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.sf-product-card-desc[b-ju5r7elv3w] {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
}

/* ── Price ──────────────────────────────────────────────────────────────── */
.sf-product-card-footer[b-ju5r7elv3w] {
    margin-top: auto;
    padding-top: 0.25rem;
}

.sf-product-card-price[b-ju5r7elv3w] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.sf-card-price[b-ju5r7elv3w] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--store-text, #1a1a2e);
}

.sf-card-compare-price[b-ju5r7elv3w] {
    font-size: 0.8rem;
    color: #9ca3af;
    text-decoration: line-through;
}

/* ── Actions ───────────────────────────────────────────────────────────── */
.sf-product-card-actions[b-ju5r7elv3w] {
    padding: 0 1.125rem 1rem;
}

/* ── Mobile ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .sf-product-card-body[b-ju5r7elv3w] {
        padding: 0.75rem 0.75rem 0.5rem;
    }

    .sf-product-card-name[b-ju5r7elv3w] {
        font-size: 0.85rem;
    }

    .sf-product-card-desc[b-ju5r7elv3w] {
        display: none;
    }

    .sf-product-card-actions[b-ju5r7elv3w] {
        padding: 0 0.75rem 0.75rem;
    }

    .sf-card-price[b-ju5r7elv3w] {
        font-size: 0.95rem;
    }
}
/* /Components/Common/StockBadge.razor.rz.scp.css */
.sf-stock-badge[b-s147bvc8pk] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.sf-in-stock[b-s147bvc8pk] {
    background-color: #ecfdf5;
    color: #059669;
}

.sf-out-of-stock[b-s147bvc8pk] {
    background-color: #fef2f2;
    color: #dc2626;
}
/* /Components/Common/VariantSelector.razor.rz.scp.css */
[b-lmh5g269kk] .variant-selector {
    /* Scoped styles — component container */
}
/* /Components/Layout/StorefrontLayout.razor.rz.scp.css */
/* Layout styles migrated to Tailwind CSS utility classes in StorefrontLayout.razor */
/* /Components/Pages/CartPage.razor.rz.scp.css */
/* CartPage — styles handled by Tailwind utilities in .razor */

@@keyframes spin {
    to[b-h7es9j5cby] { transform: rotate(360deg); }
}

.animate-spin[b-h7es9j5cby] {
    animation: spin 1s linear infinite;
}
/* /Components/Pages/CheckoutPage.razor.rz.scp.css */
/* CheckoutPage — styles handled by Tailwind utilities in .razor */

@@keyframes spin {
    to[b-qsd1oxfjkf] { transform: rotate(360deg); }
}

.animate-spin[b-qsd1oxfjkf] {
    animation: spin 1s linear infinite;
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.sf-not-found[b-op244kalxq] {
    text-align: center;
    padding: 6rem 2rem;
}

.sf-not-found h1[b-op244kalxq] {
    font-size: 5rem;
    font-weight: 800;
    color: var(--store-primary, #1976D2);
    margin: 0 0 0.5rem;
    letter-spacing: -0.04em;
    opacity: 0.3;
}

.sf-not-found p[b-op244kalxq] {
    font-size: 1.2rem;
    color: #6b7280;
    margin: 0 0 2rem;
}
/* /Components/Pages/OrderConfirmation.razor.rz.scp.css */
.sf-order-page[b-joets6tx3g] {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.sf-order-success[b-joets6tx3g] {
    text-align: center;
    margin-bottom: 2rem;
}

.sf-order-check[b-joets6tx3g] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.sf-order-success h1[b-joets6tx3g] {
    margin-bottom: 0.5rem;
}

.sf-order-number[b-joets6tx3g] {
    font-size: 1.125rem;
    color: #6b7280;
}

.sf-order-details[b-joets6tx3g] {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.sf-order-section[b-joets6tx3g] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.sf-order-section h2[b-joets6tx3g] {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.sf-order-status[b-joets6tx3g] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.sf-payment-status[b-joets6tx3g] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.sf-payment-status-pending[b-joets6tx3g],
.sf-payment-status-awaitingpayment[b-joets6tx3g] {
    background: #fef3c7;
    color: #92400e;
}

.sf-payment-status-confirmed[b-joets6tx3g] {
    background: #dcfce7;
    color: #166534;
}

.sf-order-date[b-joets6tx3g] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.sf-order-item[b-joets6tx3g] {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.sf-order-item-name[b-joets6tx3g] {
    font-weight: 500;
}

.sf-order-item-variant[b-joets6tx3g] {
    color: #6b7280;
    font-size: 0.875rem;
}

.sf-order-item-qty[b-joets6tx3g] {
    color: #6b7280;
    margin-left: 0.5rem;
}

.sf-order-address[b-joets6tx3g] {
    color: #374151;
    white-space: pre-line;
}

.sf-order-totals[b-joets6tx3g] {
    padding: 1.25rem 1.5rem;
}

.sf-order-total-row[b-joets6tx3g] {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.25rem;
}

.sf-order-actions[b-joets6tx3g] {
    text-align: center;
    margin-top: 2rem;
}

.sf-order-not-found[b-joets6tx3g] {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}
/* /Components/Pages/OrderPaymentPage.razor.rz.scp.css */
/* Two-line clamp for product short description on the checkout page. */
.sf-clamp-2[b-zal275y2b0] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* /Components/Pages/ProductDetail.razor.rz.scp.css */
/* ProductDetail — styles handled by Tailwind utilities in .razor */
/* /Components/Pages/ProductList.razor.rz.scp.css */
/* ProductList styles — now using Tailwind utilities in .razor */
/* Scoped CSS kept for gap-0.5 workaround if needed */
/* /Components/Pages/StoreHome.razor.rz.scp.css */
/* ── Hero ───────────────────────────────────────────────────────────────── */
.sf-hero[b-61p145tegy] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--store-primary, #1976D2), var(--store-secondary, #00897B));
    min-height: 380px;
    display: flex;
    align-items: center;
}

.sf-hero-banner[b-61p145tegy] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-hero-overlay[b-61p145tegy] {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
}

.sf-hero-content[b-61p145tegy] {
    position: relative;
    z-index: 1;
    padding: 3.5rem 3rem;
    color: white;
    max-width: 640px;
}

.sf-hero-content h1[b-61p145tegy] {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    font-family: var(--store-heading-font, inherit);
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.sf-hero-tagline[b-61p145tegy] {
    font-size: 1.15rem;
    opacity: 0.92;
    margin: 0 0 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.sf-hero-actions[b-61p145tegy] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Section Header ────────────────────────────────────────────────────── */
.sf-section-header[b-61p145tegy] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.sf-section-header h2[b-61p145tegy] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--store-heading-font, inherit);
    color: var(--store-text, #1a1a2e);
    position: relative;
}

.sf-section-header h2[b-61p145tegy]::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--store-primary, #1976D2);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.sf-view-all[b-61p145tegy] {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--store-primary, #1976D2);
    text-decoration: none;
}

.sf-view-all:hover[b-61p145tegy] {
    text-decoration: underline;
}

/* ── Mobile ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sf-hero[b-61p145tegy] {
        min-height: 280px;
        border-radius: 16px;
        margin-bottom: 2rem;
    }

    .sf-hero-content[b-61p145tegy] {
        padding: 2rem 1.5rem;
    }

    .sf-hero-content h1[b-61p145tegy] {
        font-size: 1.85rem;
    }

    .sf-hero-tagline[b-61p145tegy] {
        font-size: 1rem;
    }
}
