:root {
    color-scheme: light;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: radial-gradient(circle at 10% 20%, rgba(94, 202, 255, 0.35) 0%, rgba(242, 247, 255, 0.95) 50%, #f5f7ff 100%);
    color: #1d2840;
}
body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(160deg, rgba(237,243,255,1) 0%, rgba(249,251,255,1) 100%);
    min-width: 280px;
}
a {
    color: inherit;
    text-decoration: none;
}
header {
    border-bottom: 1px solid rgba(94, 150, 255, 0.18);
    padding: 1.5rem 1.5rem 2.5rem;
    position: relative;
    overflow: visible;
    background: linear-gradient(140deg, rgba(255,255,255,0.92) 0%, rgba(231,241,255,0.95) 55%, rgba(210,236,255,0.85) 100%);
    z-index: 10000;
}
header .brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1140px;
    margin: 0 auto 2rem;
}
header .brand .identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
header .brand .identity img {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    object-fit: cover;
}
header .brand .identity .brand-name {
    font-size: 2.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1b2740;
}
@media (max-width: 960px) {
    header .brand .identity .brand-name {
        display: none;
    }
}
header .brand .contact {
    text-align: right;
}
header .brand .contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    background: rgba(94, 202, 255, 0.18);
    border: 1px solid rgba(94, 150, 255, 0.35);
    box-shadow: 0 10px 26px rgba(94, 150, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
header .brand .contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(94, 150, 255, 0.3);
}
header .brand .contact .contact-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 1rem;
}
header .brand .contact .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1d2840;
    transition: color 0.2s ease;
    padding: 0;
    padding-left: 20px;
    border-right: 0;
}
header .brand .contact .phone-link:hover {
    color: #3664ff;
}
header .brand .contact .phone-number {
    font-weight: 600;
    font-size: 0.95rem;
    color: inherit;
}
header .brand .contact .phone-icon {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(190,214,255,0.75));
    border: 1px solid rgba(94, 150, 255, 0.35);
    box-shadow: 0 10px 20px rgba(142,176,255,0.25);
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
header .brand .contact .icon-link {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(190,214,255,0.75));
    border: 1px solid rgba(94, 150, 255, 0.35);
    box-shadow: 0 10px 20px rgba(142,176,255,0.25);
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
header .brand .contact .icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(94, 150, 255, 0.35);
}
header .brand .contact .icon-link.phone-icon:hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(142,176,255,0.25);
}
header .brand .contact .icon-link svg {
    width: 24px;
    height: 24px;
    fill: #3664ff;
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-overlay.is-active {
    display: block;
    opacity: 1;
}
header .search-bar {
    max-width: 1140px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10010;
    display: none;
    width: 100%;
    pointer-events: none;
}
header .search-bar.is-open {
    display: block;
}
header .search-bar .search-form {
    pointer-events: auto;
}
header nav {
    position: relative;
    z-index: 10000;
}
header .search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(94, 150, 255, 0.3);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 8px 20px rgba(94, 150, 255, 0.15);
    position: relative;
    z-index: 10001;
    transform-origin: center;
    transform: scaleX(0.25);
    opacity: 0;
    transition: transform 1s ease, opacity 0.3s ease, box-shadow 0.2s ease;
}
header .search-bar.is-open .search-form {
    transform: scaleX(1);
    opacity: 1;
}
header .search-form:focus-within {
    box-shadow: 0 12px 28px rgba(94, 150, 255, 0.25);
}
header .search-input-wrapper {
    flex: 1;
    position: relative;
    z-index: 10002;
}
header .search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #1d2840;
    outline: none;
    padding: 0.5rem 0.5rem;
    padding-right: 120px;
}
header .search-input::placeholder {
    color: rgba(29, 40, 64, 0.5);
}
header .search-button {
    background: linear-gradient(135deg, #5fc1ff, #6fe3ff);
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    color: #0c1730;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: absolute;
    right: 20px;
}
header .search-button:hover {
    transform: translateY(-1px);
}
header .search-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(94, 150, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(94, 150, 255, 0.25);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
}
header .search-dropdown.active {
    display: block;
}
header .search-dropdown-section {
    padding: 0.75rem 0;
    z-index: 10;
}
header .search-dropdown-section-title {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(29, 40, 64, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(94, 150, 255, 0.15);
    margin-bottom: 0.5rem;
}
header .search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 1rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(94, 150, 255, 0.08);
}
header .search-dropdown-item:last-child {
    border-bottom: none;
}
header .search-dropdown-item:hover {
    background: rgba(94, 202, 255, 0.1);
}
header .search-dropdown-item-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(240, 245, 255, 0.8);
    flex-shrink: 0;
}
header .search-dropdown-item-images {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
header .search-dropdown-item-images a {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease;
}
header .search-dropdown-item-images a:hover {
    transform: scale(1.1);
}
header .search-dropdown-item-images img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(240, 245, 255, 0.8);
}
header .search-dropdown-item-content {
    flex: 1;
    min-width: 0;
}
header .search-dropdown-item-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1b2740;
    margin: 0 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
