/* Spilo — Premium minimal SaaS design system */

:root {
    --sp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --sp-radius: 16px;
    --sp-radius-lg: 24px;
    --sp-gutter: clamp(1.25rem, 5vw, 3.5rem);
    --sp-content-max: 72rem;
    --sp-bone: #E1E1D9;
    --sp-bone-section: #D5D5CD;
    --sp-bone-card: #EBEBE4;
    --sp-text: #2a2826;
    --sp-text-muted: #6b6b65;
    --sp-border: rgba(42, 40, 38, 0.12);
}

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

html { scroll-behavior: smooth; }

body.sp-body {
    background: var(--sp-bone);
    color: var(--sp-text);
    font-family: Inter, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.sp-home.sp-body {
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;
}

/* Mesh background */
.sp-mesh {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(128, 0, 0, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(128, 0, 0, 0.04), transparent),
        var(--sp-bone);
}

/* Typography */
.sp-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #800000;
}

.sp-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.sp-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.sp-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--sp-text-muted);
}

@media (min-width: 768px) {
    .sp-lead { font-size: 1.125rem; }
}

/* Layout */
.sp-container {
    width: 100%;
    max-width: var(--sp-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--sp-gutter);
    padding-right: var(--sp-gutter);
}

.sp-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .sp-section { padding-top: 6rem; padding-bottom: 6rem; }
}

/* Glass card */
.sp-card {
    background: rgba(235, 235, 228, 0.95);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-lg);
    backdrop-filter: blur(12px);
    transition: border-color 0.35s var(--sp-ease), transform 0.35s var(--sp-ease), box-shadow 0.35s var(--sp-ease);
}

.sp-card:hover {
    border-color: rgba(128, 0, 0, 0.25);
}

.sp-card-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(42, 40, 38, 0.12);
}

/* Buttons */
.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s var(--sp-ease);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.sp-btn-primary {
    background: linear-gradient(135deg, #800000 0%, #5c0000 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(128, 0, 0, 0.35);
}

.sp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(128, 0, 0, 0.45);
}

.sp-btn-ghost {
    background: transparent;
    color: var(--sp-text);
    border: 1px solid rgba(42, 40, 38, 0.15);
}

.sp-btn-ghost:hover {
    border-color: rgba(42, 40, 38, 0.28);
    background: rgba(42, 40, 38, 0.05);
}

.sp-btn-gold {
    background: linear-gradient(135deg, #d4a853, #a08030);
    color: var(--sp-text);
}

/* Navbar */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.sp-nav.scrolled {
    background: rgba(225, 225, 217, 0.92);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--sp-border);
}

.sp-home .sp-nav:not(.scrolled) .sp-nav-link {
    color: rgba(255, 255, 255, 0.88);
}

.sp-home .sp-nav:not(.scrolled) .sp-nav-link:hover,
.sp-home .sp-nav:not(.scrolled) .sp-nav-link.active {
    color: #fff;
}

.sp-home .sp-nav:not(.scrolled) .sp-icon-btn {
    color: rgba(255, 255, 255, 0.88);
}

.sp-home .sp-nav:not(.scrolled) .sp-icon-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.sp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 5rem;
    padding: 0 var(--sp-gutter);
}

@media (min-width: 768px) {
    .sp-nav-inner { height: 5.5rem; }
}

.sp-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: inherit;
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 600;
}

.sp-nav-logo img {
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.sp-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .sp-nav-links { display: flex; }
}

.sp-nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--sp-text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.sp-nav-link:hover, .sp-nav-link.active { color: var(--sp-text); }

.sp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sp-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    color: var(--sp-text-muted);
    transition: color 0.25s, background 0.25s;
    text-decoration: none;
    position: relative;
}

.sp-icon-btn:hover {
    color: var(--sp-text);
    background: rgba(42, 40, 38, 0.06);
}

.sp-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 4px;
    background: #800000;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile drawer */
.sp-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sp-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.sp-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(18rem, 85vw);
    background: rgba(225, 225, 217, 0.98);
    border-right: 1px solid var(--sp-border);
    z-index: 70;
    transform: translateX(-100%);
    transition: transform 0.35s var(--sp-ease);
    padding: 1.5rem;
}

.sp-drawer.open { transform: translateX(0); }

.sp-drawer-link {
    display: block;
    padding: 0.875rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sp-text-muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(42, 40, 38, 0.08);
    transition: color 0.25s, padding-left 0.25s;
}

.sp-drawer-link:hover { color: var(--sp-text); padding-left: 0.5rem; }

/* Footer */
.sp-footer {
    border-top: 1px solid var(--sp-border);
    padding: 3rem 0 2rem;
    background: var(--sp-bone);
}

.sp-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .sp-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        text-align: left;
    }
}