header .search-dropdown-item-meta {
    font-size: 0.8rem;
    color: rgba(29, 40, 64, 0.6);
}
header .search-dropdown-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: #3664ff;
    margin-left: auto;
    flex-shrink: 0;
}
header .search-dropdown-loading {
    padding: 1.5rem;
    text-align: center;
    color: rgba(29, 40, 64, 0.5);
    font-size: 0.9rem;
}
header .search-dropdown-empty {
    padding: 1.5rem;
    text-align: center;
    color: rgba(29, 40, 64, 0.5);
    font-size: 0.9rem;
}
nav {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(240, 245, 255, 0.9);
    border: 1px solid rgba(94, 150, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 16px 28px rgba(143, 159, 255, 0.2);
    flex-wrap: wrap;
}
nav a {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: rgba(34, 47, 86, 0.78);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
@media (max-width: 1084px) {
    nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(94,150,255,0.4) rgba(240, 245, 255, 0.5);
        gap: 0.4rem;
    }
    nav::-webkit-scrollbar {
        height: 6px;
    }
    nav::-webkit-scrollbar-track {
        background: rgba(240, 245, 255, 0.5);
        border-radius: 999px;
    }
    nav::-webkit-scrollbar-thumb {
        background: rgba(94,150,255,0.4);
        border-radius: 999px;
    }
    nav::-webkit-scrollbar-thumb:hover {
        background: rgba(94,150,255,0.6);
    }
    nav a {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
nav a:hover,
nav a.active {
    background: linear-gradient(135deg, rgba(94, 202, 255, 0.65), rgba(136, 154, 255, 0.75));
    color: #0c1230;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(94, 150, 255, 0.28);
}
nav a[href="/comanda-curier/"] {
    font-weight: 700;
    color: #0400ff;
}
main {
    max-width: 1140px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 2rem;
}
footer {
    margin-top: auto;
    padding: 0 1.5rem 2rem;
}
@media (max-width: 768px) {
    header .brand {
        align-items: flex-start;
        text-align: left;
    }
    header .brand .contact {
        text-align: left;
        margin-top: 1rem;
    }
    nav {
        justify-content: flex-start;
        border-radius: 18px;
    }
    main {
        padding: 0 1rem;
        margin: 2rem auto;
    }
    footer {
        padding: 0 1rem 1.6rem;
    }
}
@media (max-width: 480px) {
    header {
        padding: 1.8rem 0.6rem 1.6rem;
    }
    header .brand {
        margin-bottom: 1.4rem;
        gap:0;
    }
    header .brand .contact .phone-number {
        display: none;
    }
    header .brand .contact .contact-icons {
        gap:0.4rem;
        margin-left:0;
    }
    header .brand .contact .phone-link {
        padding-left: 0px;
        border: none;
    }
    nav {
        padding: 0.2rem;
    }
    main {
        padding: 0 0.5rem;
        margin: 1.8rem auto;
    }
    footer {
        padding: 0 0.5rem 1.2rem;
    }
}
.cart-link {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 25px;
    height: 25px;
    border-radius: 999px;
    background: #ff4b4b;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #ffffff;
}
.cart-badge--lg {
    min-width: 24px;
    height: 24px;
    font-size: 0.8rem;
}
.red {
    color: #ff0000 !important;
    font-weight: 600 !important;
}
footer p {
    margin: 0.3rem 0 !important;
    padding: 0 !important;
}
footer {
    background: linear-gradient(180deg, rgba(243,248,255,0.95) 0%, rgba(225,239,255,0.95) 100%);
    color: #24365a;
    padding: 3rem 1.5rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(150,190,255,0.25);
}
.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}
.footer-link {
    color: inherit;
}
.footer-sal-sol-container {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-sal-sol-link {
    display: inline-block;
}
.footer-sal-sol-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    max-width: 220px;
}
.footer-copyright {
    margin: 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(51,72,110,0.6);
}
.footer-copyright--standalone {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(51,72,110,0.6);
}
.search-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(240, 245, 255, 0.8);
    font-size: 1rem;
}
.search-icon-wrapper--large {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(240, 245, 255, 0.8);
    font-size: 1.5rem;
}
.search-icon-wrapper--medium {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(240, 245, 255, 0.8);
    font-size: 1.2rem;
}
.ip-pass-message {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-bottom: 2px solid #ffc107;
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 10001;
}
.ip-pass-message p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}
.brand-identity-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
}
.search-dropdown-loading,
.search-dropdown-empty {
    display: none;
}