/* Forms (SaaS inputs) */
.sp-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(42, 40, 38, 0.15);
    border-radius: 12px;
    color: var(--sp-text);
    font-size: 1rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.sp-input:focus {
    outline: none;
    border-color: rgba(128, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.15);
}

/* Native select: closed field stays dark; OS dropdown list is usually light */
select.sp-input {
    color-scheme: light;
}

select.sp-input option {
    background-color: #ffffff;
    color: #1a1a1a;
}

select.sp-input option:checked {
    background-color: #800000;
    color: #ffffff;
}

.sp-label-field {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--sp-text-muted);
    margin-bottom: 0.5rem;
}

.django-form p { margin-bottom: 1.25rem; }
.django-form label { display: block; margin-bottom: 0.5rem; font-size: 0.8125rem; font-weight: 500; color: var(--sp-text-muted); }
.django-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(42, 40, 38, 0.15);
    border-radius: 12px;
    color: var(--sp-text);
    font-size: 1rem;
}
.django-form input:focus { outline: none; border-color: rgba(128, 0, 0, 0.5); box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.15); }
.django-form ul.errorlist { color: #f87171; list-style: none; padding: 0; font-size: 0.8125rem; margin-bottom: 0.75rem; }

/* Scroll animations — multiple reveal effects */
.sp-reveal,
.sp-stagger > * {
    opacity: 0;
    transition:
        opacity 0.8s var(--sp-ease),
        transform 0.8s var(--sp-ease),
        filter 0.8s var(--sp-ease);
    will-change: opacity, transform, filter;
}

.sp-r-up { transform: translateY(42px); }
.sp-r-down { transform: translateY(-36px); }
.sp-r-left { transform: translateX(-52px); }
.sp-r-right { transform: translateX(52px); }
.sp-r-scale { transform: scale(0.9); }
.sp-r-blur { transform: translateY(28px); filter: blur(12px); }
.sp-r-fade { transform: translateY(16px); }
.sp-r-rotate { transform: translateY(32px) rotate(-2.5deg); }

.sp-reveal.visible,
.sp-stagger.visible > * {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.sp-reveal-delay-1 { transition-delay: 0.08s; }
.sp-reveal-delay-2 { transition-delay: 0.16s; }
.sp-reveal-delay-3 { transition-delay: 0.24s; }
.sp-reveal-delay-4 { transition-delay: 0.32s; }
.sp-reveal-delay-5 { transition-delay: 0.4s; }

/* Stagger grid children — varied entrance delays */
.sp-stagger > * {
    transform: translateY(36px);
}

.sp-stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
.sp-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.sp-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.sp-stagger.visible > *:nth-child(4) { transition-delay: 0.22s; }
.sp-stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.sp-stagger.visible > *:nth-child(6) { transition-delay: 0.34s; }
.sp-stagger.visible > *:nth-child(7) { transition-delay: 0.4s; }
.sp-stagger.visible > *:nth-child(8) { transition-delay: 0.46s; }
.sp-stagger.visible > *:nth-child(n+9) { transition-delay: 0.52s; }

/* Gradient text */
.sp-gradient-text {
    background: linear-gradient(135deg, var(--sp-text) 0%, #800000 50%, var(--sp-text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: spShimmer 5s linear infinite;
}

@keyframes spShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Toast */
#toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    #toast-container { left: 1rem; right: 1rem; bottom: 1rem; }
    input, select, textarea { font-size: 16px !important; }
    .bg-fixed { background-attachment: scroll !important; }
}

.sp-toast {
    padding: 0.875rem 1.25rem;
    background: rgba(235, 235, 228, 0.98);
    border: 1px solid rgba(128, 0, 0, 0.25);
    border-radius: 12px;
    font-size: 0.875rem;
    backdrop-filter: blur(12px);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s var(--sp-ease);
}

.sp-toast.show { transform: translateX(0); opacity: 1; }

/* Product grid */
.sp-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .sp-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
    .sp-product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.sp-product-card {
    padding: 1.5rem;
    text-align: center;
}

/* Uniform product image frame (home grid + product detail) */
.sp-product-image-frame {
    aspect-ratio: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
}

.sp-product-image-frame img,
.sp-product-image-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.sp-product-card .sp-product-image-frame {
    margin-bottom: 1rem;
}

.sp-product-card img {
    max-height: none;
    width: 100%;
    margin: 0;
    object-fit: contain;
}

.sp-product-card:hover .sp-product-image-frame img {
    transform: scale(1.06) translateY(-4px);
    transition: transform 0.5s var(--sp-ease);
}

/* Product detail gallery slider */
.product-gallery-slider {
    position: relative;
}

.product-gallery-viewport {
    position: relative;
    overflow: hidden;
}

.product-gallery-main {
    aspect-ratio: 1;
    width: 100%;
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-gallery-main img,
.product-gallery-main video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 11, 0.75);
    color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(8px);
}

.product-gallery-nav:hover {
    background: rgba(128, 0, 0, 0.85);
    border-color: rgba(128, 0, 0, 0.5);
}

.product-gallery-nav--prev { left: 0.75rem; }
.product-gallery-nav--next { right: 0.75rem; }

.product-gallery-counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    background: rgba(10, 10, 11, 0.75);
    color: #f5f5f7;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-gallery-thumb {
    transition: border-color 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.product-gallery-thumb.is-active {
    border-color: #800000;
    opacity: 1;
}

.product-gallery-thumb:not(.is-active) {
    opacity: 0.65;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}

/* Pairing videos */
.sp-pairings-section {
    background: #343434;
}

.sp-pairings-section .sp-h2,
.sp-pairings-section .sp-pairing-showcase__hint {
    color: #f5f5f7;
}

.sp-pairing-card {
    background: var(--sp-bone-section);
}

/* Steam overlay — sits inside the pairing section and scrolls with it,
   layered above the videos, non-interactive (desktop only). */
#sp-smoke-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    pointer-events: none;
}

@media (max-width: 767px) {
    #sp-smoke-canvas { display: none !important; }
}

.sp-pairing-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--sp-ease);
}

.sp-pairing-card:hover .sp-pairing-video {
    transform: scale(1.05);
}

/* Mobile pairing slideshow — one large video at a time */
.sp-pairing-showcase {
    text-align: center;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.sp-pairing-showcase__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    touch-action: manipulation;
}

.sp-pairing-showcase__tap {
    position: absolute;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.sp-pairing-showcase__media .sp-pairing-video {
    pointer-events: none;
}

.sp-pairing-showcase__track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.sp-pairing-showcase__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.sp-pairing-showcase__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: min(78dvh, 560px);
    width: 100%;
    background: var(--sp-bone-section);
}

.sp-pairing-showcase__media .sp-pairing-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-pairing-showcase__caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 100%);
    pointer-events: none;
}

.sp-pairing-showcase__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.sp-pairing-showcase__dots button {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.25);
    transition: width 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.sp-pairing-showcase__dots button.is-active {
    width: 1.75rem;
    background: var(--sp-primary, #800000);
}

@media (prefers-reduced-motion: reduce) {
    .sp-pairing-showcase__track {
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sp-pairing-video {
        transition: none;
        animation: none !important;
    }

    .sp-pairing-card:hover .sp-pairing-video {
        transform: none;
    }
}

/* Page header (inner pages) */
.sp-page-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sp-border);
}

@media (min-width: 768px) {
    .sp-page-header { padding-top: 7rem; padding-bottom: 2.5rem; }
}

/* Prose */
.prose img { max-width: 100%; height: auto; border-radius: 12px; }

/* Cart quantity */
.qty-btn {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(42, 40, 38, 0.15);
    background: rgba(255, 255, 255, 0.45);
    color: var(--sp-text);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 600;
}
.qty-btn:hover:not(:disabled) { background: #800000; border-color: #800000; color: #fff; }
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-input {
    width: 3rem;
    height: 2.25rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(42, 40, 38, 0.15);
    color: var(--sp-text);
    border-radius: 10px;
    font-weight: 600;
}
.item-row { transition: opacity 0.35s ease, transform 0.35s ease; }
.item-row.removing { opacity: 0; transform: translateX(24px); }
.coupon-applied { border-color: rgba(212,168,83,0.35) !important; background: rgba(212,168,83,0.06) !important; }

/* Blog cards */
.blog-card { transition: transform 0.4s var(--sp-ease), border-color 0.4s ease; }
.blog-card:hover { transform: translateY(-6px); }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Legal pages */
.sp-legal {
    color: var(--sp-text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.sp-legal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sp-border);
}

.sp-legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sp-legal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sp-text);
    margin-bottom: 0.75rem;
}

.sp-legal ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.sp-legal ul ul {
    margin-top: 0.35rem;
    list-style: circle;
}

.sp-legal li {
    margin-bottom: 0.35rem;
}

.sp-legal a {
    color: #800000;
}

.sp-legal-contact {
    list-style: none;
    padding-left: 0;
}

.sp-social-links {
    margin-top: 1rem;
}

.sp-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sp-text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sp-social-link:hover {
    color: var(--sp-text);
}

/* Floating WhatsApp */
.sp-whatsapp-float {
    position: fixed;
    right: clamp(1rem, 4vw, 1.5rem);
    bottom: clamp(1rem, 4vw, 1.5rem);
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s var(--sp-ease), box-shadow 0.3s var(--sp-ease);
}

.sp-whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
    color: #fff;
}

@media (max-width: 767px) {
    .sp-whatsapp-float {
        width: 3.25rem;
        height: 3.25rem;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sp-reveal, .sp-stagger > *, .sp-gradient-text {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--sp-bone); }
::-webkit-scrollbar-thumb { background: #b8b8b0; border-radius: 3px; }