/* CSS pentru accesoriu */
.sp-page {
    display: grid;
    gap: 2.8rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
}
.sp-hero {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(226,238,255,0.95) 60%, rgba(208,227,255,0.9) 100%);
    border-radius: 32px;
    padding: 2.8rem;
    box-shadow: 0 32px 68px rgba(142, 178, 255, 0.25);
    position: relative;
    overflow: hidden;
}
.sp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.35), transparent 55%);
    pointer-events: none;
}
.sp-hero__side {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}
.sp-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 22px 48px rgba(126, 162, 255, 0.22);
    border: 1px solid rgba(94,150,255,0.3);
}
.sp-hero__media {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    min-height: 280px;
}
.sp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
}
.sp-hero__info {
    display: grid;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
}
.sp-hero__info h1 {
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #1a2742;
}
.sp-hero__info p {
    margin: 0;
    color: rgba(27, 38, 64, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}
.sp-price-card {
    position: relative;
    z-index: 1;
    padding: 1.2rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(94,150,255,0.3);
    box-shadow: 0 22px 48px rgba(126, 162, 255, 0.22);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    justify-content: center;
}
.sp-price-card h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #18223c;
    text-align: center;
}
.sp-price-card__value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #18223c;
    letter-spacing: -0.03em;
    text-align: center;
}
.sp-price-card__note {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(24,34,60,0.65);
    text-align: center;
}
.sp-price-card__details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
.sp-price-card__details li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(24,34,60,0.75);
}
.sp-price-card__details span {
    color: rgba(24,34,60,0.65);
}
.sp-price-card__actions {
    display: grid;
    gap: 0.8rem;
    width: 100%;
}
.sp-price-card__actions .sp-cta {
    width: 100%;
    box-sizing: border-box;
}
.sp-section {
    display: grid;
    gap: 1.2rem;
    background: rgba(255,255,255,0.92);
    border-radius: 28px;
    padding: 2.2rem;
    border: 1px solid rgba(150,190,255,0.28);
    box-shadow: 0 20px 42px rgba(150,190,255,0.2);
}
.sp-section h2 {
    margin: 0;
    font-size: 1.6rem;
    color: #1a2742;
}
.sp-details__grid {
    display: grid;
    gap: 0.45rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.sp-details__grid div {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: rgba(246,249,255,0.95);
    border: 1px solid rgba(94,150,255,0.18);
    display: grid;
    gap: 0.35rem;
}
.sp-details__grid span {
    font-size: 0.85rem;
    color: rgba(24,34,60,0.65);
}
.sp-details__grid strong {
    font-size: 0.98rem;
    color: #1a2742;
}
.sp-process {
    grid-template-columns: 1fr;
    gap: 2rem;
}
.sp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
}
.sp-cta--primary {
    background: linear-gradient(135deg, #5fc1ff 0%, #6fe3ff 100%);
    color: #0c1730;
    box-shadow: 0 18px 32px rgba(111, 227, 255, 0.35);
}
.sp-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(111, 227, 255, 0.4);
}
.sp-cta--secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    color: #1a2742;
    border: 2px solid rgba(94, 150, 255, 0.4);
    box-shadow: 0 12px 24px rgba(94, 150, 255, 0.2);
}
.sp-cta--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(94, 150, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    border-color: rgba(94, 150, 255, 0.6);
}
.sp-cta--view-all {
    margin-top: 0.5rem;
}
.sp-cta--full {
    width: 100%;
}
.sp-error {
    max-width: 720px;
    margin: 3rem auto;
    padding: 2.2rem;
    background: rgba(255,255,255,0.9);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 22px 42px rgba(143,167,255,0.18);
}
.sp-error h2 {
    margin-top: 0;
    color: #1a2742;
}
.sp-error p {
    color: rgba(24,34,60,0.75);
}
.sp-link {
    color: #1a2742;
    font-weight: 600;
    text-decoration: underline;
}
.sp-alternatives {
    margin-top: 2rem;
}
.sp-alt__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.sp-alt__card {
    display: grid;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(94, 150, 255, 0.25);
    box-shadow: 0 12px 28px rgba(94, 150, 255, 0.15);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}
.sp-alt__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(94, 150, 255, 0.25);
}
.sp-alt__media {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 245, 255, 0.8);
    overflow: hidden;
}
.sp-alt__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sp-alt__body {
    padding: 1.2rem;
    display: grid;
    gap: 0.5rem;
}
.sp-alt__body strong {
    font-size: 1rem;
    color: #1a2742;
    margin: 0;
}
.sp-alt__body p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3664ff;
    margin: 0;
}
.sp-alt__meta {
    font-size: 0.85rem;
    color: rgba(24, 34, 60, 0.65);
}
.sp-admin-tools {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(240, 245, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(94, 150, 255, 0.3);
}
.sp-admin-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: rgba(240,245,255,0.9);
    color: #1d2840;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(150,190,255,0.35);
    transition: all 0.2s ease;
}
.sp-admin-btn:hover {
    background: rgba(240,245,255,1);
    border-color: rgba(150,190,255,0.5);
    transform: translateY(-1px);
}
.sp-admin-btn--danger {
    background: #ff5a5a;
    color: #fff;
    border-color: #ff5a5a;
}
.sp-admin-btn--danger:hover {
    background: #ff4444;
    border-color: #ff4444;
}
.sp-admin-input {
    max-width: 80px;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(150,190,255,0.45);
    font-size: 0.75rem;
    text-align: center;
    background: #fff;
    cursor: pointer;
}
@media (max-width: 960px) {
    .sp-hero {
        padding: 0;
    }
    .sp-alt__grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

